        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        :root {
            --primary: #1E3A8A; /* Deep blue */
            --secondary: #FDE047; /* Bright yellow */
            --accent: #F59E0B; /* Golden yellow */
            --light-bg: #FEFCE8; /* Light yellow background */
            --text: #1E293B; /* Dark blue-gray */
            --text-light: #64748B; /* Light blue-gray */
        }
        
        body {
            background-color: var(--light-bg);
            color: var(--text);
            line-height: 1.4;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Mini Header */
        .mini-header {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 8px 0;
            font-size: 11px;
            position: relative;
            overflow: hidden;
            height: 30px;
        }
        
        .mini-header-slider {
            display: flex;
            width: 400%;
            height: 100%;
            animation: slide 16s infinite;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            25% { transform: translateX(0); }
            33% { transform: translateX(-25%); }
            58% { transform: translateX(-25%); }
            66% { transform: translateX(-50%); }
            91% { transform: translateX(-50%); }
            100% { transform: translateX(-75%); }
        }
        
        .mini-header-item {
            width: 25%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .mini-header-item i {
            color: var(--secondary);
            font-size: 12px;
        }
        
        /* Header Styles */
        .header-top {
            background-color: var(--primary);
            color: var(--secondary);
            text-align: center;
            padding: 8px 0;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
        }
        
        .header-main {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(30, 58, 138, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .header-main.scrolled {
            background-color: rgba(254, 252, 232, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 10px 0;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--accent);
        }
        
        .mobile-toggle {
            display: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--primary);
        }
        
        .nav-links {
            display: flex;
            gap: 20px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .user-actions {
            display: flex;
            gap: 15px;
            margin-right: 20px;
        }
        
        .user-actions a {
            text-decoration: none;
            color: var(--text);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
        }
        
        .user-actions a:hover {
            color: var(--accent);
        }
        
        .mobile-cart {
            display: none;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--light-bg);
            z-index: 1000;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1);
            transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            padding: 80px 20px 20px;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .mobile-nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(30, 58, 138, 0.1);
            transition: all 0.3s ease;
            transform: translateX(-20px);
            opacity: 0;
        }
        
        .mobile-nav.active .mobile-nav-links a {
            transform: translateX(0);
            opacity: 1;
            transition-delay: calc(0.1s * var(--i));
        }
        
        .mobile-nav-links a:hover {
            color: var(--accent);
            padding-left: 10px;
        }
        
        .close-nav {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 20px;
            cursor: pointer;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        
        .close-nav:hover {
            transform: rotate(90deg);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* Page Content */
        .page-content {
            min-height: 70vh;
            padding: 60px 0;
        }
        
        .page-hero {
            background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.7)), url('https://images.unsplash.com/photo-1615485500606-f3313c6bfd5a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--secondary);
            text-align: center;
            padding: 80px 0;
            margin-bottom: 40px;
        }
        
        .page-hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 42px;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .page-hero p {
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Page */
        .about-section {
            margin-bottom: 60px;
        }
        
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .about-content h2 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .about-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .about-content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .value-card {
            text-align: center;
            padding: 30px 20px;
            background-color: var(--secondary);
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .value-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        /* Contact Page */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .contact-info {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .contact-info h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-info h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 16px;
        }
        
        .contact-text h4 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .contact-form {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary);
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: transparent;
            color: var(--primary);
        }
        
        /* Profile Page */
        .profile-section {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
        }
        
        .profile-sidebar {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .profile-avatar {
            text-align: center;
            margin-bottom: 20px;
        }
        
        .avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background-color: var(--primary);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 15px;
        }
        
        .profile-avatar h3 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .profile-avatar p {
            color: var(--text-light);
            font-size: 14px;
        }
        
        .profile-menu {
            list-style: none;
        }
        
        .profile-menu li {
            margin-bottom: 10px;
        }
        
        .profile-menu a {
            display: block;
            padding: 12px 15px;
            color: var(--text);
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .profile-menu a:hover, .profile-menu a.active {
            background-color: var(--primary);
            color: var(--secondary);
        }
        
        .profile-content {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .profile-content h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .profile-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        /* Cart Page */
        .cart-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }
        
        .cart-items {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .cart-item {
            display: flex;
            padding: 20px 0;
            border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        }
        
        .cart-item:last-child {
            border-bottom: none;
        }
        
        .cart-item-image {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .cart-item-details {
            flex: 1;
        }
        
        .cart-item-details h3 {
            font-size: 16px;
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .cart-item-details p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .cart-item-price {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }
        
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .quantity-btn {
            width: 30px;
            height: 30px;
            background-color: var(--light-bg);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .quantity-input {
            width: 40px;
            height: 30px;
            border: none;
            text-align: center;
            font-size: 14px;
        }
        
        .remove-btn {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .remove-btn:hover {
            color: #ef4444;
        }
        
        .cart-summary {
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: fit-content;
        }
        
        .cart-summary h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
            position: relative;
            padding-bottom: 10px;
        }
        
        .cart-summary h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(30, 58, 138, 0.1);
        }
        
        .summary-total {
            font-weight: 700;
            font-size: 18px;
            color: var(--primary);
        }
        
        .checkout-btn {
            width: 100%;
            margin-top: 20px;
        }
        
        /* Newsletter */
        .newsletter {
            padding: 60px 0;
            background-color: var(--primary);
            color: var(--secondary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FDE047" opacity="0.05"><path d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z M12,11.5c-1.38,0-2.5-1.12-2.5-2.5 s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/></svg>');
            animation: floatSeeds 20s infinite linear;
        }
        
        @keyframes floatSeeds {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }
        
        .newsletter h2 {
            font-size: 24px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }
        
        .newsletter p {
            margin-bottom: 25px;
            color: #E2E8F0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 12px;
            background: rgba(255,255,255,0.9);
        }
        
        .newsletter-form button {
            background-color: var(--secondary);
            color: var(--primary);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .newsletter-form button:hover {
            background-color: #FEF08A;
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary);
            color: var(--secondary);
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FDE047" opacity="0.03"><path d="M12,2C8.13,2,5,5.13,5,9c0,5.25,7,13,7,13s7-7.75,7-13C19,5.13,15.87,2,12,2z M12,11.5c-1.38,0-2.5-1.12-2.5-2.5 s1.12-2.5,2.5-2.5s2.5,1.12,2.5,2.5S13.38,11.5,12,11.5z"/></svg>');
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .footer-column h3 {
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .footer-column:hover h3:after {
            width: 50px;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
            transform: translateX(0);
            transition: all 0.3s ease;
        }
        
        .footer-links li:hover {
            transform: translateX(5px);
        }
        
        .footer-links a {
            color: #CBD5E1;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .footer-links a:hover {
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background-color: rgba(253, 224, 71, 0.1);
            color: var(--secondary);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 13px;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(253, 224, 71, 0.2);
            color: #94A3B8;
            font-size: 12px;
            position: relative;
            z-index: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-grid,
            .contact-grid,
            .profile-section,
            .cart-section,
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
                margin-left: 10px;
            }
            
            .mobile-cart {
                display: block;
            }
            
            .nav-links,
            .user-actions .cart {
                display: none;
            }
            
            
            
            .header-main {
                justify-content: space-between;
            }
            
            .page-hero h1 {
                font-size: 32px;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input,
            .newsletter-form button {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 8px;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero h1 {
                font-size: 28px;
            }
            
            .about-content h2,
            .contact-info h2,
            .profile-content h2,
            .cart-summary h2 {
                font-size: 22px;
            }
        }
