:root {
            --primary-color: #1a1a1a;
            --accent-color: #fbbf24;
            --accent-hover: #f59e0b;
            --success-color: #16a34a;
            --danger-color: #dc2626;
            --border-color: #e5e7eb;
            --text-secondary: #6b7280;
            --text-light: #9ca3af;
            --bg-light: #f9fafb;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --transition-fast: 0.2s ease;
            --transition-base: 0.3s ease;
            --transition-slow: 0.5s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--primary-color);
            line-height: 1.6;
            background: #ffffff;
            overflow-x: hidden;
            padding-top: 38px; /* Pushes content below fixed news bar */
        }

        /* --- News Bar Styles (Moved from inline) --- */
        @keyframes moveNews {
          0% { transform: translateX(100%); }
          100% { transform: translateX(-100%); }
        }

        .news-bar {
            width: 100%;
            background: #e58d23;
            color: #111;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999;
            height: 38px;
            display: flex;
            align-items: center;
        }

        .news-marquee {
            display: inline-block;
            min-width: 100%;
        }

        .news-marquee span {
            animation: moveNews 20s linear infinite;
            display: inline-block;
        }
        /* --- End News Bar Styles --- */
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Loading Animation */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s, visibility 0.5s;
        }
        
        .page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid var(--border-color);
            border-top-color: var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Navbar Enhanced */
        .navbar {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-sm);
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1rem;
            color: var(--primary-color) !important;
            letter-spacing: 1.5px;
            display: flex;
            align-items: center;
            transition: transform var(--transition-base);
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .star-rating {
            color: var(--accent-color);
            font-size: 0.65rem;
            margin-left: 6px;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        .nav-icons {
            display: flex;
            gap: 12px;
            align-items: center;
        }
        
        .nav-icon-btn {
            position: relative;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all var(--transition-base);
            padding: 6px;
            border-radius: 50%;
        }
        
        .nav-icon-btn:hover {
            color: var(--accent-color);
            background: var(--bg-light);
            transform: translateY(-2px);
        }
        
        .cart-badge {
            position: absolute;
            top: -2px;
            right: -2px;
            background: var(--danger-color);
            color: white;
            font-size: 0.6rem;
            padding: 2px 5px;
            border-radius: 10px;
            font-weight: 700;
            animation: bounce 0.5s ease;
            min-width: 18px;
            text-align: center;
        }
        
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 20px 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            from { transform: translateX(0); }
            to { transform: translateX(100px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            padding: 0 15px;
        }
        
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.3;
        }
        
        .hero-subtitle {
            font-size: 0.85rem;
            opacity: 0.95;
            line-height: 1.4;
        }
        
        /* Filter Bar */
        .filter-bar {
            background: var(--bg-light);
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .filter-controls {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-direction: column;
            gap: 12px;
        }
        
        .filter-group {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }
        
        .filter-btn {
            padding: 7px 15px;
            border: 2px solid var(--border-color);
            background: white;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .sort-select {
            padding: 7px 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            transition: all var(--transition-base);
            width: 100%;
            max-width: 250px;
        }
        
        .sort-select:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        /* Product Grid Section */
        .products-section {
            padding: 40px 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 30px;
            padding: 0 15px;
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .section-subtitle {
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .product-card {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all var(--transition-base);
            background: white;
            height: 100%;
            position: relative;
            cursor: pointer;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
            opacity: 0;
            transition: opacity var(--transition-base);
            z-index: 1;
            pointer-events: none;
        }
        
        .product-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--accent-color);
        }
        
        .product-card:hover::before {
            opacity: 1;
        }
        
        .product-image-container {
            position: relative;
            overflow: hidden;
            background: var(--bg-light);
            aspect-ratio: 3/4;
        }
        
        .product-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .product-card:hover .product-image {
            transform: scale(1.08);
        }
        
        .sale-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: var(--danger-color);
            color: white;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 10;
            animation: slideInLeft 0.5s ease;
            box-shadow: var(--shadow-md);
        }
        
        @keyframes slideInLeft {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .product-actions {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transform: translateX(15px);
            transition: all var(--transition-base);
            z-index: 10;
        }
        
        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(0);
        }
        
        .action-btn {
            width: 35px;
            height: 35px;
            background: white;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-md);
            font-size: 1rem;
            color: var(--primary-color);
        }
        
        .action-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }
        
        .action-btn.active {
            background: var(--danger-color);
            color: white;
        }
        
        .quick-view-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 26, 0.9);
            color: white;
            padding: 12px;
            transform: translateY(100%);
            transition: transform var(--transition-base);
            z-index: 10;
        }
        
        .product-card:hover .quick-view-overlay {
            transform: translateY(0);
        }
        
        .quick-view-btn {
            width: 100%;
            padding: 8px;
            background: white;
            color: var(--primary-color);
            border: none;
            border-radius: 6px;
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all var(--transition-base);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .quick-view-btn:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        .product-content {
            padding: 15px;
            position: relative;
            z-index: 2;
        }
        
        .product-category {
            font-size: 0.7rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 6px;
            font-weight: 600;
        }
        
        .product-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 10px;
            line-height: 1.4;
            min-height: 40px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color var(--transition-base);
        }
        
        .product-card:hover .product-title {
            color: var(--accent-hover);
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 10px;
        }
        
        .rating-stars {
            color: var(--accent-color);
            font-size: 0.75rem;
        }
        
        .rating-count {
            color: var(--text-secondary);
            font-size: 0.75rem;
        }
        
        .product-pricing {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        
        .price-original {
            text-decoration: line-through;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        
        .price-sale {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 800;
        }
        
        .discount-badge {
            background: var(--success-color);
            color: white;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 0.7rem;
            font-weight: 700;
        }
        
        .add-to-cart-btn {
            width: 100%;
            padding: 10px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.8rem;
            cursor: pointer;
            transition: all var(--transition-base);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        
        .add-to-cart-btn:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        .add-to-cart-btn i {
            font-size: 1rem;
        }
        
        /* Brand Section Enhanced */
        .brand-section {
            padding: 60px 0;
            text-align: center;
            background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
            position: relative;
            overflow: hidden;
        }
        
        .brand-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .brand-content {
            position: relative;
            z-index: 1;
            padding: 0 15px;
        }
        
        .brand-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 3px;
            margin-bottom: 15px;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .brand-stars {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 20px;
            animation: fadeInUp 1s ease 0.2s backwards;
        }
        
        .brand-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
            letter-spacing: 1.5px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }
        
        .brand-tagline {
            color: var(--text-secondary);
            font-size: 1rem;
            margin-bottom: 25px;
            animation: fadeInUp 1s ease 0.6s backwards;
        }
        
        .social-links {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s backwards;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all var(--transition-base);
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-4px) scale(1.1);
            box-shadow: var(--shadow-lg);
        }
        
        /* Newsletter Section */
        .newsletter-section {
            background: var(--primary-color);
            color: white;
            padding: 40px 0;
        }
        
        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
            padding: 0 15px;
        }
        
        .newsletter-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }
        
        .newsletter-text {
            opacity: 0.95;
            margin-bottom: 25px;
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            width: 100%;
        }
        
        .newsletter-btn {
            padding: 12px 25px;
            background: var(--accent-color);
            color: var(--primary-color);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all var(--transition-base);
            white-space: nowrap;
            width: 100%;
        }
        
        .newsletter-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        
        /* Footer Enhanced */
        .footer {
            background: white;
            border-top: 1px solid var(--border-color);
            padding: 25px 0;
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            gap: 15px;
        }
        
        .footer-text {
            color: var(--text-secondary);
            font-size: 0.85rem;
            margin: 0;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }
        
        .footer-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color var(--transition-base);
            position: relative;
        }
        
        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width var(--transition-base);
        }
        
        .footer-link:hover {
            color: var(--primary-color);
        }
        
        .footer-link:hover::after {
            width: 100%;
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            transition: all var(--transition-base);
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }
        
        .scroll-top.visible {
            display: flex;
        }
        
        .scroll-top:hover {
            background: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-4px);
        }
        
        /* Toast Notification */
        .toast-notification {
            position: fixed;
            top: 80px;
            right: 15px;
            left: 15px;
            max-width: 400px;
            margin: 0 auto;
            background: white;
            border-left: 4px solid var(--success-color);
            padding: 15px;
            border-radius: 8px;
            box-shadow: var(--shadow-lg);
            display: none;
            align-items: center;
            gap: 12px;
            z-index: 9999;
            animation: slideInDown 0.5s ease;
        }
        
        @keyframes slideInDown {
            from {
                transform: translateY(-100px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .toast-notification.show {
            display: flex;
        }
        
        .toast-icon {
            width: 35px;
            height: 35px;
            background: var(--success-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        
        .toast-content {
            flex: 1;
        }
        
        .toast-title {
            font-weight: 700;
            margin-bottom: 3px;
            font-size: 0.9rem;
        }
        
        .toast-message {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.3;
        }
        
        .toast-close {
            background: none;
            border: none;
            font-size: 1.3rem;
            color: var(--text-secondary);
            cursor: pointer;
            padding: 0;
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }
        
        /* Desktop Specific Styles */
        @media (min-width: 768px) {
            .navbar {
                padding: 20px 0;
            }
            
            .navbar-brand {
                font-size: 1.2rem;
                letter-spacing: 2px;
            }
            
            .star-rating {
                font-size: 0.7rem;
                margin-left: 8px;
            }
            
            .nav-icons {
                gap: 20px;
            }
            
            .nav-icon-btn {
                font-size: 1.2rem;
                padding: 8px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-banner {
                padding: 30px 0;
            }
            
            .filter-bar {
                padding: 20px 0;
            }
            
            .filter-controls {
                flex-direction: row;
            }
            
            .filter-group {
                justify-content: flex-start;
                width: auto;
            }
            
            .filter-btn {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
            
            .sort-select {
                width: auto;
            }
            
            .products-section {
                padding: 60px 0;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.1rem;
            }
            
            .product-card {
                border-radius: 16px;
            }
            
            .sale-badge {
                top: 15px;
                left: 15px;
                padding: 8px 16px;
                font-size: 0.75rem;
            }
            
            .product-actions {
                top: 15px;
                right: 15px;
                gap: 10px;
            }
            
            .action-btn {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .quick-view-overlay {
                padding: 15px;
            }
            
            .quick-view-btn {
                padding: 10px;
                font-size: 0.9rem;
            }
            
            .product-content {
                padding: 25px;
            }
            
            .product-category {
                font-size: 0.8rem;
                margin-bottom: 8px;
            }
            
            .product-title {
                font-size: 1rem;
                margin-bottom: 12px;
                min-height: 45px;
            }
            
            .product-rating {
                gap: 8px;
                margin-bottom: 12px;
            }
            
            .rating-stars {
                font-size: 0.85rem;
            }
            
            .rating-count {
                font-size: 0.85rem;
            }
            
            .product-pricing {
                gap: 12px;
                margin-bottom: 15px;
            }
            
            .price-original {
                font-size: 0.95rem;
            }
            
            .price-sale {
                font-size: 1.3rem;
            }
            
            .discount-badge {
                padding: 4px 10px;
                font-size: 0.75rem;
            }
            
            .add-to-cart-btn {
                padding: 12px;
                font-size: 0.9rem;
                gap: 8px;
            }
            
            .brand-section {
                padding: 100px 0;
            }
            
            .brand-logo-text {
                font-size: 4rem;
                letter-spacing: 4px;
                margin-bottom: 20px;
            }
            
            .brand-stars {
                font-size: 3rem;
                margin-bottom: 30px;
            }
            
            .brand-name {
                font-size: 1.8rem;
                margin-bottom: 15px;
                letter-spacing: 2px;
            }
            
            .brand-tagline {
                font-size: 1.2rem;
                margin-bottom: 30px;
            }
            
            .social-links {
                gap: 15px;
            }
            
            .social-link {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
            
            .newsletter-section {
                padding: 60px 0;
            }
            
            .newsletter-title {
                font-size: 2rem;
                margin-bottom: 15px;
            }
            
            .newsletter-text {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            
            .newsletter-form {
                flex-direction: row;
            }
            
            .newsletter-input {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .newsletter-btn {
                padding: 15px 30px;
                width: auto;
            }
            
            .footer {
                padding: 30px 0;
            }
            
            .footer-content {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
            
            .footer-text {
                font-size: 0.9rem;
            }
            
            .footer-link {
                font-size: 0.9rem;
            }
            
            .footer-links {
                gap: 25px;
            }
            
            .scroll-top {
                bottom: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            
            .toast-notification {
                right: 30px;
                left: auto;
                margin: 0;
                padding: 20px;
                gap: 15px;
                min-width: 350px;
            }
            
            .toast-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .toast-title {
                font-size: 1rem;
                margin-bottom: 5px;
            }
            
            .toast-message {
                font-size: 0.9rem;
            }
        }
        
        /* Small Mobile Adjustments */
        @media (max-width: 360px) {
            .navbar-brand {
                font-size: 0.9rem;
                letter-spacing: 1px;
            }
            
            .star-rating {
                font-size: 0.6rem;
                margin-left: 4px;
            }
            
            .nav-icons {
                gap: 10px;
            }
            
            .hero-title {
                font-size: 1.1rem;
            }
            
            .hero-subtitle {
                font-size: 0.75rem;
            }
            
            .filter-btn {
                padding: 6px 12px;
                font-size: 0.75rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .brand-logo-text {
                font-size: 2rem;
            }
            
            .brand-stars {
                font-size: 1.5rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .navbar, .filter-bar, .newsletter-section, .scroll-top, .product-actions, .toast-notification, .news-bar {
                display: none !important;
            }

            body {
                padding-top: 0 !important;
            }
        }