/* Updated style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-bottom: 0px;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

.navbar {
    
    display: flex;
    width:-webkit-fill-available;
    justify-content: space-between;
    align-items: center;
    padding: 10px 1%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-left .logo-image {
    width: 100px;
    height: auto;
}

.search-bar-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-bar {
    padding: 10px 15px;
    border: 2px solid #ccc;
    border-radius: 25px;
    outline: none;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-bar:focus {
    border-color: #2cb1b4;
    box-shadow: 0 0 10px rgba(44, 177, 180, 0.3);
}

.search-button {
    background-color: #00AEEF;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 25px;
    cursor: pointer;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #2cb1b4;
    font-size: 1.1em;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.menu a:hover {
    color: #0077b6;
    transform: scale(1.1);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #0077b6;
    text-decoration: none;
    font-size: 1em;
    margin-right: 30px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.icon-link:hover {
    color: #2cb1b4;
    transform: scale(1.1);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 30px;
    color: #0077b6;
}

.banner {
    width: 100%;
    height: 455px;
    overflow: hidden;
    position: relative;
}

.slideshow-container {
    width: 100%;
    height: 85%;
    position: relative;
    max-width: 100vw; /* Ensure it fits in mobile view */
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 80px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 300px;
    background-color: #ffffff;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    padding-top: 20px;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
}

.mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
}

.chat-with-us {
    background-color: #4caf50;
    color: white;
    display: block;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

@media (max-width: 768px) {
    .menu {
        display: none; /* Hide menu on smaller screens */
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    .navbar-right {
        display: none;
    }

    .banner {
        height: auto; /* Adjust banner size for mobile */
    }

    .slideshow-container {
        height: 250px; /* Set a specific height for mobile */
        max-width: 100%; /* Ensure slideshow fits mobile width */
    }

    .slide {
        margin-top: 80px;
        height: 50%;
        width: 100%;
    }
}



/* Best Sellers Section */
.best-seller {
    padding: 20px 1%;
    background-color: #ffffff;
    margin: 0px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    /*margin-top: -125px;*/
}

.best-seller h2 {
    font-size: 2rem;
    color: #0077b6;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    transition: transform 0.4s ease;
}

.product-card {
    flex: 1 0 25%;
    max-width: 25%;
    padding: 15px;
    background: #fff;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.product-card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.product-card span {
    display: block;
    font-size: 1.1rem;
    color: #2cb1b4;
    font-weight: bold;
    margin: 5px 0;
}

.product-card del {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.add-to-cart {
    padding: 10px 20px;
    background-color: #00AEEF;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #0077b6;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Responsive Design for Best Sellers */
@media (max-width: 768px) {
    .best-seller {
        margin-top: -125px;
    }
    
    .product-card {
        flex: 1 0 50%;
        max-width: 50%;
    }

    .add-to-cart {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .best-seller {
        margin-top: -125px;
    }
    
    
    .product-card {
        flex: 1 0 100%;
        max-width: 95%;
    }
    
    .prev, .next {
        display: none; /* Hide navigation buttons on small screens */
    }
}



/* Position prev and next buttons properly for mobile */
.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 1;
    display: block;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Ensure button visibility on smaller screens */
@media (max-width: 480px) {
    .prev, .next {
        padding: 8px;
        font-size: 1.2rem;
    }
}

/* Adjust icon links within mobile navigation */
.mobile-nav .icon-link {
    display: flex;
    align-items: center;
    color: #333;
    padding: -1px 20px;
    text-decoration: none;
    font-size: 1em;
}

.mobile-nav .icon-link i {
    margin-right: 8px;
}

.cart-modal {
    display: none;
    position: fixed;
    top: 20%;
    right: 5%;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
}

.cart-modal h3 {
    margin-bottom: 10px;
}

.cart-modal ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.cart-modal li {
    margin: 10px 0;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}

#closeCartModal {
    margin-top: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

/* General styling for product cards */
.product-card {
    flex: 1 0 24%;
    max-width: 33%;
    padding: 15px;
    background: #fff;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: inline-table;
    margin-bottom: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.product-card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

.product-card span {
    display: block;
    font-size: 1.1rem;
    color: #2cb1b4;
    font-weight: bold;
    margin: 5px 0;
}

.product-card del {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.add-to-cart {
    padding: 10px 20px;
    background-color: #00AEEF;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to the bottom */
    align-self: center;
}

.add-to-cart:hover {
    background-color: #0077b6;
}

/* Responsive adjustments for tablets */
@media (max-width: 768px) {
    .product-card {
        flex: 1 0 50%;
        max-width: 50%;
        padding: 10px;
    }

    .add-to-cart {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .product-card {
        flex: 1 0 100%;
        max-width: 95%;
        padding: 10px;
    }

    .add-to-cart {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}



.cart-modal {
    display: none;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(100%);
    width: 90%; /* Full width for mobile */
    max-width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9999; /* Higher z-index to ensure visibility */
}

@media (max-width: 768px) {
    .cart-modal {
        top: 10%; /* Adjust top position for mobile */
        width: 90%; /* Full width on mobile */
        left: 50%;
        transform: translateX(-50%);
    }
}

.mobile-nav {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: white;
    z-index: 1000;
    /* other styling here */
  }
  
  .mobile-nav.show {
    display: block; /* Show menu when .show is added */
  }
  

  .cart-modal {
    display: none;
    position: fixed;
    top: 15%;
    right: 5%;
    width: 300px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 1000;
}

.cart-modal.show {
    display: block; /* This class will be added to make the modal visible */
}


.cart-modal.show {
    display: block;
}

@media (max-width: 768px) {
    .cart-modal {
        width: 100%;
        left: auto;
        right: 5%;
        top: 11%;
        transform: none;
    }
}


/* Cart Modal Styles */
.cart-modal li {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.cart-modal .item-total {
    font-weight: bold;
    color: #2cb1b4;
}

.cart-modal .remove-item {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    font-size: 0.9em;
}

.cart-modal .cart-total {
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 10px;
}




.our-products {
    padding: 20px 0;
    text-align: center;
    background-color: #f9f9f9;
    max-width: 100%;
}

.our-products h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 5%; /* Centers items on larger screens */
}

.product-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 items per row on desktop */
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    max-width: 300px;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 1.1em;
    margin: 10px 0;
}

.product-item p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.product-item .price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: #333;
    margin: 10px 0;
}

.product-item .price .discounted-price {
    font-weight: bold;
    color: #2cb1b4;
    margin-right: 10px;
}

.product-item .price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.product-item .price .discount-percentage {
    font-size: 0.9em;
    color: #e63946;
}

.product-item .add-to-cart-btn {
    background-color: #2cb1b4;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-item .add-to-cart-btn:hover {
    background-color: #248f92;
}

@media (max-width: 768px) {
    .product-item {
        flex: 1 1 100%; /* 1 item per row on mobile */
        max-width: 100%;
    }
}

.our-products {
    padding: 20px 0;
    text-align: center;
    background-color: #f9f9f9;
    max-width: 100%;
}

.our-products h2 {
    font-size: 1.8em;
    color: #0077b6;
    margin-bottom: 20px;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0 2%; /* Reduced padding to fit better */
}

.product-item {
    flex: 1 1 calc(33.333% - 20px); /* 3 items per row on desktop */
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    max-width: calc(33.333% - 20px); /* Ensures 3 items fit evenly */
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 1.1em;
    margin: 10px 0;
}

.product-item p {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.product-item .price {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    color: #333;
    margin: 10px 0;
}

.product-item .price .discounted-price {
    font-weight: bold;
    color: #2cb1b4;
    margin-right: 10px;
}

.product-item .price .original-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.product-item .price .discount-percentage {
    font-size: 0.9em;
    color: #e63946;
}

.product-item .add-to-cart-btn {
    background-color: #2cb1b4;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.product-item .add-to-cart-btn:hover {
    background-color: #248f92;
}

@media (max-width: 768px) {
    .product-item {
        flex: 1 1 100%; /* 1 item per row on mobile */
        max-width: 100%;
    }
}





.banner-section {
    position: relative;
    background-image: url('C:\xampp\htdocs\Projects\Vediva\C:\xampp\htdocs\Projects\Vediva\image\about-vediva-store.jpg'); /* Full-width background banner image */
    background-size: cover;
    background-position: center;
    height: 250px; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    padding-left: 0%; /* Aligns content with some padding on the left */
}

.content-box {
    background-color: #ffffff; /* White background for content box */
    padding: 20px;
    max-width: 700px; /* Controls the width of the content area */
    border-radius: 0px;
    max-height: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
}

.content-box h2 {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 50px;
}

.content-box h3 {
    font-size: 1.2em;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 15px;
    margin-left: 50px;
}

.content-box p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
       margin-left: 50px;
}

@media (max-width: 768px) {
    .banner-section {
        padding-left: 2%;
    }

    .content-box {
        max-width: 100%;
        margin: auto;
    }
}




.banner-section {
    position: relative;
    background-image: url('image/about.jpg'); /* Full-width background banner image */
    background-size: cover;
    background-position: center;
    height: 250px; /* Adjust the height as needed */
    display: flex;
    align-items: center;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-left: 0%; /* Aligns content with some padding on the left */
}

.content-box {
    background-color: #ffffff; /* White background for content box */
    padding: 20px;
    max-width: 850px; /* Controls the width of the content area */
    border-radius: 0px;
    max-height: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 85% 0, 100% 120%, 0% 105%); /* Creates the angled effect */
}

.content-box h2 {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

.content-box h3 {
    font-size: 1.2em;
    color: #e63946;
    font-weight: bold;
    margin-bottom: 15px;
    margin-left: 20px;
}

.content-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-left: 20px;
    margin-right: 10%;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .banner-section {
        background-image: none;
        padding-left: 2%;
    }

    .content-box {
        max-height: fit-content;
        max-width: 100%;
        margin: auto;
        clip-path: none; /* Removes clip-path on smaller screens for better readability */
    }
}



.cart-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1em;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cart-notification.show {
    display: block;
    opacity: 1;
}


/* Media query for mobile devices */
@media (max-width: 768px) {
    .cart-notification {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: 50%;
        margin: 0 auto;
        text-align: center;
    }
}


.ayurveda-benefits {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.ayurveda-benefits h2 {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

.benefits-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}

.benefit-item img {
    width: 180px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9em;
    color: #e63946;
    font-weight: bold;
}

@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-item {
        max-width: 100%;
    }
}




.ayurveda-benefits {
    text-align: center;
    padding: 40px 20px;
    background-color: #ffffff;
}

.ayurveda-benefits h2 {
    font-size: 1.8em;
    color: #333;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Flex container for icons */
.benefits-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px; /* Space between icons */
    flex-wrap: nowrap; /* Horizontal layout on desktop */
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px; /* Sets a width for each item */
}

.benefit-item img {
    width: 250px; /* Icon size */
    height: auto;
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9em;
    color: #e63946;
    font-weight: bold;
}

/* Media query for mobile: stack items vertically */
@media (max-width: 768px) {
    .benefits-container {
        flex-direction: row; /* Stack items vertically */
        gap: 20px; /* Space between items in vertical layout */
        align-items: center; /* Center items */
    }
    .ayurveda-benefits h2 {
       margin-top: 0px;
    }
    
.benefit-item img {
    width: 60px; /* Icon size */
    height: auto;
    margin-bottom: 10px;
}
    
}





html, body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
}





/* Ensure no container is clipping the content */
.ayurvedic-section {
    overflow: visible;
}

.mobile-only-image {
    display: none; /* Hide on desktop by default */
}

@media (max-width: 768px) {
    .mobile-only-image {
        display: block; /* Show on mobile */
        width: 100%;
        height: auto;
        margin-top: 180px; /* Adds space above the image */
    }
}




.blog-section {
    padding: 40px 20px;
    text-align: left;
    background-color: #f9f9f9;
}

.blog-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.blog-slider {
    
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.blog-container {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.blog-card {
    flex: 1 0 25%;
    max-width: 30%;
    margin-bottom: 10px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 2px solid #0077b6;
}

.blog-card h3 {
    font-size: 1.4em;
    margin: 15px;
    color: #0077b6;
}

.blog-card p {
    font-size: 1em;
    margin: 15px;
    color: #666;
    line-height: 1.4;
}

.blog-card .read-more {
    margin: 15px;
    max-width: 100px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    color: #0077b6;
    align-self: flex-end;
    border: 1px solid #0077b6;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.blog-card .read-more:hover {
    background-color: #0077b6;
    color: #fff;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-card {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .prev-btn, .next-btn {
        display: block;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .blog-card img {
        height: 150px;
    }
}



.blog-detail {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: left;
}

.blog-image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-content h1 {
    font-size: 2rem;
    margin: 20px 0;
    color: #0077b6;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
    color: #333;
}

.back-to-blog {
    text-align: center;
    margin-top: 20px;
}

.back-to-blog .back-button {
    text-decoration: none;
    color: #fff;
    background: #0077b6;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-to-blog .back-button:hover {
    background: #005f86;
}



@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%; /* Full width for mobile */
        max-width: 100%;
        margin: 0 auto;
        box-shadow: none; /* Simplify visuals for smaller screens */
    }

    .blog-container {
        display: flex;
        gap: 15px; /* Gap between blog cards */
        transition: transform 0.5s ease-in-out;
    }

    .blog-card img {
        width: 100%; /* Ensure the image scales properly */
        height: auto;
        object-fit: cover;
    }

    .prev-btn, .next-btn {
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        position: absolute;
        padding: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.5);
        font-size: 1.5rem;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .blog-card img {
        height: 250px;
    }

    .prev-btn, .next-btn {
        display: block;
        padding: 8px;
    }
}


@media (max-width: 768px) {
    .best-seller h2 {
     margin-top: 80px;
    }    
}




/* Footer Styles */
.footer {
    background-color: #e2e2e2;
    color: #333;
    font-size: 18px;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin: 0 20px 20px 0;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.footer-section hr {
    border: 0;
    border-top: 2px solid #d84343;
    width: 50px;
    margin-bottom: 10px;
}

.footer-section p {
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-section .contact-number {
    color: #d84343;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d84343;
}

.social-icons a {
    display: inline-block;
    margin: 5px;
}

.social-icons img {
    width: 30px;
    height: auto;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background-color: #d4d4d4;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.footer-bottom .brand-name {
    color: #d84343;
    font-weight: bold;
}

.payment-icons img {
    margin: 5px;
    width: 50px;
    height: auto;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 20px 0;
        text-align: center;
    }

    .footer-section ul {
        padding-left: 0;
    }
}



@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-section {
        width: 100%;
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-section h3 {
        text-align: left;
    }

    .footer-section ul {
        padding-left: 0;
        text-align: left;
    }

    .footer-section ul li {
        margin-left: 0;
    }

    .footer-section ul li a {
        text-align: left;
        display: inline-block;
    }

    .social-icons {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .social-icons a {
        margin-right: 10px;
    }

    .footer-bottom {
        text-align: left;
        padding-left: 20px;
    }
}


/* Style for social media icons */
.social-icons a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Use the original color of the icon */
    font-size: 1.5em; /* Adjust icon size as needed */
    margin-right: 15px; /* Add spacing between icons */
    transition: transform 0.3s ease; /* Add a hover effect */
}

/* Hover effect for social media icons */
.social-icons a:hover {
    transform: scale(1.2); /* Slight zoom on hover */
}

/* Ensure original color and style */
.social-icons a i {
    color: inherit; /* Ensure the icons retain their original color */
    font-size: inherit; /* Inherit font size from parent */
}



/* Social Media Icons Container */
.social-icons {
    display: flex;
    justify-content: flex-start; /* Align icons to the left */
    gap: 15px; /* Spacing between icons */
}

/* Facebook Icon */
.social-icons a.facebook {
    color: #1877F2; /* Facebook Blue */
}

.social-icons a.facebook:hover {
    color: #145dbf; /* Slightly darker blue for hover effect */
}

/* YouTube Icon */
.social-icons a.youtube {
    color: #FF0000; /* YouTube Red */
}

.social-icons a.youtube:hover {
    color: #cc0000; /* Slightly darker red for hover effect */
}

/* Instagram Icon */
.social-icons a.instagram {
    color: #E4405F; /* Instagram Pink */
}

.social-icons a.instagram:hover {
    color: #b0354c; /* Slightly darker pink for hover effect */
}

/* Pinterest Icon */
.social-icons a.pinterest {
    color: #E60023; /* Pinterest Red */
}

.social-icons a.pinterest:hover {
    color: #b7001b; /* Slightly darker red for hover effect */
}

/* General Icon Styling */
.social-icons a {
    font-size: 1.5em; /* Adjust size of icons */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition on hover */
}


.btn {
    padding: 10px 15px; /* Padding for button */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 14px; /* Font size */
    transition: background-color 0.3s; /* Smooth background transition */
    color: white; /* Text color */
    text-align: center; /* Center text */
    display: inline-block; /* Ensure proper spacing and alignment */
    text-decoration: none; /* Remove underline from anchor tags */
}

/* Styles for Delete Button */
.btn-delete {
    background-color: #e74c3c; /* Red background for delete */
}

.btn-delete:hover {
    background-color: #c0392b; /* Darker red on hover */
}

/* Styles for Edit Button */
.btn-edit {
    background-color: #3498db; /* Blue background for edit */
}

.btn-edit:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

/* Optional: Add some spacing between buttons */
.btn + .btn {
    margin-left: 10px; /* Space between buttons */
}



.read-more {
    display: block; /* This makes the link act like a block element */
    margin-top: 10px; /* Adds some space above the button */
}





.unstyled-link {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit color from surrounding text */
    font-size: inherit; /* Inherit font size */
    font-weight: inherit; /* Inherit font weight */
    display: inline; /* Ensure default inline behavior */
}

.unstyled-link:hover,
.unstyled-link:focus,
.unstyled-link:active {
    text-decoration: none; /* No underline or other hover effects */
    color: inherit; /* Keep the same color */
}



.product-card a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Use the current text color */
}

.product-card a:hover {
    text-decoration: underline; /* Optional: Add underline on hover for better UX */
}

/* Style for the Buy Now Button */
.buy-now {
    background-color: #61f135; /* Bright orange color for attention */
    color: white; /* White text for contrast */
    border: none; /* Remove default border */
    padding: 12px 20px; /* Add padding for comfort */
    font-size: 1rem; /* Increase the font size */
    font-weight: bold; /* Make text bold */
    border-radius: 50px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor to indicate clickable button */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth color change and slight pop effect */
}

/* Hover Effect */
.buy-now:hover {
    background-color: #e74c3c; /* Darken the color on hover */
    transform: translateY(-2px); /* Lift the button slightly */
}

/* Focus Effect */
.buy-now:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 5px 2px rgba(255, 87, 51, 0.5); /* Add subtle shadow */
}

/* Active State */
.buy-now:active {
    background-color: #c0392b; /* Slightly darker color when clicked */
    transform: translateY(1px); /* Lower button to mimic a press */
}


/* Container for the buttons */
.button-container {
    display: flex; /* Display buttons in a row */
    gap: 10px; /* Space between buttons */
    justify-content: left; /* Center the buttons */
    margin-top: 10px; /* Space above buttons */
}

.add-to-cart,
.buy-now {
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff; /* White text */
}

.add-to-cart {
    background-color: #00AEEF; /* Blue color for Add to Cart */
}

.add-to-cart:hover {
    background-color: #0077b6; /* Darker blue on hover */
}

.buy-now {
    background-color: #61f135; /* Bright green color for Buy Now */
}

.buy-now:hover {
    background-color: #45c028; /* Darken the green on hover */
}


.add-to-cart,
.buy-now {
    display: inline-block; /* Makes both buttons appear in a row */
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #fff; /* White text */
    margin-right: 10px; /* Space between buttons */
}

.add-to-cart {
    background-color: #00AEEF; /* Blue color for Add to Cart */
}

.add-to-cart:hover {
    background-color: #0077b6; /* Darker blue on hover */
}

.buy-now {
    background-color: #61f135; /* Bright green color for Buy Now */
}

.buy-now:hover {
    background-color: #45c028; /* Darken the green on hover */
}



tbody, td, tfoot, th, thead, tr {
    border-color: #000 !important; /* Replace with your desired border color */
    border-style: solid !important; /* Replace with your desired border style */
    border-width: 1px !important;   /* Replace with your desired border width */
    padding: 10px !important;        /* Replace with your desired padding */
}


.search-container {
    position: relative;
    width: 100%;
    max-width: 500px; /* adjust the width as needed */
    margin: 20px auto;
}

#searchInput {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 50px;
}

#searchResults {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    display: none;
}

#searchResults.show {
    display: block;
}