        * {
            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;
        }

        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #1a4d2e;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        /* Page Header */
        .page-header {
            background: url('data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 1440 320%22><path fill=%22%231a4d2e%22 fill-opacity=%221%22 d=%22M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z%22></path></svg>') no-repeat center bottom / cover;
            background-color: #1a4d2e;
            color: white;
            padding: 100px 0 80px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 48px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .breadcrumb {
            font-size: 15px;
            color: rgba(255,255,255,0.8);
        }

        .breadcrumb a {
            color: #ffd700;
            text-decoration: none;
        }

        /* Shop Container */
        .shop-container {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 280px 1fr;
            gap: 40px;
        }

        /* Sidebar Filters */
        .sidebar {
            background: white;
            padding: 30px;
            border-radius: 15px;
            height: fit-content;
            position: sticky;
            top: 100px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .filter-section {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #f0f0f0;
        }

        .filter-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .filter-title {
            color: #1a4d2e;
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            cursor: pointer;
        }

        .filter-option input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #1a4d2e;
            cursor: pointer;
        }

        .filter-option label {
            font-size: 14px;
            color: #555;
            cursor: pointer;
            flex: 1;
        }

        .filter-count {
            font-size: 13px;
            color: #999;
        }

        .price-range {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .price-input {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
        }

        .apply-filter-btn {
            width: 100%;
            padding: 14px;
            background-color: #1a4d2e;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            margin-top: 15px;
            transition: all 0.3s;
        }

        .apply-filter-btn:hover {
            background-color: #0f3820;
        }

        .clear-filters {
            text-align: center;
            margin-top: 20px;
            color: #1a4d2e;
            font-size: 14px;
            cursor: pointer;
            text-decoration: underline;
        }

        /* Main Content */
        .main-content {
            min-height: 600px;
        }

        .shop-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .results-info {
            font-size: 15px;
            color: #666;
        }

        .results-info strong {
            color: #1a4d2e;
        }

        .shop-controls {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .view-toggle {
            display: flex;
            gap: 5px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .view-btn {
            padding: 10px 14px;
            background: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s;
        }

        .view-btn.active, .view-btn:hover {
            background-color: #1a4d2e;
            color: white;
        }

        .sort-select {
            padding: 12px 18px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            cursor: pointer;
            background: white;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            border: 1px solid #f0f0f0;
            transition: all 0.4s ease;
        }

        .product-card:hover {
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transform: translateY(-10px);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            z-index: 2;
        }

        .product-badge.discount {
            background-color: #1a4d2e;
            color: white;
        }

        .product-badge.new {
            background-color: #ffd700;
            color: #1a4d2e;
        }

        .product-actions {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            z-index: 2;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .product-card:hover .product-actions {
            opacity: 1;
        }

        .action-btn {
            width: 38px;
            height: 38px;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .action-btn:hover {
            background-color: #1a4d2e;
            color: white;
            border-color: #1a4d2e;
            transform: scale(1.1);
        }

        .product-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            background: #f5f5f0;
        }

        .product-info {
            padding: 22px;
        }

        .product-category {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .product-rating {
            color: #ffd700;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .product-name {
            color: #1a4d2e;
            font-size: 17px;
            margin-bottom: 10px;
            font-weight: 600;
            line-height: 1.3;
        }

        .product-price {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .current-price {
            color: #1a4d2e;
            font-size: 22px;
            font-weight: 700;
        }

        .old-price {
            color: #999;
            font-size: 15px;
            text-decoration: line-through;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 14px;
            background-color: #1a4d2e;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .add-to-cart-btn:hover {
            background-color: #0f3820;
            transform: translateY(-2px);
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 20px rgba(0,0,0,0.1);
            z-index: 2000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.open { right: 0; }

        .cart-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: rgba(0,0,0,0.5);
            z-index: 1999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .cart-overlay.active {
            display: block;
            opacity: 1;
        }

        .cart-header {
            padding: 25px 30px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: #999;
        }

        .close-cart:hover { color: #ff4444; }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px 30px;
        }

        .cart-item {
            display: flex;
            gap: 15px;
            padding: 20px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            color: #1a4d2e;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .qty-btn {
            width: 28px;
            height: 28px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .qty-btn:hover {
            background-color: #1a4d2e;
            color: white;
            border-color: #1a4d2e;
        }

        .qty-input {
            width: 45px;
            text-align: center;
            border: 1px solid #e0e0e0;
            border-radius: 4px;
            padding: 5px;
            font-size: 14px;
        }

        .remove-item {
            background: none;
            border: none;
            color: #ff4444;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
        }

        .empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        .empty-cart-icon {
            font-size: 60px;
            margin-bottom: 20px;
        }

        .cart-footer {
            padding: 25px 30px;
            border-top: 1px solid #f0f0f0;
            background: #fafafa;
        }

        .cart-subtotal {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 20px;
            font-weight: 700;
            color: #1a4d2e;
        }

        .checkout-btn {
            width: 100%;
            padding: 16px;
            background-color: #ffd700;
            color: #1a4d2e;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .checkout-btn:hover {
            background-color: #ffed4e;
            transform: translateY(-2px);
        }

        /* Payment Modal */
        .payment-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.7);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .payment-modal.active {
            display: flex;
        }

        .payment-content {
            background: white;
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
        }

        .payment-header {
            padding: 30px;
            border-bottom: 1px solid #f0f0f0;
            text-align: center;
        }

        .payment-header h2 {
            color: #1a4d2e;
            font-size: 26px;
            margin-bottom: 10px;
        }

        .payment-logo {
            width: 120px;
            height: 60px;
            background-color: #ffd700;
            margin: 0 auto 20px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: #1a4d2e;
        }

        .payment-body {
            padding: 30px;
        }

        .order-summary {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .order-summary h3 {
            color: #1a4d2e;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }

        .summary-row.total {
            border-top: 2px solid #e0e0e0;
            padding-top: 15px;
            margin-top: 15px;
            font-size: 18px;
            font-weight: 700;
            color: #1a4d2e;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .form-input {
            width: 100%;
            padding: 14px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #1a4d2e;
        }

        .phone-input-wrapper {
            display: flex;
            gap: 10px;
        }

        .country-code {
            padding: 14px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: #f9f9f9;
            font-size: 15px;
            font-weight: 600;
        }

        .payment-info {
            background: #fff8e1;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 13px;
            color: #666;
        }

        .payment-info strong {
            color: #1a4d2e;
        }

        .payment-actions {
            display: flex;
            gap: 15px;
        }

        .btn-cancel {
            flex: 1;
            padding: 14px;
            background: transparent;
            color: #666;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-cancel:hover {
            border-color: #1a4d2e;
            color: #1a4d2e;
        }

        .btn-pay {
            flex: 2;
            padding: 14px;
            background-color: #ffd700;
            color: #1a4d2e;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-pay:hover {
            background-color: #ffed4e;
            transform: translateY(-2px);
        }

        .btn-pay:disabled {
            background-color: #e0e0e0;
            color: #999;
            cursor: not-allowed;
            transform: none;
        }

        /* Success Modal */
        .success-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.7);
            z-index: 3001;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .success-modal.active {
            display: flex;
        }

        .success-content {
            background: white;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            max-width: 450px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background-color: #4caf50;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: white;
        }

        .success-content h2 {
            color: #1a4d2e;
            font-size: 28px;
            margin-bottom: 15px;
        }

        .success-content p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .order-number {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 25px;
            font-weight: 600;
            color: #1a4d2e;
        }

        /*.btn-continue {
            width: 100%;
            padding: 14px;
            background-color: #1a4d2e;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-continue:hover {
            background-color: #0f3820;
        }*/

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 50px;
        }

        .page-btn {
            padding: 10px 16px;
            border: 1px solid #e0e0e0;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s;
        }

        .page-btn.active {
            background-color: #1a4d2e;
            color: white;
            border-color: #1a4d2e;
        }

        .page-btn:hover:not(.active) {
            border-color: #1a4d2e;
        }

        /* Footer */
        .footer {
            background-color: #1a4d2e;
            padding: 60px 40px 40px;
            color: white;
            margin-top: 80px;
        }

        .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-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;
        }

        @media (max-width: 1024px) {
            .shop-container { grid-template-columns: 1fr; }
            .sidebar { position: static; }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }



        /* ======== MODAL CART – SAME AS INDEX.php ======== */
       /* ======== 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; }
   