        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #FF9999;
            --secondary-color: #87CEEB;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #F8F9FA;
            --white: #FFFFFF;
            --pink-light: #FFB6C1;
            --pink-dark: #FF7B9C;
        }

        body {
            font-family: 'Arial', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left {
            display: flex;
            gap: 30px;
        }

        .top-bar-left a {
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-bar-right a {
            color: var(--white);
            text-decoration: none;
        }

        .currency-selector {
            background: #87CEEB;
            border: 1px solid var(--white);
            color: var(--black);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            border: none;
        }

        .language-selector{
            background: #87CEEB;
            border: 1px solid var(--white);
            color: var(--black);
            padding: 5px 10px;
            border-radius: 4px;
            cursor: pointer;
            border: none;
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo img {
            width: 50px;
            height: 50px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-momme {
            font-size: 28px;
            color: var(--primary-color);
        }

        .logo-subtitle {
            font-size: 14px;
            color: var(--secondary-color);
            font-weight: normal;
        }

        /* Search Bar */
        .search-bar {
            flex: 2 1 420px;
            max-width: 720px;
            min-width: 260px;
            margin: 0 20px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 50px 12px 20px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 20px;
            color: var(--white);
            cursor: pointer;
        }

        /* RTL (Arabic): keep text readable and avoid clipping under the button */
        html[lang="ar"] .search-bar input,
        [dir="rtl"] .search-bar input {
            text-align: right;
            padding: 12px 20px 12px 60px; /* reserve space on the left for the button */
        }

        html[lang="ar"] .search-bar button,
        [dir="rtl"] .search-bar button {
            right: auto;
            left: 5px;
        }

        /* Keep header usable when translations increase text width */
        @media (max-width: 1100px) {
            .header-main {
                flex-wrap: wrap;
            }

            .search-bar {
                order: 3;
                flex: 1 1 100%;
                max-width: 100%;
                margin: 0;
            }

            .header-icons {
                margin-left: auto;
            }
        }

        /* Header Icons */
        .header-icons {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .header-icon {
            position: relative;
            cursor: pointer;
            font-size: 22px;
            color: var(--text-dark);
        }

        .header-icon .badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--secondary-color);
            color: var(--white);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
        }

        /* Navigation */
        nav {
            background-color: var(--white);
            border-top: 1px solid #eee;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .nav-menu > li {
            position: relative;
        }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.75rem 0;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-menu > li > a:hover {
            color: #FF9999;
        }

        .nav-menu > li > a i {
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        /* Dropdown specific styles */
        .has-dropdown {
            position: relative;
        }

        .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 200px;
            /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
            border-radius: 8px;
            list-style: none;
            margin: 0;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            border: white;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu li a {
            display: block;
            padding: 0.75rem 1.5rem;
            color: #333;
            text-decoration: none;
            transition: background-color 0.2s ease, color 0.2s ease;
            white-space: nowrap;
        }

        .dropdown-menu li a:hover {
            background-color: #f8f9fa;
            color: #FF9999;
        }
        .has-dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

.has-dropdown.open > a i {
    transform: rotate(180deg);
}

        /* Active state */
        .nav-menu > li > a.active {
            color: #FF9999;
            border-bottom: 2px solid #FF9999;
        }

        .nav-menu {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 15px 0;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 18px;
            transition: color 0.3s;
        }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #E3F2FD 0%, #FFF0F5 100%);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-content {
            flex: 1;
            max-width: 500px;
        }

        .hero-badge {
            display: inline-block;
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .hero-title {
            font-size: 56px;
            font-weight: bold;
            color: var(--primary-color);
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero-subtitle {
            font-size: 24px;
            color: var(--secondary-color);
            margin-bottom: 30px;
        }

        .hero-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .hero-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 153, 153, 0.4);
        }

        .hero-image {
            flex: 1;
            text-align: right;
        }

        .hero-image img {
            max-width: 550px;
            width: 100%;
            height: auto;
            border-radius: 20px;
        }

        /* Categories Section */
        .categories {
            padding: 80px 20px;
            background-color: var(--white);
        }

        .container {
            max-width: 1700px;
            margin: 0 auto;
            padding: 2rem 1rem;

        }

        .section-header {
            opacity: 0;
            transform: translateY(-100px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            
        }
        .section-header.animate {
            opacity: 1;
            transform: translateY(0);
            color: var(--text-light);
            text-align: center;
            margin-bottom: 50px;
}
        

        .section-subtitle {
            color: var( --text-dark);
            font-size: 50px;
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 36px;
            color: var(--text-light);
            font-weight: bold;

        }

        .categories-grid {
            opacity: 0;
            transform: translateY(100px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
           
        }

        .categories-grid.animate {
        opacity: 1;
        transform: translateY(0);
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        }

        .category-card {
            /* background: linear-gradient(135deg, #FFF0F5 0%, #E3F2FD 100%); */
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s;
            cursor: pointer;
            position: relative;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-badge-frame {
            width: 300px;
            height: 300px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .category-card:nth-child(1) .category-badge-frame {
            /* background: #87CEEB; */
            box-shadow: 0 0 0 15px rgba(135, 206, 235, 0.3);
        }

        .category-card:nth-child(1):hover .category-badge-frame {
            /* background: #5FB5D9; */
            box-shadow: 0 0 0 15px rgba(95, 181, 217, 0.4);
        }

        .category-card:nth-child(2) .category-badge-frame {
            /* background: #FFB6C1; */
            box-shadow: 0 0 0 15px rgba(255, 182, 193, 0.3);
        }

        .category-card:nth-child(2):hover .category-badge-frame {
            /* background: #FF9AAC; */
            box-shadow: 0 0 0 15px rgba(255, 154, 172, 0.4);
        }

        .category-card:nth-child(3) .category-badge-frame {
            /* background: #98E4B8; */
            box-shadow: 0 0 0 15px rgba(152, 228, 184, 0.3);
        }

        .category-card:nth-child(3):hover .category-badge-frame {
            /* background: #7BD19F; */
            box-shadow: 0 0 0 15px rgba(123, 209, 159, 0.4);
        }

        .category-badge-frame::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            clip-path: polygon(
                50% 0%, 55% 5%, 60% 3%, 65% 7%, 70% 5%, 75% 9%, 80% 7%, 85% 11%, 90% 9%, 95% 13%,
                100% 50%,
                95% 87%, 90% 91%, 85% 89%, 80% 93%, 75% 91%, 70% 95%, 65% 93%, 60% 97%, 55% 95%, 50% 100%,
                45% 95%, 40% 97%, 35% 93%, 30% 95%, 25% 91%, 20% 93%, 15% 89%, 10% 91%, 5% 87%,
                0% 50%,
                5% 13%, 10% 9%, 15% 11%, 20% 7%, 25% 9%, 30% 5%, 35% 7%, 40% 3%, 45% 5%
            );
        }

        .category-badge-inner {
            width: 170px;
            height: 170px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .category-icon {
            font-size: 50px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .category-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .category-description {
            color: var(--text-light);
            font-size: 14px;
        }

        /* Featured Products Section */
        .featured-products {
            padding: 80px 20px;
            background-color: var(--bg-light);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        /* .product-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        } */

        /* .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        } */

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background: var(--bg-light);
        }

        .product-info {
            padding: 5px;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-current {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .price-old {
            font-size: 16px;
            color: var(--text-light);
            text-decoration: line-through;
        }

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }
        

        /* Collection Banner */
        .collection-banner {
            padding: 70px 20px;
            /* background: linear-gradient(135deg, #FFE5E5 0%, #E3F2FD 100%); */
        }
        /* Collection Banner */
        .collection-banner-chills {
            position: relative;
            padding: 200px 20px;
            background-image: url('https://images.unsplash.com/photo-1515488042361-ee00e0ddd4e4?w=1600&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        .collection-banner-chills::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: rgba(255, 255, 255, 0.7); */
            z-index: 1;
        }

        /* .scalloped-border {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: radial-gradient(circle at 50% 0%, transparent 30px, #FFB6C1 30px);
            background-size: 60px 60px;
            background-position: 0 0;
            z-index: 2;
            animation: moveBorder 20s linear infinite; */
        /* } */

        /* .scalloped-border-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: radial-gradient(circle at 50% 100%, transparent 30px, #FFB6C1 30px);
            background-size: 60px 60px;
            background-position: 0 0;
            z-index: 2;
            animation: moveBorder 20s linear infinite reverse;
        } */

        @keyframes moveBorder {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 60px 0;
            }
        }

        .banner-content-collection {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            z-index: 3;
            /* background: rgba(255, 255, 255, 0.95); */
            /* padding: 20px 30px; */
            /* border-radius: 20px; */
            /* border: 3px solid #f3bfc7; */
            /* box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3); */
        }
        .banner-content-chills{
            opacity: 0;
            transform: translateY(-100px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        .banner-content-chills.animate {
            opacity: 1;
            transform: translateY(0);
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            z-index: 3;
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 30px;
            border-radius: 20px;
            border: 3px solid #f0dee1;
            box-shadow: 0 10px 40px rgba(255, 182, 193, 0.3); 
        }

        .banner-label {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .banner-title {
            font-size: 56px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .banner-subtitle {
            opacity: 0;
            transform: translateY(-200px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            /* margin-bottom: 10px; */
        }
        .banner-subtitle.animate {
            transform: translateY(0);
            opacity: 1;
            font-size: 40px;
            color: var(--secondary-color);
            /* margin-bottom: 10px; */
        }
        .banner-btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }

        .banner-btn:hover {
            background-color: var(--pink-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(255, 153, 153, 0.4);
        }

        .banner-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .banner-title {
            font-size: 48px;
            font-weight: bold;
            /* color: var(--primary-color); */
            margin-bottom: 20px;
        }

        .banner-subtitle {
            /* font-size: 24px; */
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        /* Price Table Section */
        .price-table {
            padding: 80px 20px;
            background-color: var(--white);
        }

        .price-table-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .price-column {
            text-align: left;
        }

        .price-column-title {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .price-column ul {
            list-style: none;
        }

        .price-column li {
            padding: 10px 0;
            color: var(--text-light);
            border-bottom: 1px solid #eee;
        }

        .price-column li:hover {
            color: var(--primary-color);
            cursor: pointer;
        }

        /* FAQ Section */
     /* FAQ Section with Fixed Background */
    /* FAQ Section with Fixed Background */
.faq-section-fixed {
    position: relative;
    padding: 100px 20px;
    background-image: url('../img/henley-design-studio-fj2f6C5hGRM-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    min-height: 600px;
}

.faq-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(255, 255, 255, 0.7); */
    z-index: 1;
}

.faq-content-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    margin-left: auto;
    margin-right: 100px;
    z-index: 3;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.faq-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-label {
    color: #90C695;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

.faq-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-questions {
    /* background: rgba(255, 255, 255, 0.95); */
    /* border-radius: 15px; */
    padding: 30px;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.faq-questions.animate {
    opacity: 1;
    transform: translateY(0);
}

.faq-item {
    border-bottom: 1px solid #f0dee1;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    font-weight: 600;
    color: rgb(243, 113, 113);
    transition: color 0.3s;
}

.faq-question:hover {
    color: rgb(209, 143, 143);
}

.faq-icon {
    font-size: 28px;
    color: #FF9999;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-answer {
    margin-top: 15px;
    padding-left: 10px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-section-fixed {
        padding: 60px 15px;
        background-attachment: scroll;
    }
    
    .faq-content-wrapper {
        margin-right: 20px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-label {
        font-size: 28px;
    }
    
    .faq-questions {
        padding: 20px;
    }
    
    .faq-question {
        font-size: 18px;
    }
}

        /* Blog Section */
        .blog-section {
            padding: 80px 20px;
            background-color: var(--white);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-5px);
        }

        .blog-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            background: var(--bg-light);
        }

        .blog-content {
            padding: 25px;
        }

        .blog-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--text-light);
            font-size: 14px;
        }

        .blog-title {
            font-size: 20px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .blog-excerpt {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
        }

        .blog-content-text {
    margin-top: 12px;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    max-height: 120px;          /* limit preview height */
    overflow: hidden;
    position: relative;
}

/* Paragraphs */
.blog-content-text p {
    margin-bottom: 10px;
}

/* Headings inside content */
.blog-content-text h1,
.blog-content-text h2,
.blog-content-text h3,
.blog-content-text h4 {
    font-size: 16px;
    margin: 10px 0;
    color: #333;
}

/* Lists */
.blog-content-text ul,
.blog-content-text ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.blog-content-text li {
    margin-bottom: 6px;
}

        /* Testimonials Section */
        .testimonials {
            padding: 80px 20px;
            background: linear-gradient(135deg, #FFF0F5 0%, #E3F2FD 100%);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .testimonial-text {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            font-weight: bold;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 3px;
        }

        .author-designation {
            color: var(--text-light);
            font-size: 14px;
        }

        .testimonial-rating {
            color: #FFD700;
            font-size: 18px;
        }

        /* Footer */
        footer {
            background-color: var(--text-dark);
            color: var(--white);
            padding: 60px 20px 20px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-size: 20px;
        }

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

        .footer-section ul li {
            margin-bottom: 10px;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid #555;
            text-align: center;
            color: #999;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            padding: 8px 16px;
            border-radius: 50%;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            /* transition: transform 0.3s; */
        }

        

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

           

            .search-bar {
                margin: 0;
                max-width: 100%;
            }

            .nav-menu {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: flex-start;
            }

            .hero-container {
                flex-direction: column;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-image {
                text-align: center;
                margin-top: 30px;
            }

            .categories-grid,
            .products-grid,
            .price-table-grid,
            .faq-grid,
            .blog-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .banner-title {
                font-size: 32px;
            }
        }
        .price-table-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        

        .section-label {
            color: #FF9999;
            font-size: 40px;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .section-title {
            font-size: 40px;
            color: #666;
            font-weight: bold;
            /* text-transform: uppercase; */
        }

        .price-cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            padding: 20px;
        }

        .price-card {
            position: relative;
            padding: 80px 40px 60px;
            min-height: 400px;
            margin-bottom: 60px;
        }

        .cloud-shape {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .price-card:nth-child(1) .cloud-shape {
            background: #87CEEB;
            border-radius: 100px;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(1):hover .cloud-shape {
            background: #5FB5D9;
        }

        .price-card:nth-child(2) .cloud-shape {
            background: #FFB6C1;
            border-radius: 100px;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(2):hover .cloud-shape {
            background: #FF9AAC;
        }

        .price-card:nth-child(3) .cloud-shape {
            background: #98E4B8;
            border-radius: 100px;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(3):hover .cloud-shape {
            background: #7BD19F;
        }

        .cloud-shape::before {
            content: '';
            position: absolute;
            background: inherit;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            top: -50px;
            left: 30%;
            transform: translateX(-50%);
            transition: background 0.3s ease;
        }

        .cloud-shape::after {
            content: '';
            position: absolute;
            background: inherit;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            top: -40px;
            right: 25%;
            transform: translateX(50%);
            transition: background 0.3s ease;
        }

        .cloud-left {
            position: absolute;
            width: 80px;
            height: 80px;
            background: inherit;
            border-radius: 50%;
            left: -20px;
            top: 30%;
        }

        .cloud-right {
            position: absolute;
            width: 90px;
            height: 90px;
            background: inherit;
            border-radius: 50%;
            right: -25px;
            top: 35%;
        }

        .price-card:nth-child(1) .cloud-left,
        .price-card:nth-child(1) .cloud-right {
            background: #87CEEB;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(1):hover .cloud-left,
        .price-card:nth-child(1):hover .cloud-right {
            background: #5FB5D9;
        }

        .price-card:nth-child(2) .cloud-left,
        .price-card:nth-child(2) .cloud-right {
            background: #FFB6C1;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(2):hover .cloud-left,
        .price-card:nth-child(2):hover .cloud-right {
            background: #FF9AAC;
        }

        .price-card:nth-child(3) .cloud-left,
        .price-card:nth-child(3) .cloud-right {
            background: #98E4B8;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(3):hover .cloud-left,
        .price-card:nth-child(3):hover .cloud-right {
            background: #7BD19F;
        }

        .cloud-bottom-left {
            position: absolute;
            width: 70px;
            height: 70px;
            background: inherit;
            border-radius: 50%;
            left: 15%;
            bottom: -25px;
        }

        .cloud-bottom-center {
            position: absolute;
            width: 85px;
            height: 85px;
            background: inherit;
            border-radius: 50%;
            left: 50%;
            transform: translateX(-50%);
            bottom: -35px;
        }

        .cloud-bottom-right {
            position: absolute;
            width: 75px;
            height: 75px;
            background: inherit;
            border-radius: 50%;
            right: 15%;
            bottom: -28px;
        }

        .price-card:nth-child(1) .cloud-bottom-left,
        .price-card:nth-child(1) .cloud-bottom-center,
        .price-card:nth-child(1) .cloud-bottom-right {
            background: #87CEEB;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(1):hover .cloud-bottom-left,
        .price-card:nth-child(1):hover .cloud-bottom-center,
        .price-card:nth-child(1):hover .cloud-bottom-right {
            background: #5FB5D9;
        }

        .price-card:nth-child(2) .cloud-bottom-left,
        .price-card:nth-child(2) .cloud-bottom-center,
        .price-card:nth-child(2) .cloud-bottom-right {
            background: #FFB6C1;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(2):hover .cloud-bottom-left,
        .price-card:nth-child(2):hover .cloud-bottom-center,
        .price-card:nth-child(2):hover .cloud-bottom-right {
            background: #FF9AAC;
        }

        .price-card:nth-child(3) .cloud-bottom-left,
        .price-card:nth-child(3) .cloud-bottom-center,
        .price-card:nth-child(3) .cloud-bottom-right {
            background: #98E4B8;
            transition: background 0.3s ease;
        }

        .price-card:nth-child(3):hover .cloud-bottom-left,
        .price-card:nth-child(3):hover .cloud-bottom-center,
        .price-card:nth-child(3):hover .cloud-bottom-right {
            background: #7BD19F;
        }

        .card-content {
            position: relative;
            z-index: 1;
        }

        .card-title {
            font-size: 24px;
            font-weight: bold;
            color: #666;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
        }

        .card-list {
            list-style: none;
            padding: 0;
        }

        .card-list li {
            padding: 12px 0;
            color: #666;
            font-size: 15px;
            text-align: center;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .card-list li:last-child {
            border-bottom: none;
        }

        .card-list li:hover {
            color: #333;
            transform: translateX(5px);
            cursor: pointer;
        }

        .card-tagline {
            text-align: center;
            margin-top: 30px;
            font-size: 28px;
            color: #666;
            font-weight: 600;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .price-cards-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 32px;
            }

            .price-card {
                padding: 70px 30px 50px;
            }
        }
    /* Featured Blog Section */
    .featured-section-header{
        opacity: 0;
        margin-top: 40px;
        transform: translateY(-140px);
        transition: opacity 0.9s ease-out, transform 0.9s ease-out;

    }
    .featured-section-header.animate {
        margin-top: 40px;
        text-align: center;
        opacity: 1;
        transform: translateY(0);
    }

    .featured-blog-section {

        padding: 20px 20px;
        background-color: var(--white);
        /* text-align: center ; */
    }

    .featured-section-label {
        color: var(--primary-color);
        font-size: 40px;
        margin-bottom: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .featured-section-title {
        font-size: 48px;
        color: var(--text-dark);
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .featured-blog-card-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 10px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .featured-blog-card {
        display: flex;
        gap: 40px;
        align-items: center;
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }

    /* .featured-blog-card:hover { 
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
*/
    .featured-blog-image-container {
        flex: 0 0 45%;
        max-width: 500px;
    }

    .featured-blog-image {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 15px;
    }

    .featured-blog-content {
        flex: 1;
        padding: 40px 40px 40px 0;
    }

    .featured-blog-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .featured-blog-date {
        color: var(--text-light);
        font-size: 16px;
    }

    .featured-blogger-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: var(--primary-color);
        color: var(--white);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 500;
    }

    .featured-blog-title {
        font-size: 32px;
        font-weight: bold;
        color: var(--text-dark);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .featured-blog-excerpt {
        color: var(--text-light);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .featured-read-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-color);
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: gap 0.3s;
        padding-top: 20px;
    }

    .featured-read-more:hover {
        gap: 15px;
    }

    .featured-blog-navigation {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .featured-nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--primary-color);
        color: var(--white);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s;
    }

    .featured-nav-btn:hover:not(:disabled) {
        background-color: #FF7B9C;
        transform: scale(1.1);
    }

    .featured-nav-btn:disabled {
        background-color: #ddd;
        cursor: not-allowed;
        transform: scale(1);
    }

    .no-featured-blogs {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-light);
        font-size: 18px;
    }

    @media (max-width: 968px) {
        .featured-blog-card {
            flex-direction: column;
            gap: 0;
        }

        .featured-blog-image-container {
            flex: none;
            max-width: 100%;
            width: 100%;
        }

        .featured-blog-content {
            padding: 30px 20px;
        }

        .featured-blog-title {
            font-size: 26px;
        }

        .featured-section-title {
            font-size: 36px;
        }
    }

    @media (max-width: 576px) {
        .featured-blog-section {
            padding: 40px 15px;
        }

        .featured-section-title {
            font-size: 28px;
        }

        .featured-blog-title {
            font-size: 22px;
        }

        .featured-blog-image {
            height: 280px;
        }
    }


    /*FOOTER*/
     /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #E8F4F8 0%, #F0F4F8 100%);
            padding: 80px 20px 20px;
            color: #666;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr ;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-section h3 {
            color: #FF9999;
            font-size: 22px;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .footer-section p,
        .footer-section a {
            color: #666;
            line-height: 1.8;
            margin-bottom: 15px;
            font-size: 15px;
        }

        .footer-section a {
            text-decoration: none;
            display: block;
        }



        /* Contact Section */
        .contact-info {
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
            color: #666;
            line-height: 1.6;
        }

        .contact-item i {
            color: #FF9999;
            font-size: 18px;
            margin-top: 2px;
            width: 20px;
        }

        /* Payment Icons */
        .payment-icons {
            display: flex;
            gap: 12px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .payment-icon {
            width: 55px;
            height: 38px;
            background: #fff;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #fff;
            font-size: 11px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .payment-icon.maestro {
            background: linear-gradient(135deg, #0066B2, #CC0000);
        }

        .payment-icon.visa {
            background: linear-gradient(135deg, #1A1F71, #00579F);
        }

        .payment-icon.cirrus {
            background: linear-gradient(135deg, #004B87, #0073CF);
        }

        .payment-icon.paypal {
            background: linear-gradient(135deg, #003087, #009CDE);
        }

        /* Newsletter Section */
        .newsletter-section {
            max-width: 100%;
        }

        .newsletter-description {
            margin-bottom: 25px;
            color: #666;
            line-height: 1.6;
        }

        .newsletter-form {
            position: relative;
            margin-bottom: 30px;
        }

        .newsletter-input {
            width: 100%;
            padding: 16px 60px 16px 20px;
            border: none;
            border-radius: 30px;
            background: #565454;
            color:  #fff; 
            font-size: 14px;
            box-shadow: 0 4px 15px rgba(99, 97, 97, 0.08);
            transition: box-shadow 0.3s;
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 4px 20px rgba(255, 153, 153, 0.3);
        }

        .newsletter-input::placeholder {
            color: #999;
        }

        .newsletter-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: #FF9999;
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .newsletter-btn:hover {
            background: #FF7B9C;
            transform: translateY(-50%) scale(1.05);
        }

        /* Social Links */
        .social-section h3 {
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border:none;
            padding: 6px 18px;
            /* border-radius: 50%; */
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        .social-link:hover {
            background: #cfc5c5;
            color: #fff;
            /* transform: translateY(-3px); */
            /* box-shadow: 0 5px 15px rgba(255, 153, 153, 0.3); */
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(0,0,0,0.08);
            text-align: center;
            color: #999;
            font-size: 15px;
        }

        .footer-bottom a {
            color: #FF9999; 
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        /* .footer-bottom a:hover {
            color: #FF7B9C;
        } */

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }

            .newsletter-section {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 50px 20px 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .newsletter-section {
                grid-column: span 1;
            }

            .footer-section h3 {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .payment-icons {
                justify-content: flex-start;
            }

            .social-links {
                justify-content: flex-start;
            }
        }
        /* collection and breadcrumb Styles */

     /* Page Header */
        .page-header {
            background-color: var(--bg-light);
            padding: 15px 15px;
            text-align: center;
            color:black;
        }

        .page-title {
            font-size: 42px;
            color: var(--text-light);
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 15px;
        }

        .breadcrumb a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        .breadcrumb span {
            color: var(--text-light);
        }

        /* Collections Grid */
        .collections-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .collection-card {
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s;
        }

        .collection-card:hover {
            transform: translateY(-5px);
        }

        .collection-image-wrapper {
            position: relative;
            width: 100%;
            height: 380px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .collection-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .collection-info {
            padding: 35px 25px;
            text-align: center;
        }

        .collection-name {
            font-size: 22px;
            font-weight: bold;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .collection-count {
            color: var(--text-light);
            font-size: 15px;
            margin-bottom: 20px;
        }

        .collection-btn {
            display: inline-block;
            padding: 12px 35px;
            background-color: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            font-size: 14px;
            transition: background 0.3s;
        }

        .collection-btn:hover {
            background-color: #ff7f7f;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .header-main {
                flex-direction: column;
                gap: 20px;
            }

            .search-bar {
                margin: 0;
                max-width: 100%;
            }

            .nav-menu {
                flex-wrap: wrap;
                gap: 15px;
                justify-content: flex-start;
            }

            .page-title {
                font-size: 32px;
            }

            .collections-grid {
                grid-template-columns: 1fr;
            }
        }


/* Collections- best seller,new arrival .....*/
  /* Main Content */
        .main-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            gap: 40px;
        }

        /* Sidebar */
        .sidebar {
            width: 280px;
            flex-shrink: 0;
        }

        .filter-section {
            background: var(--white);
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 25px;
            /* box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
        }

        .filter-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--white);
            background: var(--primary-color);
            padding: 15px 20px;
            border-radius: 25px;
            margin-bottom: 20px;
            text-align: center;
        }

        .category-list {
            list-style: none;
        }

        .category-item {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            color: var(--text-dark);
            transition: color 0.3s;
        }

        .category-item:hover {
            color: var(--primary-color);
        }

        .category-item:last-child {
            border-bottom: none;
        }

        .color-filter-title {
            font-size: 18px;
            font-weight: bold;
            color: var(--white);
            background: var(--primary-color);
            padding: 15px 20px;
            border-radius: 25px;
            margin-bottom: 20px;
            text-align: center;
        }

        .color-options {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }

        .color-option {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border-color 0.3s;
        }

        .color-option:hover {
            border-color: var(--text-dark);
        }

        /* Products Area */
        .products-area {
            flex: 1;
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .view-toggle {
            display: flex;
            gap: 10px;
        }

        .view-btn {
            width: 45px;
            height: 45px;
            border: none;
            background: var(--secondary-color);
            color: var(--white);
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .view-btn.active {
            background: var(--primary-color);
        }

        .sort-dropdown {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .sort-select {
            padding: 12px 40px 12px 20px;
            border: none;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--white);
            border-radius: 10px;
            border: 1px solid transparent ;
            overflow: hidden;
            /* box-shadow: 0 2px 15px rgba(0,0,0,0.08); */
            /* transition: transform 0.3s, box-shadow 0.3s; */
            cursor: pointer;
        }
        .product-card a{
            text-decoration: none;
        }

        /* .product-card:hover {
            border-color: var(--pink-dark);
        } */
         .product-card:hover{
            border-color: var(--pink-dark);
         }

        .product-image-wrapper {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sale-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: #FFA500;
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 12px;
            text-transform: uppercase;
        }

        .product-info {
            padding: 20px;
        }

        .product-name {
            font-size: 18px;
            font-weight: bold;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 20px;
            color: #4CAF50;
            font-weight: bold;
        }

        .original-price {
            font-size: 16px;
            color: var(--text-light);
            text-decoration: line-through;
        }

        .no-products {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .main-content {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }


            .search-bar {
                margin: 0;
                max-width: 100%;
            }

            .nav-menu {
                flex-wrap: wrap;
                gap: 15px;
            }

            .page-title {
                font-size: 32px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* For wishlist*/
        /* Wishlist Section */
        .wishlist-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .wishlist-container {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            /* box-shadow: 0 2px 15px rgba(0,0,0,0.08); */
        }

        .wishlist-table {
            width: 100%;
            border-collapse: collapse;
        }

        .wishlist-table thead {
            background-color: var(--bg-light);
        }

        .wishlist-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            color: var(--text-dark);
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .wishlist-table th:first-child {
            width: 80px;
            text-align: center;
        }

        .wishlist-table td {
            padding: 25px 20px;
            border-bottom: 1px solid #eee;
            vertical-align: middle;
        }

        .wishlist-table tbody tr:last-child td {
            border-bottom: none;
        }

        .wishlist-table tbody tr:hover {
            background-color: #fafafa;
        }

        /* Product Cell */
        .product-cell {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info {
            flex: 1;
        }

        .product-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .product-category {
            font-size: 14px;
            color: var(--text-light);
        }

        /* Price */
        .product-price {
            font-size: 22px;
            font-weight: bold;
            color: #4CAF50;
        }

        /* Stock Status */
        .stock-status {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .stock-status.in-stock {
            background-color: #e8f5e9;
            color: #4CAF50;
        }

        .stock-status.out-of-stock {
            background-color: #ffebee;
            color: #f44336;
        }

        /* Action Buttons */
        .action-cell {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .btn-add-cart {
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 14px;
        }

        .btn-add-cart:hover {
            background-color: var(--pink-dark);
            transform: translateY(-2px);
        }

        .btn-add-cart:disabled {
            background-color: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .btn-remove {
            width: 40px;
            height: 40px;
            border: none;
            background-color: #ffebee;
            color: #f44336;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s;
        }

        .btn-remove:hover {
            background-color: #f44336;
            color: var(--white);
        }

        /* Empty State */
        .empty-wishlist {
            text-align: center;
            padding: 80px 20px;
        }

        .empty-icon {
            font-size: 80px;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .empty-wishlist h3 {
            font-size: 24px;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .empty-wishlist p {
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .btn-continue {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .btn-continue:hover {
            background-color: var(--pink-dark);
            transform: translateY(-2px);
        }


         @media (max-width: 768px) {
            .wishlist-table {
                display: block;
                overflow-x: auto;
            }

            .page-title {
                font-size: 28px;
            }

            .product-cell {
                flex-direction: column;
                align-items: flex-start;
            }

            .action-cell {
                flex-direction: column;
                width: 100%;
            }

            .btn-add-cart {
                width: 100%;
            }
        }

          .cart-wishlist-wrapper {
            display: flex;
            gap: 10px;
            align-items: center;
        } 
        /* Button Container */
        .button-container {
            display: flex;
            gap: 10px;
        }

        .add-to-cart-btn {
            flex: 0 0 75%;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 10px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
}
        /* .add-to-cart-btn {
            flex: 1;
            padding: 12px 20px;
            background: var(--primary-color);
            color: var(--white);
            border: none;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s ease;
        } */

        .add-to-cart-btn:hover {
            border: 2px solid var(--pink-dark); 
            border-color: var(--pink-dark); 
            /* transform: translateY(-2px); */
        }
        .wishlist-btn {
            flex: 0 0 calc(25% - 10px);
            background: var(--white);
            color: var(--pink-dark);
            border: 2px solid var(--primary-color); 
            padding: 10px;
            border-radius: 5px;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
}

        /* .wishlist-btn {
            width: 45px;
            height: 45px;
            padding: 0;
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        } */

        .wishlist-btn:hover {
            /* background: var(--pink-dark); */
            border-color: var(--pink-dark); 
            /* transform: translateY(-2px) scale(1.1); */
        }
        .wishlist-btn.active {
        background: var(--pink-light);
        color: var(--white);
    }

        /* Product Detail Page */
        .product-detail-container {
            display: flex;
            gap: 40px;
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .product-detail-container .product-images {
            flex: 1;
            min-width: 0;
        }

        .product-detail-container .main-image {
            width: 100%;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            background: var(--bg-light);
        }

        .product-detail-container .main-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-detail-container .product-details {
            flex: 1;
            min-width: 0;
        }

        .product-detail-container .product-title {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .product-detail-container .product-description {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .product-detail-container .product-price-section {
            margin-bottom: 25px;
        }

        .product-detail-container .effective-price-label {
            color: #666;
        }

        .product-detail-container .product-price {
            font-size: 32px;
            font-weight: bold;
            color: var(--primary-color, #FF6B9D);
            margin-left: 10px;
        }

        .product-detail-container .color-selection label,
        .product-detail-container .material-selection label,
        .product-detail-container .size-selection label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-detail-container .color-info span {
            padding: 8px 15px;
            background: #f5f5f5;
            border-radius: 4px;
            display: inline-block;
        }

        .product-detail-container .product-meta {
            margin-bottom: 25px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 4px;
        }

        .product-detail-container .product-meta .meta-item {
            margin-bottom: 8px;
        }

        .product-detail-container .product-meta .meta-item:last-child {
            margin-bottom: 0;
        }

        .product-detail-container .availability.in-stock {
            color: #28a745;
        }

        .product-detail-container .availability.out-of-stock {
            color: #dc3545;
        }

        .product-detail-container .product-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* Override shared card button styles inside product detail */
        .product-detail-container .product-actions .add-to-cart-btn,
        .product-detail-container .product-actions .wishlist-btn {
            width: 100%;
            flex: 0 0 auto;
            padding: 12px 24px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
        }

        .product-detail-container .product-actions .add-to-cart-btn {
            background: var(--primary-color, #FF6B9D);
            color: #fff;
            border: none;
        }

        .product-detail-container .product-actions .wishlist-btn {
            background: #fff;
            color: var(--primary-color, #FF6B9D);
            border: 2px solid var(--primary-color, #FF6B9D);
            justify-content: center;
        }

        @media (max-width: 768px) {
            .product-detail-container {
                flex-direction: column;
                gap: 20px;
                margin: 20px auto;
            }

            .product-detail-container .product-title {
                font-size: 22px;
            }

            .product-detail-container .product-price {
                font-size: 24px;
            }
        }

        /* Font Awesome icon styling */
        .wishlist-btn i {
            transition: transform 0.3s;
        }

        .wishlist-btn:hover i {
            transform: scale(1.2);
        }

        
        /* .wishlist-btn.in-wishlist {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }

        .wishlist-btn.in-wishlist:hover {
            background: var(--pink-dark);
            border-color: var(--pink-dark);
        }

        .wishlist-btn.in-wishlist i {
            font-weight: 900; 
        } 
        */


/* login page */
 .login-container {
        max-width: 480px;
        margin: 60px auto;
        padding: 40px;
        background: white;
        
        /* border-radius: 10px; */
        /* box-shadow: 0 2px 20px rgba(0,0,0,0.08); */
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        width: 100%;
        padding: 14px 18px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: #6ba8c4;
    }
    
    .forgot-password {
        text-align: center;
        margin: 15px 0;
    }
    
    .forgot-password a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }
    
    .forgot-password a:hover {
        color: #6ba8c4;
    }
    
    .btn-signin {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #e8949a 0%, #ea9ca2 100%);
        border: none;
        border-radius: 50px;
        color: white;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: transform 0.2s;
    }
    
    .btn-signin:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(232, 148, 154, 0.4);
    }
    
    .return-store {
        text-align: center;
        margin-top: 15px;
    }
    
    .return-store a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }
    
    .return-store a:hover {
        color: #6ba8c4;
        text-decoration: underline;
    }
    
    .alert {
        padding: 12px 18px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    .alert-danger {
        background: #fee;
        border: 1px solid #fcc;
        color: #c33;
    }
    
    .alert-success {
        background: #efe;
        border: 1px solid #cfc;
        color: #3c3;
    }
    .create-account{
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #6ba8c4;
    }
    .create-account a:hover {
  text-decoration: underline;
}

    /* Register*/
    .signup-container {
        max-width: 480px;
        margin: 20px auto;
        padding: 40px;
        background: white;
        /* border-radius: 10px; */
        /* box-shadow: 0 2px 20px rgba(0,0,0,0.08); */
    }
    
    .signup-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .signup-header h2 {
        font-size: 24px;
        color: #333;
        margin: 0 0 10px 0;
    }
    
    .signup-header p {
        color: #666;
        font-size: 14px;
    }
     .form-label {
        display: block;
        margin-bottom: 8px;
        color: #333;
        font-size: 14px;
        font-weight: 500;
    }

    .password-hint {
        font-size: 12px;
        color: #999;
        margin-top: 5px;
    }
    
    .btn-signup {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, #e8949a 0%, #ea9ca2 100%);
        border: none;
        border-radius: 50px;
        color: white;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: transform 0.2s;
        margin-top: 10px;
    }
    
    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(232, 148, 154, 0.4);
    }
    
    .btn-signup:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    .already-account {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
        color: #666;
    }
    
    .already-account a {
        color: #6ba8c4;
        text-decoration: none;
        font-weight: 500;
    }
    
    .already-account a:hover {
        text-decoration: underline;
    }
    
  
    .alert-info {
        background: #e7f3ff;
        border: 1px solid #b3d9ff;
        color: #004085;
    }
    
    .terms-text {
        font-size: 12px;
        color: #666;
        text-align: center;
        margin-top: 15px;
        line-height: 1.5;
    }
    
    .terms-text a {
        color: #6ba8c4;
        text-decoration: none;
    }
    
    .terms-text a:hover {
        text-decoration: underline;
    }


/* BLOG page (/pages/blogs) */
/* Blog Section Pages */
.blog-section-pages {
    padding: 60px 0;
    background-color: #fff;
}

/* Main Layout Wrapper */
.blog-layout-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Sidebar - 30% width */
.blog-sidebar {
    width: 20%;
    flex-shrink: 0;
    margin: 25px;
}

/* Main Content - 70% width */
.blog-main-content {
    width: 70%;
    flex-grow: 1;
}

/* Blog Grid - 2 columns */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Recent Articles Sidebar */
.recent-articles-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 30px;
}

.recent-articles-header h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
}

.recent-article-item {
    margin-bottom: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.recent-article-item .article-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.recent-article-item .article-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.recent-article-item:hover .article-image img {
    transform: scale(1.05);
}

.recent-article-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recent-article-item:hover h4 {
    color: #ff9a9e;
}

.recent-article-item p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Blog Card Pages Styles */
.blog-card-pages {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08); */
    /* transition: all 0.3s ease; */
    display: flex;
    flex-direction: column;
}

/* .blog-card-pages:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
} */

.blog-card-pages .blog-image-pages {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.blog-card-pages .blog-image-pages img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transition: transform 0.3s ease; */
}

/* .blog-card-pages:hover .blog-image-pages img {
    transform: scale(1.05);
} */

.blog-card-pages .blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-pages .blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-card-pages .blog-date {
    color: #999;
    font-size: 14px;
}

.blog-card-pages .blog-date i {
    margin-right: 5px;
}

.blog-card-pages .blog-author {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 13px;
}

.blog-card-pages .blog-author i {
    margin-right: 5px;
}

.blog-card-pages .blog-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-card-pages .blog-comments {
    display: flex;
    align-items: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-card-pages .blog-comments i {
    margin-right: 8px;
}

.blog-card-pages .blog-excerpt {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .blog-card-pages .blog-image-pages {
        height: 250px;
    }
    
    .blog-card-pages .blog-title {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .blog-layout-wrapper {
        flex-direction: column;
    }
    
    .blog-sidebar {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .blog-main-content {
        width: 100%;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header .page-title {
        font-size: 24px;
    }
    
    .blog-section-pages {
        padding: 40px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-pages .blog-image-pages {
        height: 250px;
    }
    
    .recent-article-item {
        margin-bottom: 20px;
    }
}

.baby-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baby-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.baby-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
baby-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baby-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.baby-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.baby-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.baby-modal-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.baby-modal-header p {
    color: #666;
    font-size: 14px;
}

.baby-modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.baby-modal-actions button {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6b9d;
    color: white;
}

.btn-primary:hover {
    background: #ff5588;
}

.btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.interest-tag {
    background: #f0f8ff;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.interest-tag .remove-interest {
    cursor: pointer;
    color: #999;
    font-weight: bold;
}

.interest-tag .remove-interest:hover {
    color: #ff6b9d;
}
#baby-message-area {
    margin-bottom: 16px;
}

/* In header's modal*/
.baby-interests-icon {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.baby-interests-icon:hover {
    transform: scale(1.1);
}

.baby-interests-icon i {
    color: #ff6b9d;
    font-size: 20px;
}

.icon-label {
    display: none;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    white-space: nowrap;
    color: #666;
}

.baby-interests-icon:hover .icon-label {
    display: block;
}

/* Baby Interests Modal */
.baby-interests-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.modal-header h3 {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.modal-header h3 i {
    color: #ff6b9d;
}

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    transition: all 0.3s;
}

.close-btn:hover {
    color: #333;
    transform: rotate(90deg);
}

/* Baby Profile Section */
.baby-profile-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.baby-profile-display {
    min-height: 100px;
}

.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #999;
}

.profile-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.profile-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #ff6b9d;
}

.profile-item label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-item .value {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    margin-top: 4px;
}

.edit-profile-btn {
    margin-top: 16px;
    padding: 8px 16px;
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.edit-profile-btn:hover {
    background: #ff5588;
}

/* Form Styles */
.baby-profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

/* Interests Section */
.interests-section {
    margin-bottom: 24px;
}

.interests-section h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    min-height: 50px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.interests-list.empty {
    justify-content: center;
    align-items: center;
    color: #999;
    font-style: italic;
}

.interest-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    animation: popIn 0.3s ease;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.interest-tag .remove-interest {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s;
}

.interest-tag .remove-interest:hover {
    color: white;
    transform: scale(1.2);
}

.add-interest-section {
    margin-top: 16px;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.input-group .form-control {
    flex: 1;
}

.btn-add {
    padding: 10px 20px;
    background: #ff6b9d;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-add:hover {
    background: #ff5588;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
}

.modal-actions button {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-save {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn-save:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.btn-cancel:hover {
    background: #e0e0e0;
}

/* Alert Messages */
#baby-interests-message {
    margin-bottom: 16px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    animation: slideDown 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-content {
        padding: 24px 16px;
        width: 95%;
    }
    
    .baby-profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .icon-label {
        display: none !important;
    }
}
.babies-list {
    max-height: 400px;
    overflow-y: auto;
}

.babies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.babies-header h4 {
    margin: 0;
    color: #333;
}

.btn-add-baby {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-add-baby:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.baby-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.baby-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.baby-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.baby-card-header h5 {
    margin: 0;
    color: #FF9999;
    font-size: 18px;
}

.baby-card-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-icon:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-delete:hover {
    background: #ffebee;
    color: #d32f2f;
}

.baby-card-body {
    font-size: 14px;
}

.baby-info-row {
    display: flex;
    margin-bottom: 8px;
}

.baby-info-row .label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}

.baby-info-row .value {
    color: #333;
}

.baby-interests-preview {
    margin-top: 10px;
}

.interests-tags-small {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.tag-small {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}
/* Blog Details*/
.blog-detail-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-meta {
    padding: 20px 30px 0;
    display: flex;
    gap: 30px;
    align-items: center;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.blog-detail-meta i {
    color: #c98099;
}

.blog-detail-title {
    padding: 15px 30px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.blog-comments {
    padding: 0 30px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.blog-comments i {
    color: #c98099;
}

.blog-detail-content {
    padding: 10px 30px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-full-content {
    margin-top: 20px;
   

}

.blog-tags {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-tags i {
    color: #c98099;
}

.blog-tags .tag {
    background: #f8f9fa;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
}

.blog-share {
    padding: 20px 30px 30px;
    border-top: 1px solid #eee;
}

.share-label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s;
}

.share-btn:hover {
    transform: translateY(-3px);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.pinterest { background: #e60023; }
.share-btn.google { background: #db4437; }

/* Comment Section */
.comment-section {
    /* background: white; */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.1);
}

.comment-title {
    color: #c98099;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    /* transition: border-color 0.3s; */
}

.form-group textarea {
    border-radius: 15px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c98099;
}

.submit-btn {
    background:#c98099;;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #d189a2;
}

/* Recent Articles in Sidebar - Add click styles */
.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}

.article-link:hover {
    transform: translateY(-5px);
}

.article-link:hover h4 {
    color: #ff6b9d;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail-image {
        height: 250px;
    }
    
    .blog-detail-title {
        font-size: 24px;
        padding: 15px 20px;
    }
    
    .blog-detail-content {
        padding: 20px;
    }
    
    .comment-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .comment-section {
        padding: 30px 20px;
    }
}

.blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-link:hover .blog-title {
    color: #FF9999;
}

/* Article link styles */
.article-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.article-link:hover h4 {
    color: #FF9999;
}

/* Categories Section Styles */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin-top: 15px;
}

.category-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.category-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #333;
    /* transition: all 0.3s ease; */
}

.category-link i {
    color: #ce9494;
    font-size: 14px;
}

.category-link span {
    font-size: 14px;
    font-weight: 500;
}

/* .category-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(255, 153, 153, 0.2);
} */

/* .category-link:hover {
    color: #FF9999;
}

.category-link:hover i {
    color: #ff6b9d;
} */

/* Active category highlight */


.category-item.active .category-link {
    color: white;
}

.category-item.active .category-link i {
    color: white;
}

.category-item.active:hover {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .categories-list {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .category-item {
        flex: 1 1 calc(50% - 5px);
        min-width: 120px;
    }
}


/* COntact*/


.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px rgba(255, 105, 180, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
}

.contact-title {
    font-size: 20px;
    font-weight: 700;
    color: #FF69B4;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-details {
    color: #666;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 10px;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: #FF69B4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* Alert Messages */
.alert {
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    animation: slideDown 0.4s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 24px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-success i {
    color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-error i {
    color: #dc3545;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    font-family: inherit;
}

.form-control:focus {
    border-color: #FF69B4;
    box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
}

textarea.form-control {
    border-radius: 20px;
    resize: vertical;
    min-height: 150px;
    font-family: inherit;
}

.submit-btn {
    width: 100%;
    padding: 15px 40px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 0 20px;
    }
}


/**
 * Reusable Pagination Styles
 * File: e_commerce_baby/public/css/pagination.css
 */

/* Pagination Wrapper */
.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    padding: 20px 0;
}

/* Pagination Info */
.pagination-info {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Pagination List */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

/* Pagination Item */
.pagination-item {
    display: inline-block;
}

/* Pagination Link */
.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-link:hover {
    background: #f8f9fa;
    border-color: #FF9999;
    color: #FF9999;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(255, 153, 153, 0.2);
}

/* Active Page */
.pagination-item.active .pagination-link {
    background: linear-gradient(135deg, #FF9999 0%, #FF8080 100%);
    border-color: #FF9999;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 153, 153, 0.3);
}

.pagination-item.active .pagination-link:hover {
    transform: translateY(0);
    background: linear-gradient(135deg, #FF8080 0%, #FF9999 100%);
}

/* Disabled State */
.pagination-item.disabled .pagination-link {
    background: #f8f9fa;
    border-color: #dee2e6;
    color: #adb5bd;
    cursor: not-allowed;
    opacity: 0.6;
}

.pagination-item.disabled .pagination-link:hover {
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    border-color: #dee2e6;
}

/* Icons in Pagination */
.pagination-link i {
    font-size: 12px;
}

/* First and Last Page Buttons (Optional) */
.pagination-first,
.pagination-last {
    font-weight: 600;
}

/* Ellipsis for skipped pages */
.pagination-ellipsis {
    padding: 0 8px;
    color: #adb5bd;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .pagination-wrapper {
        margin: 20px 0;
    }

    .pagination {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-link {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 13px;
    }

    .pagination-info {
        font-size: 13px;
        text-align: center;
    }

    /* Hide some page numbers on mobile */
    .pagination-item:not(.active):not(:first-child):not(:last-child):not(:nth-child(2)):not(:nth-last-child(2)) {
        display: none;
    }
}

/* Loading State */
.pagination-loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination-wrapper {
    animation: fadeIn 0.3s ease-out;
}

/* Alternative Minimal Style (Add .pagination-minimal class to wrapper) */
.pagination-minimal .pagination-link {
    border: none;
    background: transparent;
    color: #666;
}

.pagination-minimal .pagination-link:hover {
    background: #f8f9fa;
    color: #FF9999;
}

.pagination-minimal .pagination-item.active .pagination-link {
    background: #FF9999;
    color: white;
}

/* Alternative Rounded Style (Add .pagination-rounded class to wrapper) */
.pagination-rounded .pagination-link {
    border-radius: 50%;
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
}

/* Alternative Large Style (Add .pagination-lg class to wrapper) */
.pagination-lg .pagination-link {
    min-width: 48px;
    height: 48px;
    font-size: 16px;
}

/* Alternative Small Style (Add .pagination-sm class to wrapper) */
.pagination-sm .pagination-link {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
    padding: 0 8px;
}

/* Pagination with Jump to Page */
.pagination-jump {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.pagination-jump label {
    font-size: 14px;
    color: #666;
}

.pagination-jump input {
    width: 60px;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
}

.pagination-jump button {
    padding: 8px 16px;
    background: #FF9999;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.pagination-jump button:hover {
    background: #FF8080;
}

/*FAQ Content Section */
.faq-content-section {
    padding: 10px 0;
    background-color: #fff;
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-accordion-item.active .faq-accordion-header {
    background-color: #7ec8d8;
    color: #fff;
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #7ec8d8;
    transition: all 0.3s ease;
    gap: 15px;
    user-select: none;
}

.faq-accordion-item:not(.active) .faq-accordion-header {
    background-color: #fff;
    color: #333;
}

.faq-accordion-item:not(.active) .faq-accordion-header:hover {
    background-color: #f8f9fa;
}

.faq-accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-icon i {
    font-size: 14px;
    color: #e91e63;
}

.faq-accordion-item.active .faq-accordion-icon i {
    color: #fff;
}

.faq-accordion-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex-grow: 1;
}

.faq-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 1000px;
    padding: 10px;
}

.faq-accordion-answer {
    /* background-color: #f8f9fa; */
    padding: 20px;
    border-radius: 6px;
}

.answer-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
}

.answer-text {
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

/* No FAQs Message */
.no-faqs-message {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
    }
    
    .faq-content-section {
        padding: 2px 0;
    }
    
    .faq-accordion-header {
        padding: 15px 20px;
    }
    
    .faq-accordion-title {
        font-size: 1rem;
    }
    
    .faq-accordion-item.active .faq-accordion-content {
        padding: 10px;
    }
}

/*Language select*/
/* Add to your CSS file */
html[lang="ar"],
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .hero-content,
html[dir="rtl"] .hero-content {
    text-align: right;
}

html[lang="ar"] .category-card,
html[dir="rtl"] .category-card {
    direction: rtl;
}
/* RTL Support for Footer */
html[lang="ar"] .footer {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .footer-content {
    direction: rtl;
}

html[lang="ar"] .footer-section {
    text-align: right;
}

html[lang="ar"] .footer-section h3 {
    text-align: right;
}

html[lang="ar"] .footer-section a {
    text-align: right;
}

html[lang="ar"] .contact-info {
    text-align: right;
}

html[lang="ar"] .contact-item {
    direction: rtl;
}

html[lang="ar"] .contact-item i {
    margin-left: 10px;
    margin-right: 0;
}

html[lang="ar"] .payment-icons {
    justify-content: flex-start;
}

html[lang="ar"] .newsletter-form {
    direction: rtl;
}

html[lang="ar"] .newsletter-input {
    text-align: right;
    padding-right: 15px;
    padding-left: 50px;
}

html[lang="ar"] .newsletter-btn {
    left: 5px;
    right: auto;
}

html[lang="ar"] .social-links {
    justify-content: flex-start;
}

html[lang="ar"] .footer-bottom {
    text-align: center;
}

html[lang="ar"] .footer-bottom p {
    direction: rtl;
}



/*Order page */
/* Orders Page Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 9rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Page Title */
.container h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: white;
}

.table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    table-layout: fixed; /* This ensures consistent column widths */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9fafb;
}

.table-bordered {
    border: 1px solid #e5e7eb;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #e5e7eb;
}

/* Table Header */
.table thead th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    padding: 1rem;
    border-bottom: 2px solid #d1d5db;
    text-align: left;
    vertical-align: middle;
}

/* Specific column widths for alignment */
.table thead th:nth-child(1),
.table tbody td:nth-child(1) {
    width: 20%; /* Order ID */
}

.table thead th:nth-child(2),
.table tbody td:nth-child(2) {
    width: 20%; /* Date */
}

.table thead th:nth-child(3),
.table tbody td:nth-child(3) {
    width: 15%; /* Status */
}

.table thead th:nth-child(4),
.table tbody td:nth-child(4) {
    width: 10%; /* Grand Total */
    text-align: center;
}

.table thead th:nth-child(5),
.table tbody td:nth-child(5) {
    width: 25%; /* Action */
    text-align: center;
}
.table thead th:nth-child(6),
.table tbody td:nth-child(6) {
    width: 25%; /* Action */
    text-align: center;
}

/* Table Body */
.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    color: #4b5563;
    /* font-size: 0.9375rem; */
}

.table tbody tr {
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: #f0f9ff !important;
}

/* Order ID Link */
.table tbody td a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.table tbody td a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Status Badges */
.badge-status {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

/* Action Button */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
}

.btn-primary {
    color: #fff;
    background-color: #FF9EB7;
    border-color: #FF9EB7;
}

.btn-primary:hover {
    background-color: #ff85a3;
    border-color: #ff85a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 158, 183, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Alert Box */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.5rem;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .container h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .table {
        table-layout: auto; /* Remove fixed layout on mobile */
    }
    
    .table thead {
        display: none;
    }
    
    .table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        background-color: white !important;
    }
    
    .table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        border: none;
        border-bottom: 1px solid #e5e7eb;
        text-align: right !important;
        width: 100% !important;
    }
    
    .table tbody td:last-child {
        border-bottom: none;
    }
    
    .table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #374151;
        margin-right: 1rem;
        text-align: left;
        flex: 0 0 40%;
    }
    
    .btn-sm {
        width: auto;
        margin-top: 0;
    }
}

/* Loading State (optional) */
.loading {
    text-align: center;
    padding: 3rem;
    color: #6b7280;
}

.loading::after {
    content: "Loading...";
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% {
        content: "Loading.";
    }
    40% {
        content: "Loading..";
    }
    60%, 100% {
        content: "Loading...";
    }
}



/* Privacy Policy Content Section */
.privacy-content-section {
    padding: 40px 20px 80px;
    background: #ffffff;
    min-height: 60vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
}

.privacy-content-wrapper {
    padding: 50px 40px;
}

/* Privacy Title */
.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 40px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Privacy Description */
.privacy-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: left;
}

.privacy-description p {
    margin: 0 0 20px;
}

.privacy-description p:last-child {
    margin-bottom: 0;
}

.privacy-description h3,
.privacy-description h4 {
    font-weight: 600;
    color: #2c3e50;
    margin: 35px 0 20px;
}

.privacy-description h3 {
    font-size: 1.6rem;
}

.privacy-description h4 {
    font-size: 1.3rem;
}

.privacy-description ul,
.privacy-description ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-description li {
    margin-bottom: 12px;
}

.privacy-description a {
    color: #ff91a4;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.privacy-description a:hover {
    color: #ff6b85;
    border-bottom-color: #ff6b85;
}

.privacy-description strong {
    font-weight: 600;
    color: #2c3e50;
}

.privacy-description blockquote {
    margin: 25px 0;
    padding: 20px 25px;
    background: #f8f9fa;
    border-left: 4px solid #ff91a4;
    font-style: italic;
    color: #5a6c7d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-content-section {
        padding: 40px 15px 60px;
    }
    
    .privacy-content-wrapper {
        padding: 35px 20px;
    }
    
    .privacy-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .privacy-description {
        font-size: 1rem;
    }
    
    .privacy-description h3 {
        font-size: 1.4rem;
        margin: 25px 0 15px;
    }
    
    .privacy-description h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-content-wrapper {
        padding: 25px 15px;
    }
    
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .privacy-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .privacy-description ul,
    .privacy-description ol {
        padding-left: 20px;
    }
}

/* Print Styles */
@media print {
    .privacy-content-section {
        padding: 20px 0;
        background: white;
    }
    
    .privacy-container {
        border: 1px solid #ddd;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-description {
        font-size: 11pt;
        line-height: 1.6;
    }
}