* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(180deg, #f5f5f0 0%, #ffffff 100%);
            overflow-x: hidden;
        }

        /* Decorative dots */
        .dots-pattern {
            position: absolute;
            width: 100px;
            height: 100px;
            opacity: 0.15;
        }

        .dots-pattern.top-left {
            top: 80px;
            left: 5%;
        }

        .dots-pattern.bottom-right {
            bottom: 50px;
            right: 5%;
        }

        /* Header */
        .top-bar {
            background-color: #1a4d2e;
            color: white;
            padding: 10px 0;
            font-size: 13px;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info {
            display: flex;
            gap: 30px;
        }

        .promo {
            flex: 1;
            text-align: center;
        }

        .promo a {
            color: #ffd700;
            text-decoration: underline;
            margin-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 10px;
        }

        .social-links a {
            width: 20px;
            height: 20px;
            background-color: #ffd700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a4d2e;
            text-decoration: none;
            font-size: 11px;
        }

        /* Navigation */
        nav {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            color: #1a4d2e;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            background-color: #1a4d2e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #1a4d2e;
        }

        .nav-icons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .nav-icons button {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            color: #333;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f5f0 0%, #e8e8e0 100%);
            padding: 80px 0 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(30, 77, 43, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            animation: fadeInLeft 1s ease-out;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            padding: 12px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            font-weight: 500;
            color: #333;
        }

        .badge-icon {
            font-size: 24px;
        }

        .hero h1 {
            font-size: 64px;
            line-height: 1.2;
            color: #1a1a1a;
            margin-bottom: 30px;
        }

        .hero h1 .highlight {
            color: #1e4d2b;
        }

        .hero-description {
            font-size: 18px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #1e4d2b 0%, #2d5f3a 100%);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(30, 77, 43, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 77, 43, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #1e4d2b;
            padding: 18px 40px;
            border: 2px solid #1e4d2b;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: #1e4d2b;
            color: white;
        }

        /* Product Cards */
        .hero-products {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            animation: fadeInRight 1s ease-out;
        }

        .product-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .product-card.large {
            grid-row: span 2;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
            padding: 30px;
            color: white;
        }

        .product-card.large .product-overlay {
            padding: 40px;
        }

        .product-category {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .product-count {
            font-size: 16px;
            opacity: 0.9;
        }

        .price-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.95);
            color: #1e4d2b;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .action-btn {
            position: absolute;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #1e4d2b;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
        }

        .action-btn:hover {
            transform: scale(1.1) rotate(45deg);
        }

        .hotspot {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            border: 3px solid white;
            cursor: pointer;
            animation: pulse 2s infinite;
        }

        .hotspot-1 { top: 30%; left: 25%; }
        .hotspot-2 { top: 50%; left: 50%; }
        .hotspot-3 { top: 70%; left: 35%; }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
            50% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 48px;
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .hero-products {
                grid-template-columns: 1fr;
            }

            .product-card.large {
                grid-row: span 1;
            }
        }

        /* Features Section */
        .features {
            background-color: white;
            padding: 50px 0;
            margin-top: 60px;
        }

        .features-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .feature-icon {
            font-size: 40px;
            width: 70px;
            height: 70px;
            background-color: #f5f5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-text h3 {
            color: #1a4d2e;
            font-size: 18px;
            margin-bottom: 5px;
        }

        .feature-text p {
            color: #666;
            font-size: 14px;
        }

        /* Categories Section */
        .categories {
            padding: 80px 0;
            background-color: #fafafa;
        }

        .categories-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .category-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            position: relative;
        }

        .category-header {
            color: #ffd700;
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .item-count {
            font-weight: 700;
            font-size: 16px;
        }

        .category-title {
            color: #1a4d2e;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .category-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .category-list li {
            color: #666;
            font-size: 14px;
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .category-list li:last-child {
            border-bottom: none;
        }

        .category-image {
            text-align: center;
        }

        .category-image img {
            max-width: 100%;
            height: auto;
        }

        /* Products Section */
        .products-section {
            padding: 80px 0;
            background-color: white;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-subtitle {
            color: #999;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .section-title {
            color: #1a4d2e;
            font-size: 36px;
            font-weight: 700;
        }

        .product-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 28px;
            border: 2px solid #e0e0e0;
            background: white;
            border-radius: 25px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            color: #666;
        }

        .tab-btn.active {
            background-color: #1a4d2e;
            color: white;
            border-color: #1a4d2e;
        }

        .tab-btn:hover {
            border-color: #1a4d2e;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            border: 1px solid #f0f0f0;
            transition: all 0.3s;
        }

        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.discount {
            background-color: #1a4d2e;
            color: white;
        }

        .product-badge.new {
            background-color: #1a4d2e;
            color: white;
        }

        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 2;
        }

        .action-btn {
            width: 35px;
            height: 35px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .action-btn:hover {
            background-color: #1a4d2e;
            color: white;
            border-color: #1a4d2e;
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-timer {
            position: absolute;
            bottom: 270px;
            left: 15px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .timer-item {
            background-color: #ffd700;
            padding: 8px 12px;
            border-radius: 8px;
            text-align: center;
        }

        .timer-item strong {
            display: block;
            font-size: 16px;
            color: #1a4d2e;
        }

        .timer-item span {
            font-size: 10px;
            color: #666;
        }

        .product-info {
            padding: 20px;
        }

        .product-rating {
            font-size: 13px;
            margin-bottom: 8px;
            color: #ffd700;
        }

        .product-name {
            color: #1a4d2e;
            font-size: 16px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .current-price {
            color: #1a4d2e;
            font-size: 20px;
            font-weight: 700;
        }

        .old-price {
            color: #999;
            font-size: 14px;
            text-decoration: line-through;
        }

        /* Deals Section */
        .deals-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        .deals-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .deals-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .deals-subtitle {
            color: #6366f1;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .deals-title {
            color: #1a4d2e;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .deals-description {
            color: #64748b;
            font-size: 17px;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, #1a4d2e, #10b981);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #1a4d2e, #10b981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
            box-shadow: 0 10px 25px rgba(26, 77, 46, 0.3);
        }

        .service-card h3 {
            color: #1a4d2e;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }

        .service-features li {
            color: #475569;
            font-size: 14px;
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .service-features li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .service-btn {
            display: inline-block;
            padding: 14px 32px;
            background-color: #1a4d2e;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition:hover {
                background-color: #0f3820;
                transform: translateY(-3px);
                box-shadow: 0 10px 20px rgba(26,77,46,0.3);
            }
        }

        .shop-link {
            color: #1a4d2e;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 10px;
        }

        .shop-link:hover {
            text-decoration: underline;
        }

        .promo-banners {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .promo-card {
            border-radius: 15px;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            overflow: hidden;
            position: relative;
        }

        .promo-gray {
            background-color: #f0f0f0;
        }

        .promo-yellow {
            background-color: #ffd700;
        }

        .promo-content {
            z-index: 2;
        }

        .promo-discount {
            color: #666;
            font-size: 13px;
            margin-bottom: 10px;
        }

        .promo-content h3 {
            color: #1a4d2e;
            font-size: 28px;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .promo-content p {
            color: #666;
            font-size: 14px;
            margin-bottom: 25px;
            max-width: 300px;
        }

        .promo-card img {
            height: 250px;
            width: auto;
            object-fit: contain;
        }

        @media (max-width: 1200px) {
            .products-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .categories-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 900px) {
            .features-content {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .deals-grid {
                grid-template-columns: 1fr;
            }

            .promo-banners {
                grid-template-columns: 1fr;
            }

            .deals-header {
                flex-direction: column;
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
            }

            .categories-content {
                grid-template-columns: 1fr;
            }

            .deal-card {
                flex-direction: column;
            }

            .deal-card img {
                width: 100%;
            }
        }

        /* Newsletter Section */
        .newsletter-section {
            background: linear-gradient(180deg, #f5f5f0 0%, #ffffff 100%);
            padding: 80px 40px;
            position: relative;
            overflow: hidden;
        }

        .newsletter-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .newsletter-dots-top {
            position: absolute;
            width: 150px;
            height: 150px;
            top: 20px;
            right: 10%;
            opacity: 0.3;
        }

        .newsletter-dots-bottom {
            position: absolute;
            width: 150px;
            height: 150px;
            bottom: 20px;
            left: 10%;
            opacity: 0.3;
        }

        .newsletter-subtitle {
            color: #999;
            font-size: 14px;
            margin-bottom: 15px;
        }

        .newsletter-title {
            color: #1a4d2e;
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 20px;
        }

        .newsletter-description {
            color: #666;
            font-size: 15px;
            margin-bottom: 40px;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
            align-items: center;
        }

        .email-input-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            background: white;
            border-radius: 30px;
            padding: 5px 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .email-icon {
            font-size: 20px;
            margin-right: 15px;
            color: #1a4d2e;
        }

        .email-input {
            flex: 1;
            border: none;
            outline: none;
            padding: 15px 0;
            font-size: 15px;
            color: #333;
        }

        .email-input::placeholder {
            color: #999;
        }

        .btn-subscribe {
            background-color: #ffd700;
            color: #1a4d2e;
            padding: 16px 40px;
            font-weight: 600;
        }

        .btn-subscribe:hover {
            background-color: #ffed4e;
        }

        /* Footer */
        .footer {
            background-color: #1a4d2e;
            padding: 60px 40px 40px;
            color: white;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer-logo .logo-icon {
            width: 35px;
            height: 35px;
            background-color: #ffd700;
            color: #1a4d2e;
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 14px;
        }

        .social-links-footer {
            display: flex;
            gap: 12px;
        }

        .social-btn {
            width: 36px;
            height: 36px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s;
        }

        .social-btn:hover {
            background-color: #ffd700;
            color: #1a4d2e;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #ffd700;
        }

        .footer-links li:not(:has(a)) {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
        }

        /* Footer Bottom */
        .footer-bottom {
            background-color: #ffd700;
            padding: 20px 40px;
        }

        .footer-bottom-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #1a4d2e;
            font-size: 14px;
        }

        .footer-selectors {
            display: flex;
            gap: 15px;
        }

        .footer-select {
            padding: 8px 15px;
            border-radius: 5px;
            border: 1px solid rgba(26, 77, 46, 0.2);
            background: white;
            color: #1a4d2e;
            font-size: 14px;
            cursor: pointer;
            outline: none;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .newsletter-form {
                flex-direction: column;
            }

            .email-input-wrapper {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 15px;
            }

            .newsletter-title {
                font-size: 28px;
            }
        }

        /* === HERO PRODUCT CARDS FIX - MUST BE AT THE END === */
.hero .product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero .product-card img {
    height: 100% !important;
    border-radius: 20px;
}

.hero .product-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 70%) !important;
    padding: 40px !important;
}

.hero .product-card.large .product-overlay {
    padding: 50px !important;
}

.hero .product-category {
    font-size: 32px;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero .product-count {
    font-size: 18px;
    opacity: 0.95;
}
/* =============================================== */


/* ======== CART MODAL STYLES ======== */
        .cart-modal {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }
        .cart-modal.active { display: flex; }

        .cart-content {
            background: white;
            width: 90%;
            max-width: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            animation: slideUp 0.4s ease;
        }

        .cart-header {
            background: #1a4d2e;
            color: white;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .cart-header h2 { font-size: 22px; font-weight: 600; }
        .close-cart {
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }

        .cart-body {
            max-height: 60vh;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }
        .cart-item img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 10px;
        }
        .cart-item-info { flex: 1; }
        .cart-item-info h4 {
            font-size: 15px;
            color: #1a4d2e;
            margin-bottom: 5px;
        }
        .cart-item-price { font-weight: 700; color: #1a4d2e; }
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .qty-btn {
            width: 28px;
            height: 28px;
            border: 1px solid #ddd;
            background: #f9f9f9;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
        }
        .remove-item {
            color: #e74c3c;
            cursor: pointer;
            font-size: 18px;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #888;
        }
        .empty-cart i { font-size: 60px; margin-bottom: 20px; color: #ddd; }

        .cart-footer {
            padding: 20px 30px;
            background: #f8f8f8;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
        }
        .cart-total { color: #1a4d2e; }

        .cart-buttons {
            display: flex;
            gap: 12px;
            padding: 20px 30px;
            background: #fff;
            border-top: 1px solid #eee;
        }
        .cart-buttons button {
            flex: 1;
            padding: 14px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .btn-continue {
            background: #eee;
            color: #333;
        }
        .btn-checkout {
            background: #1a4d2e;
            color: white;
        }
        .btn-checkout:hover { background: #0f3820; transform: translateY(-2px); }

        @keyframes fadeIn { from {opacity:0} to {opacity:1} }
        @keyframes slideUp { from {transform:translateY(50px)} to {transform:translateY(0)} }

        /* Cart count badge on nav */
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #ffd700;
            color: #1a4d2e;
            font-size: 11px;
            font-weight: bold;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }



        /* ====== AUTH MODALS STYLES ====== */
.auth-modals { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }
.auth-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.auth-modal.active { opacity: 1; visibility: visible; pointer-events: all; }

.auth-content {
  background: white;
  width: 90%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: slideUp 0.4s ease;
}

.auth-header {
  background: #1a4d2e;
  color: white;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.auth-header h2 { margin: 0; font-size: 24px; }

.close-auth {
  background: none; border: none; color: white; font-size: 32px; cursor: pointer; opacity: 0.8;
}
.close-auth:hover { opacity: 1; }

.auth-body { padding: 40px 30px; }

.input-group {
  position: relative;
  margin-bottom: 20px;
}
.input-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a4d2e;
  font-size: 18px;
  z-index: 2;
}
.input-group input {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s;
}
.input-group input:focus { border-color: #1a4d2e; }

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14px;
}
.forgot-pwd { color: #1a4d2e; text-decoration: none; }
.forgot-pwd:hover { text-decoration: underline; }

.btn-auth-primary {
  width: 100%;
  background: linear-gradient(135deg, #1e4d2b 0%, #2d5f3a 100%);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.btn-auth-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,77,43,0.4);
}

.auth-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
  color: #999;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
}
.auth-divider span {
  background: white;
  padding: 0 15px;
}

.btn-google {
  width: 100%;
  background: #fff;
  border: 2px solid #ddd;
  padding: 16px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.btn-google:hover { border-color: #1a4d2e; }

.auth-switch { text-align: center; margin-top: 20px; font-size: 15px; }
.auth-switch a { color: #1a4d2e; font-weight: 600; }

/* User Dropdown in Nav */
.user-menu { position: relative; }
.nav-user-btn {
  background: none; border: none; font-size: 18px; color: #333; cursor: pointer; position: relative;
}
.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
}
.user-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a,
.user-dropdown .user-greeting {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}
.user-dropdown a:hover { background: #f5f5f0; color: #1a4d2e; }
.user-greeting { font-weight: 600; color: #1a4d2e; padding-bottom: 8px; border-bottom: 1px solid #eee; margin-bottom: 8px; }





.alert {
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.alert.success { 
    background: #d4edda; 
    color: #155724; 
    border: 1px solid #c3e6cb; 
}
.alert.error { 
    background: #f8d7da; 
    color: #721c24; 
    border: 1px solid #f5c6cb; 
}