/* shopHeader start */









/* shopHeader End */






/* shopSlider Start */


.product-card {
    width: 100%; /* Full width for responsiveness */
    height: 400px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content is spaced evenly */
    background-color: #fff;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 128, 128, 0.2); /* Teal shadow */
}

/* Fixed Height Image */
.product-image {
    width: 100%;
    height: 250px; /* Fixed height for images */
    object-fit: cover; /* Ensures images are cropped uniformly */
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-image {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Product Info Styling */
.product-info {
    flex-grow: 1; /* Takes up remaining space */
    padding: 1rem;
    background-color: #f8f9fa; /* Light gray background */
}

.product-title {
    font-size: 1rem;
    color: #008080; /* Teal color for title */
    margin-bottom: 0.5rem;
    font-weight: bold;
    white-space: nowrap; /* Prevents wrapping */
    overflow: hidden; /* Hides overflowed text */
    text-overflow: ellipsis; /* Adds ellipsis (...) for truncated text */
    max-width: 100%; /* Ensures the title fits within the container */
}

.product-price {
    font-size: 1.1rem;
    color: #004d4d; /* Darker teal for price */
    margin-bottom: 0.5rem;
}



/* shopSlider End */


/* shopCategory Start */

    /* Teal Color Palette */
    :root {
        --teal-primary: #20c997;
        --teal-secondary: #008080;
        --teal-light: #a7ede5;
        --text-dark: #343a40;
        --text-light: #6c757d;
        --box-shadow-color: rgba(0, 128, 128, 0.1);
    }

    .section-header{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .category-slider{
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0.75rem; /* Reduced gap */
        padding: 0.75rem 0; /* Reduced padding */
        -webkit-overflow-scrolling: touch;
        cursor: grab;
        scroll-behavior: smooth;
    }

    .category-slider:active{
        cursor: grabbing;
    }

    .category-slider::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        background: #fff;
        border-radius: 8px; /* Reduced border-radius */
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        box-shadow: 0 2px 4px var(--box-shadow-color); /* Reduced shadow */
        scroll-snap-align: start;
        width: 120px; /* Significantly reduced width */
        flex: 0 0 auto;
        border: 1px solid rgba(0, 128, 128, 0.05);
        justify-self: center;
    }

    .category-item:hover {
        transform: translateY(-3px); /* Reduced hover translate */
        box-shadow: 0 4px 8px var(--box-shadow-color); /* Reduced shadow */
    }

    .category-image {
        width: 100%;
        height: 80px; /* Significantly reduced height */
        object-fit: cover;
        border-radius: 8px 8px 0 0; /* Reduced border-radius */
        transition: transform 0.3s ease;
    }

    .category-item:hover .category-image {
        transform: scale(1.05); /* Reduced zoom */
    }

    .category-info {
        padding: 0.5rem; /* Reduced padding */
        text-align: center;
    }

    .category-name {
        font-size: 0.85rem; /* Reduced font size */
        font-weight: 500; /* Slightly reduced font weight */
        color: var(--text-dark);
        margin-bottom: 0.25rem; /* Reduced margin */
    }

    /* Slider Navigation Buttons */
    .slider-nav {
        display: flex;
        justify-content: center;
        margin-top: 0.5rem; /* Reduced margin */
    }






/* Slider Navigation Button Styling */
.slider-nav button {
    background-color: var(--teal-light); /* Light teal background */
    color: var(--text-dark); /* Dark text for contrast */
    border: none;
    padding: 0.4rem 0.8rem; /* Slightly increased padding for better touch targets */
    margin: 0 0.4rem; /* Slightly increased margin for spacing */
    border-radius: 0.3rem; /* Slightly rounded corners */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transitions for all properties */
    font-size: 0.95rem; /* Slightly larger font size for readability */
    font-weight: 500; /* Semi-bold font weight for emphasis */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover Effect */
.slider-nav button:hover {
    background-color: var(--teal-primary); /* Primary teal on hover */
    color: white; /* White text for contrast */
    transform: translateY(-2px); /* Slight upward movement on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow for hover effect */
}

/* Active State (Optional) */
.slider-nav button.active {
    background-color: var(--teal-dark); /* Darker teal for active state */
    color: white;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* Slightly deeper shadow */
    transform: translateY(0); /* Reset transform for active state */
}

/* Focus State for Accessibility */

.slider-nav button:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 2px var(--teal-light), 0 0 0 4px var(--teal-primary); /* Custom focus ring */
}













        /* Style for main category section */
        #main-category-section {
        padding: 20px 0;
        margin-bottom: 30px;
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    #main-category-section .container {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    #main-category-section .category-item {
        text-align: center;
        margin: 10px;
    }

    #main-category-section .category-item img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 5px;
        transition: transform 0.3s ease;

    }

    #main-category-section .category-item:hover img {
        transform: scale(1.1);
    }

    #main-category-section .category-item a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: block;
        transition: color 0.3s ease;
    }

    #main-category-section .category-item:hover a {
        color: #26A69A;
    }

    /* Category slider */
    .category-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
        cursor: grab; /* Enable grab cursor */
        scroll-behavior: smooth; /* Add smooth scrolling */
    }


    .category-slider:active {
        cursor: grabbing; /* Change cursor while grabbing */
    }

    .category-slider::-webkit-scrollbar {
        display: none; /* Hide scrollbar */
    }

    .category-slider .category-item {
        scroll-snap-align: start;
        text-align: center;
        min-width: 100px; /* Minimum width for each category item */
        align-content: center;
    }

    .category-slider .category-item img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 5px;
        transition: transform 0.3s ease;
        justify-self: center;
    }

    .category-slider .category-item:hover img {
        transform: scale(1.1);
    }

    .category-slider .category-item a {
        text-decoration: none;
        color: #333;
        font-size: 14px;
        display: block;
        transition: color 0.3s ease;
    }

    .category-slider .category-item:hover a {
        color: #26A69A;
    }


/* shopCategory End */





/*saleUnder150 Start */


    /* Section Styling */
    .saleUnder150-section {
        padding: 40px 20px;
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        font-family: 'Poppins', sans-serif;
        position: relative;
        overflow: hidden;
    }

    /* Header Styling */
    .saleUnder150-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px; /* Add spacing below the header */
        border-bottom: 2px solid #ddd; /* Divider line */
    }

    .saleUnder150-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2d3436;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
    }

    .saleUnder150-title::after {
        content: '';
        position: absolute;
        bottom: -18px; /* Align with the divider */
        left: 0;
        width: 60px;
        height: 3px;
        background: #00bfa5;
        border-radius: 5px;
    }

    .saleUnder150-view-all-btn {
        background: linear-gradient(135deg, #00bfa5, #00838f);
        color: #fff;
        border: none;
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 191, 165, 0.3);
        white-space: nowrap; /* Prevent text wrapping */
    }

    .saleUnder150-view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 15px rgba(0, 191, 165, 0.5);
    }

    /* Content Section */
    .saleUnder150-content p {
        text-align: center;
        font-size: 0.95rem;
        margin-bottom: 15px;
        color: #6c757d;
        padding: 0 10px;
    }

    .saleUnder150-content strong {
        color: #00bfa5;
        font-weight: 700;
    }

    /* Grid Layout */
    .saleUnder150-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
        align-items: stretch;
        padding: 0 10px;
    }

    /* Product Card Styling */
    .saleUnder150-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .saleUnder150-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

    .saleUnder150-product-card {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .saleUnder150-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 191, 165, 0), rgba(0, 191, 165, 0.8));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .saleUnder150-item:hover .saleUnder150-overlay {
        opacity: 1;
    }

    .saleUnder150-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px 10px 0 0;
        transition: transform 0.3s ease;
    }

    .saleUnder150-item:hover .saleUnder150-image {
        transform: scale(1.05);
    }

    .saleUnder150-info {
        padding: 15px;
        position: relative;
        z-index: 1;
    }

    .saleUnder150-title {
        font-size: 1rem;
        font-weight: 600;
        color: #2d3436;
        margin-bottom: 8px;
        line-height: 1.3;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }

    .saleUnder150-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #00bfa5;
        margin-bottom: 0; /* Remove margin to align with old price */
        margin-right: 0.5rem; /* Add space between price and old price */
    }

    .saleUnder150-old-price {
        font-size: 0.9rem;
        color: #888;
        text-decoration: line-through;
        align-self: center; /* Vertically center the old price */
    }



    .saleUnder150-add-to-cart-btn {
        position: relative;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 30px);
        background: linear-gradient(135deg, #00bfa5, #00838f);
        color: #fff;
        border: none;
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 25px;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 191, 165, 0.3);
    }

    .saleUnder150-add-to-cart-btn:hover {
        transform: translateY(-2px) translateX(-50%);
        box-shadow: 0 8px 16px rgba(0, 191, 165, 0.5);
    }


/*saleUnder150 End */





/* shopLuxury Start */


.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    color: #2d3436;
    font-weight: bold;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    padding: 15px 0;
}

.btn-sm {
    background-color: #26A69A; /* Teal button */
    border-color: #26A69A;
    color: #fff;
    transition: background-color 0.3s ease-in-out;
}

.btn-sm:hover {
    background-color: #1b786a; /* Darker teal on hover */
    border-color: #1b786a;
}

/* Vertical List Item Styling */
.vertical-list-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease, transform 0.2s ease;
    overflow: hidden; /* Prevents overflow */
    height: 120px; /* Fixed height for all rows */
}

.vertical-list-item:hover {
    background-color: #f0f0f0;
    transform: scale(1.01); /* Slight zoom effect on hover */
}

/* Image Container Styling */
.vertical-list-image-container {
    width: 80px;
    height: 80px;
    margin-right: 1rem;
    border-radius: 8px;
    overflow: hidden; /* Ensures image stays within the container */
    flex-shrink: 0; /* Prevents the container from shrinking */
    position: relative;
}

.vertical-list-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block; /* Removes extra space below image */
}

.vertical-list-item:hover .vertical-list-image {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Product Info Styling */
.vertical-list-info {
    flex-grow: 1;
    min-width: 0;
}

.vertical-list-title {
    font-size: 1rem;
    color: #2d3436;
    margin-bottom: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 600;
}

.vertical-list-price {
    font-size: 1.2rem;
    color: #26A69A; /* Teal color for price */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Discount Badge Styling */
.vertical-product-discount {
    font-size: 0.9rem;
    color: #fff;
    background-color: #e74c3c; /* Red color for discount badge */
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
}


/* Old Price Styling */
.list-old-price {
    font-size: 0.9rem;
    color: #888; /* Light gray for old price */
    text-decoration: line-through; /* Strikethrough effect */
    margin-left: 0.5rem; /* Space between new and old price */
}


/* shopLuxury End */




/* shopHero Start */

       /* Hero Section Styles */
       .hero-section {
        background: linear-gradient(to right, #4facfe, #00f2fe); /* Example gradient */
        color: white;
        padding: 5rem 0;
        text-align: center;
        margin-bottom: 2rem;
        border-radius: 15px;
        overflow: hidden; /* Clip animations */
        position: relative;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: fadeInUp 1s ease-in-out; /* Animate.css */
    }

    .hero-subtitle {
        font-size: 1.5rem;
        font-weight: 400;
        opacity: 0.8;
        animation: fadeInUp 1.2s ease-in-out; /* Animate.css */
    }

    .hero-button {
        animation: zoomIn 1.4s ease-in-out; /* Animate.css */
    }

          /* Wave Animation */
          .wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: url('data:image/svg+xml,%3Csvg viewBox="0 0 500 150" preserveAspectRatio="none" style="height: 100%; width: 100%;" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0,100 C150,200 350,0 500,100 L500,0 L0,0 Z" style="stroke: none; fill: rgba(255,255,255,0.3);"%3E%3C/path%3E%3C/svg%3E');
        background-size: cover;
        animation: wave 7s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite;
    }



    @keyframes wave {
        0% {
            background-position: 0 bottom;
        }
        50% {
            background-position: 500px bottom;
        }
        100% {
            background-position: 1000px bottom;
        }
    }

    @media (max-width: 768px) {

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }
    }

/* shopHero End */




/* trendingProducts Start */



/* Section Container Styling */
.trending-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f5f9, #d1e7dd);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Header Styling */
.trending-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.trending-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #006978;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.trending-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00bfa5;
    border-radius: 5px;
}

.trending-view-all-btn {
    background: linear-gradient(135deg, #00bfa5, #00838f);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 191, 165, 0.3);
    white-space: nowrap; /* Prevent text wrapping */
}

.trending-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 191, 165, 0.5);
}

/* Description Text */
.trending-section p {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #6c757d;
    padding: 0 10px;
}

/* Carousel Container */
.trending-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Default: One item per row */
    gap: 20px; /* Reduced gap */
    justify-content: center;
    align-items: stretch;
    padding: 0 10px;
}


.trending-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


.trending-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 191, 165, 0), rgba(0, 191, 165, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trending-item:hover .trending-overlay {
    opacity: 1;
}

.trending-image {
    width: 100%;
    height: 180px; /* Reduced image height */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.trending-item:hover .trending-image {
    transform: scale(1.05); /* Slightly reduced scale */
}


.trending-title {
    font-size: 1rem; /* Reduced font size */
    font-weight: 600;
    color: #006978;
    margin-bottom: 8px; /* Reduced margin */
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.trending-price {
    font-size: 1.1rem; /* Reduced font size */
    font-weight: 700;
    color: #00bfa5;
    margin-bottom: 12px; /* Reduced margin */
}

.old-price {
    font-size: 0.9rem;
    color: #888; /* Light gray for old price */
    text-decoration: line-through; /* Strikethrough effect */
    margin-left: 0.5rem; /* Space between new and old price */
}

.trending-discount {
    background: linear-gradient(135deg, #00bfa5, #00838f);
    color: #fff;
    font-size: 0.8rem; /* Reduced font size */
    font-weight: 600;
    padding: 6px 10px; /* Reduced padding */
    border-radius: 18px; /* Reduced border radius */
    display: inline-block;
    margin-bottom: 12px; /* Reduced margin */
    box-shadow: 0 2px 4px rgba(0, 191, 165, 0.3);
}




.shop-now-icon {
    margin-left: 5px; /* Add spacing between text and icon */
}






/* Product Card Styling */
.trending-item {
    position: relative; /* Required for absolute positioning of child elements */
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trending-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    padding-bottom: 50px; /* Space for the button at the bottom */
}

.trending-info {
    padding: 15px;
    position: relative;
    z-index: 1;
}

.trending-add-to-cart-btn {
    position: absolute; /* Fixed position at the bottom */
    bottom: 10px; /* Distance from the bottom */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center alignment */
    width: calc(100% - 30px); /* Adjust width to fit within padding */
    background: linear-gradient(135deg, #00bfa5, #00838f);
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 0.9rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 191, 165, 0.3);
}

.trending-add-to-cart-btn:hover {
    transform: translateY(-2px) translateX(-50%); /* Hover effect with horizontal centering */
    box-shadow: 0 8px 16px rgba(0, 191, 165, 0.5);
}




/* Discount Badge Styling */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff5722, #e64a19);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 18px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}



.trending-image {
    width: 100%;
    height: 180px; /* Reduced image height */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.trending-item:hover .trending-image {
    transform: scale(1.05); /* Slightly reduced scale */
}






/* Responsive Design */
@media (max-width: 1200px) {
    .trending-carousel {
        grid-template-columns: repeat(auto-fit, minmax(200px, calc(33.333% - 13.33px)));
        gap: 20px;
    }

    .trending-header {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start (left) */
    }

    .trending-view-all-btn {
        margin-top: 15px; /* Add space between title and button */
        align-self: flex-end;
    }
}

@media (max-width: 768px) {
    .trending-title {
        font-size: 1.6rem;
        text-wrap: auto;
    }

    .trending-carousel {
        grid-template-columns: repeat(auto-fit, minmax(150px, calc(50% - 10px)));
        gap: 15px;
    }

    .trending-image {
        height: 150px;
    }

    .trending-section {
        padding: 30px 15px;
    }

    .trending-section p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .trending-carousel {
        grid-template-columns: 1fr;
    }

    .trending-image {
        height: 180px;
    }

    .trending-header {
        align-items: center;
    }

    .trending-view-all-btn {
        align-self: center;
        margin-top: 10px;
    }
}


/* trendingProducts End */





.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    /* color: inherit; */
    border: none;
    padding: 0 !important;
    font: inherit;
    color: teal;
}






/* Footer start */



:root {
    --primary: #26a69a; /* Teal */
    --primary-dark: #00897b;
    --secondary: #6c757d;
    --accent: #ff6f61;
    --background: #f5f7fa;
    --card-bg: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --success: #28a745;
    --whatsapp: #25D366;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

/* Animated Wave */
.footer::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%2326A69A" fill-opacity="1" d="M0,160L48,170.7C96,181,192,203,288,213.3C384,224,480,224,576,213.3C672,203,768,181,864,181.3C960,181,1056,203,1152,202.7C1248,203,1344,181,1392,170.7L1440,160L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"%3E%3C/path%3E%3C/svg%3E') top center/cover no-repeat;
    animation: wave 8s infinite linear;
    pointer-events: none;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    background: linear-gradient(90deg, #fff, #e0f7f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fff, var(--accent));
    border-radius: 2px;
    transition: var(--transition);
}

.footer-section h3:hover::after {
    width: 80px;
}

.footer-section p, .footer-section ul {
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: #e0f7f5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e0f7f5;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.footer-section ul li a:hover {
    color: #fff;
    padding-left: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-links a.facebook:hover { background: #3b5998; }
.social-links a.twitter:hover { background: #1da1f2; }
.social-links a.instagram:hover { background: #e1306c; }
.social-links a.pinterest:hover { background: #bd081c; }

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: #e0f7f5;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .footer-section h3 { font-size: clamp(1.1rem, 1.4vw, 1.3rem); }
}

@media (max-width: 768px) {
    .footer { padding: 3rem 0 1.5rem; }
    .footer-content {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        text-align: center;
    }
    .footer-section h3::after { left: 50%; transform: translateX(-50%); }
    .footer-section ul li a { padding: 0.5rem; }
    .social-links { gap: 1rem; margin-top: 1.5rem; }
    .social-links a { width: 45px; height: 45px; font-size: 1.3rem; }
}

@media (max-width: 576px) {
    .footer::before { height: 80px; top: -80px; }
    .footer-section p, .footer-section ul { font-size: clamp(0.85rem, 0.9vw, 0.9rem); }
    .footer-bottom { font-size: clamp(0.8rem, 0.85vw, 0.9rem); }
}

    /* Footer End */
