 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', 'Segoe UI', serif;
        }

        body {
            background: #fefbf6;
            color: #4a3c31;
            line-height: 1.8;
        }
           /* Modern Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 32px;
            color: #d4af37;
            animation: sparkle 3s infinite;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 300;
            color: #3c2f2f;
            letter-spacing: 2px;
        }

        .logo-text span {
            color: #d4af37;
            font-weight: 400;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            color: #5a4d42;
            text-decoration: none;
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
            position: relative;
            padding: 8px 0;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, #d4af37, #b8860b);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #d4af37;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        /* Navbar */
        .navbar {
            background: white;
            padding: 20px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-icon {
            font-size: 32px;
            color: #d4af37;
        }

        .logo-text {
            font-size: 28px;
            font-weight: 300;
            color: #3c2f2f;
            letter-spacing: 2px;
        }

        .logo-text span {
            color: #d4af37;
            font-weight: 400;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-icon {
            position: relative;
            color: #5a4d42;
            font-size: 20px;
            text-decoration: none;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #d4af37;
            color: white;
            font-size: 12px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 80px 20px 60px;
        }

        .page-title {
            font-size: 48px;
            font-weight: 300;
            color: #3c2f2f;
            margin-bottom: 15px;
        }

        .page-subtitle {
            color: #8a7b6d;
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Main Content */
        .cart-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px 80px;
        }

        /* Cart Content */
        .cart-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .cart-items {
            flex: 2;
            min-width: 300px;
        }

        .cart-summary {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(175, 147, 118, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.1);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        /* Cart Items */
        .cart-item {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 25px;
            box-shadow: 0 5px 15px rgba(175, 147, 118, 0.05);
            border: 1px solid #eee5d9;
        }

        .item-image {
            width: 120px;
            height: 120px;
            object-fit: contain;
            background: #f9f5f0;
            border-radius: 10px;
            padding: 15px;
            border: 1px solid #eee5d9;
            flex-shrink: 0;
        }

        .item-details {
            flex: 1;
        }

        .item-title {
            color: #3c2f2f;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .item-price {
            color: #d4af37;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .item-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .qty-btn {
            width: 35px;
            height: 35px;
            border: 2px solid #e8d5c5;
            background: white;
            color: #5a4d42;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .qty-btn:hover {
            border-color: #d4af37;
            color: #d4af37;
        }

        .quantity-input {
            width: 60px;
            padding: 8px;
            text-align: center;
            border: 2px solid #e8d5c5;
            border-radius: 8px;
            font-size: 16px;
            background: white;
        }

        .remove-btn {
            background: transparent;
            border: 2px solid #f0c6c6;
            color: #d9534f;
            padding: 8px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .remove-btn:hover {
            background: #f0c6c6;
        }

        /* Cart Summary */
        .summary-title {
            color: #3c2f2f;
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0e6db;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0e6db;
        }

        .summary-row.total {
            font-size: 20px;
            font-weight: 600;
            color: #d4af37;
            border-bottom: none;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 2px solid #f0e6db;
        }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: #25D366;
            color: white;
            border: none;
            padding: 18px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 30px;
            text-decoration: none;
            text-align: center;
        }

        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
        }

        .continue-btn {
            display: block;
            width: 100%;
            background: transparent;
            color: #5a4d42;
            border: 2px solid #e8d5c5;
            padding: 15px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .continue-btn:hover {
            background: #f9f5f0;
            border-color: #d4b8a1;
        }

        /* Empty Cart */
        .empty-cart {
            text-align: center;
            padding: 80px 20px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(175, 147, 118, 0.1);
            margin: 50px 0;
        }

        .empty-icon {
            font-size: 80px;
            color: #e8d5c5;
            margin-bottom: 30px;
        }

        .empty-title {
            color: #3c2f2f;
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 15px;
        }

        .empty-text {
            color: #8a7b6d;
            font-size: 18px;
            margin-bottom: 30px;
        }

        .shop-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 500;
        }

        .shop-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 30px;
            right: 30px;
            background: white;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(175, 147, 118, 0.2);
            border-left: 4px solid #28a745;
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 1000;
            animation: slideIn 0.3s ease;
        }

        .notification i {
            color: #28a745;
            font-size: 24px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 20px;
            }
            
            .cart-container {
                padding: 0 20px 60px;
            }
            
            .cart-content {
                flex-direction: column;
            }
            
            .cart-summary {
                position: static;
            }
            
            .cart-item {
                flex-direction: column;
                text-align: center;
            }
            
            .item-actions {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .page-title {
                font-size: 36px;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }