        :root {
            --color-white: #ffffff;
            --color-light: #f9f7f7;
            --color-rose: #f8d7da;
            --color-coral: #f08080;
            --color-muted-green: #d8e2dc;
            --color-vivid-coral: #ff7e6f;
            --color-accent: #fec89a;
            --text-dark: #5a5a5a;
            --text-muted: #8a8a8a;
            --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Almarai', sans-serif;
        }

        html,
        body {
            width: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--color-light);
            color: var(--text-dark);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .top-nav {
            background-color: var(--color-white);
            box-shadow: var(--shadow-sm);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

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

        .logo {
            height: 60px;
            max-width: 100%;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
            white-space: nowrap;
        }

        .nav-links a:hover {
            color: var(--color-vivid-coral);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-vivid-coral);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-icons {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            position: relative;
        }

        .nav-icons a {
            color: var(--text-dark);
            font-size: 1.3rem;
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .nav-icons a:hover {
            color: var(--color-vivid-coral);
        }

        .profile-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--color-white);
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            padding: 1rem 0;
            min-width: 200px;
            z-index: 1000;
            display: none;
            margin-top: 10px;
            display: none;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            color: var(--text-dark);
            font-size: 1.1rem;
            transition: var(--transition);
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background-color: var(--color-light);
            color: var(--color-vivid-coral);
        }

        .dropdown-menu a i {
            width: 20px;
            text-align: center;
        }

        .profile-dropdown:active .dropdown-menu {
            display: block;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: var(--color-white);
            box-shadow: var(--shadow-lg);
            z-index: 2000;
            transition: var(--transition);
            padding: 1rem;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 1rem;
            border-bottom: 1px solid #eee;
            margin-bottom: 1rem;
        }

        .close-menu-btn {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        .mobile-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 700;
            font-size: 1.2rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-links a:hover {
            background-color: var(--color-light);
            color: var(--color-vivid-coral);
        }

        .search-container {
            position: relative;
            margin-top: 1rem;
        }

        .search-container input {
            width: 100%;
            padding: 0.8rem 1rem 0.8rem 2.5rem;
            border: 2px solid var(--color-muted-green);
            border-radius: 50px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .search-container input:focus {
            outline: none;
            border-color: var(--color-vivid-coral);
            box-shadow: 0 0 0 3px rgba(255, 126, 111, 0.3);
        }

        .search-container button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--text-muted);
            font-size: 1.2rem;
            cursor: pointer;
        }

        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-white) 50%, var(--color-light) 50%);
            width: 100%;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: flex;
            height: 100%;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-text {
            flex: 1;
            padding-right: 3rem;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            line-height: 1.2;
        }

        .hero-text h1 span {
            color: var(--color-vivid-coral);
            display: block;
        }

        .hero-text p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: var(--text-muted);
            max-width: 600px;
        }

        .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background-color: var(--color-vivid-coral);
            color: var(--color-white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 126, 111, 0.4);
        }

        .hero-btn:hover {
            transform: translateY(-5px);
            background-color: #ff6b5b;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .hero-img {
            max-width: 100%;
            max-height: 600px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            object-fit: cover;
        }

        .circle-decoration {
            position: absolute;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-accent), var(--color-coral));
            opacity: 0.1;
            z-index: -1;
        }

        .circle-1 {
            top: -200px;
            right: -200px;
        }

        .circle-2 {
            bottom: -150px;
            left: -150px;
        }

        .section-title {
            text-align: center;
            margin: 4rem 0 2rem;
            position: relative;
            padding: 0 2rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--color-vivid-coral);
            border-radius: 2px;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem 4rem;
            width: 100%;
        }

        .category-card {
            background-color: var(--color-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            text-align: center;
            width: 100%;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .category-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .category-card:hover .category-img {
            transform: scale(1.05);
        }

        .category-content {
            padding: 1.5rem;
        }

        .category-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .category-content p {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .category-btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--color-muted-green);
            color: var(--text-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
        }

        .category-btn:hover {
            background-color: var(--color-vivid-coral);
            color: var(--color-white);
        }

        .bundles {
            background-color: var(--color-white);
            padding: 4rem 0;
            position: relative;
            width: 100%;
        }

        .swiper {
            width: 100%;
            height: 500px;
            padding: 2rem 0;
        }

        .bundle-card {
            background-color: var(--color-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 450px;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            width: 100%;
        }

        .bundle-card:hover {
            box-shadow: var(--shadow-lg);
        }

        .bundle-img {
            height: 250px;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .bundle-card:hover .bundle-img {
            transform: scale(1.05);
        }

        .bundle-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .bundle-badge {
            background-color: var(--color-vivid-coral);
            color: var(--color-white);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
            align-self: flex-start;
        }

        .bundle-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .bundle-content p {
            color: var(--text-muted);
            margin-bottom: 1rem;
            flex: 1;
            line-height: 1.6;
        }

        .bundle-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-vivid-coral);
        }

        .old-price {
            text-decoration: line-through;
            color: var(--text-muted);
            font-size: 1.2rem;
            margin-left: 0.5rem;
        }

        .bundle-btn {
            padding: 0.7rem 1.5rem;
            background-color: var(--color-muted-green);
            color: var(--text-dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition);
        }

        .bundle-btn:hover {
            background-color: var(--color-vivid-coral);
            color: var(--color-white);
        }

        .products-intro {
            background-color: var(--color-white);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .products-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://files.catbox.moe/9gs095.png') center/cover no-repeat;
            opacity: 0.03;
            z-index: 0;
        }

        .products-intro-content {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .products-intro h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            position: relative;
            display: inline-block;
        }

        .products-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--color-vivid-coral);
            border-radius: 2px;
        }

        .products-intro p {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 2rem;
            line-height: 1.8;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 3rem 0;
        }

        .feature-card {
            background-color: var(--color-light);
            padding: 2rem;
            border-radius: 20px;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--color-vivid-coral), #ff6b5b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature-card p {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .products-filter {
            background-color: var(--color-white);
            padding: 2rem;
            margin: 2rem auto;
            max-width: 1400px;
            border-radius: 15px;
            box-shadow: var(--shadow-sm);
        }

        .filter-title {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: var(--text-dark);
        }

        .categories-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .category-filter-btn {
            padding: 0.8rem 1.8rem;
            background-color: var(--color-light);
            color: var(--text-dark);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .category-filter-btn i {
            font-size: 1.2rem;
        }

        .category-filter-btn:hover,
        .category-filter-btn.active {
            background: linear-gradient(135deg, var(--color-vivid-coral), #ff6b5b);
            color: var(--color-white);
            box-shadow: 0 4px 15px rgba(255, 126, 111, 0.3);
        }

        .products-showcase {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }


        .products-showcase {
            padding: 3rem 0;
            background-color: var(--color-light);
            width: 100%;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
            justify-items: center;
        }

        .product-card {
            width: 100%;
            max-width: 320px;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 1400px) {
            .products-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 900px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-card {
                max-width: 100%;
            }
        }

        .product-card {
            background: var(--color-white);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .product-card.premium {
            border: 2px solid transparent;
            background-image: linear-gradient(var(--color-white), var(--color-white)),
                linear-gradient(135deg, var(--color-vivid-coral), #ff6b5b);
            background-origin: border-box;
            background-clip: content-box, border-box;
        }

        .product-img-container {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            z-index: 3;
            backdrop-filter: blur(10px);
        }

        .product-badge.new {
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
        }

        .product-badge.bestseller {
            background: linear-gradient(135deg, #FF9800, #f57c00);
            color: white;
        }

        .product-badge.trending {
            background: linear-gradient(135deg, #9C27B0, #7B1FA2);
            color: white;
        }

        .product-badge.exclusive {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #333;
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
        }

        .product-card:hover .product-overlay {
            opacity: 1;
        }

        .quick-view-btn {
            background: var(--color-white);
            color: var(--text-dark);
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transform: translateY(20px);
        }

        .product-card:hover .quick-view-btn {
            transform: translateY(0);
        }

        .quick-view-btn:hover {
            background: var(--color-vivid-coral);
            color: var(--color-white);
            transform: scale(1.05);
        }

        .product-content {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-content h4 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .product-content p {
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex: 1;
            font-size: 1.05rem;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .product-rating i {
            color: #FFD700;
            font-size: 1.1rem;
        }

        .rating-count {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-right: 0.5rem;
        }

        .product-price-section {
            border-top: 1px solid #f0f0f0;
            padding-top: 1.5rem;
            margin-top: auto;
        }

        .price-info {
            display: flex;
            align-items: baseline;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .current-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--color-vivid-coral);
        }

        .old-price {
            font-size: 1.3rem;
            color: var(--text-muted);
            text-decoration: line-through;
            font-weight: 500;
        }

        .product-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .add-to-cart-btn {
            flex: 1;
            background: linear-gradient(135deg, var(--color-vivid-coral), #ff6b5b);
            color: var(--color-white);
            border: none;
            padding: 1rem;
            border-radius: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .add-to-cart-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 126, 111, 0.4);
        }

        .wishlist-btn {
            background: var(--color-muted-green);
            color: var(--text-dark);
            border: none;
            padding: 1rem;
            border-radius: 15px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
        }

        .wishlist-btn:hover {
            background: #ff6b5b;
            color: var(--color-white);
            transform: translateY(-3px);
        }

        .wishlist-btn.active {
            background: #ff6b5b;
            color: var(--color-white);
        }

        .wishlist-btn.active i {
            content: '\f004';
        }

        .offers-section {
            min-height: 70vh;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light) 100%);
            padding: 4rem 0;
            width: 100%;
        }

        .offers-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 10;
            width: 100%;
        }

        .offers-title {
            text-align: center;
            margin-bottom: 3rem;
            width: 100%;
        }

        .offers-title h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .offers-title h2 span {
            color: var(--color-vivid-coral);
        }

        .offers-title p {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }

        .offer-card {
            background-color: var(--color-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            max-width: 1000px;
            width: 100%;
            display: flex;
            height: 400px;
        }

        .offer-img-container {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .offer-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .offer-img-container:hover .offer-img {
            transform: scale(1.05);
        }

        .offer-content {
            flex: 1;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .offer-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .offer-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .offer-price {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .offer-price .price {
            font-size: 2rem;
        }

        .offer-price .old-price {
            font-size: 1.5rem;
        }

        .offer-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background-color: var(--color-vivid-coral);
            color: var(--color-white);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            align-self: flex-start;
        }

        .offer-btn:hover {
            transform: translateY(-5px);
            background-color: #ff6b5b;
        }

        footer {
            background-color: #233341;
            color: var(--color-white);
            padding: 4rem 2rem 2rem;
            width: 100%;
            margin-top: auto;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }

        .footer-logo {
            width: 200px;
            max-width: 100%;
            margin-bottom: 1.5rem;
        }

        .footer-slogan {
            font-size: 1.3rem;
            text-align: center;
            color: #d8e2dc;
            margin-bottom: 2rem;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #3a506b;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: var(--color-white);
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--color-vivid-coral);
            transform: translateY(-5px);
        }

        .footer-divider {
            height: 2px;
            background-color: #3a506b;
            width: 70%;
            border-radius: 1px;
        }

        .footer-copyright {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            text-align: center;
            color: #8a8a8a;
            font-size: 1.1rem;
        }

        .footer-copyright a {
            color: var(--color-vivid-coral);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-copyright a:hover {
            color: var(--color-white);
        }

        @media (max-width: 1200px) {
            .hero-text h1 {
                font-size: 3.5rem;
            }

            .products-intro h2 {
                font-size: 2.5rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .offers-title h2 {
                font-size: 2.8rem;
            }

            .product-img-container {
                height: 220px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                padding: 2rem;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 3rem;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .hero-text p {
                margin: 0 auto 2rem;
            }

            .offer-card {
                flex-direction: column;
                height: auto;
            }

            .offer-img-container {
                height: 300px;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-icons a:not(.mobile-menu-btn) {
                display: none;
            }

            .nav-icons {
                gap: 1rem;
            }

            .mobile-profile-links {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1.5rem;
                border-top: 1px solid #eee;
                padding-top: 1.5rem;
            }

            .mobile-profile-links a {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .top-nav {
                padding: 0.8rem;
            }

            .nav-container {
                flex-direction: row;
                align-items: center;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .section-title::after {
                width: 80px;
            }

            .products-intro h2 {
                font-size: 2.2rem;
            }

            .products-intro p {
                font-size: 1.1rem;
            }

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

            .feature-card {
                padding: 1.5rem;
            }

            .offers-title h2 {
                font-size: 2.4rem;
            }

            .offer-content {
                padding: 1.5rem;
            }

            .offer-content h3 {
                font-size: 1.8rem;
            }

            .circle-decoration {
                width: 300px;
                height: 300px;
            }

            .circle-1 {
                top: -150px;
                right: -150px;
            }

            .circle-2 {
                bottom: -100px;
                left: -100px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.3rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .hero-btn {
                font-size: 1rem;
                padding: 0.8rem 2rem;
            }

            .section-title {
                margin: 3rem 0 1.5rem;
                padding: 0 1rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .categories {
                grid-template-columns: 1fr;
                padding: 0 1rem 3rem;
            }

            .products-intro {
                padding: 3rem 1rem;
            }

            .products-intro h2 {
                font-size: 1.8rem;
            }

            .products-intro p {
                font-size: 1rem;
            }

            .feature-card {
                padding: 1.2rem;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .feature-card h3 {
                font-size: 1.2rem;
            }

            .swiper {
                height: 450px;
            }

            .offers-title h2 {
                font-size: 2rem;
            }

            .offers-title p {
                font-size: 1rem;
            }

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


    .hero-search {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        max-width: 500px;
        position: relative;
        width: 100%;
    }

    .hero-search input {
        flex: 1;
        padding: 1.1rem 1.5rem;
        border: 2px solid var(--color-muted-green);
        border-radius: 50px;
        font-size: 1.1rem;
        transition: var(--transition);
    }

    .hero-search input:focus {
        outline: none;
        border-color: var(--color-vivid-coral);
        box-shadow: 0 0 0 3px rgba(255, 126, 111, 0.3);
    }

    .hero-search .search-btn {
        background: var(--color-vivid-coral);
        color: var(--color-white);
        border: none;
        padding: 1.1rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        white-space: nowrap;
    }

    .hero-search .search-btn:hover {
        background: #ff6b5b;
    }

    @media (max-width: 600px) {
        .hero-search {
            flex-direction: column;
            align-items: stretch;
            gap: 0.8rem;
        }

        .hero-search input {
            font-size: 1rem;
            padding: 0.9rem 1.2rem;
        }

        .hero-search .search-btn {
            width: 100%;
            padding: 0.9rem;
            font-size: 1rem;
            text-align: center;
        }
    }
