:root {
    --bg: #F5F7FA;
    --text: #1A1A2E;
    --text-muted: #4A4A5A;
    --primary: #6C63FF;
    --primary-light: #8B83FF;
    --primary-dark: #5A52E0;
    --accent: #FF6B35;
    --accent-light: #FF8A5C;
    --cyan: #00C9A7;
    --glass-bg: rgba(255,255,255,0.85);
    --glass-border: rgba(0,0,0,0.06);
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.10);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-bg: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

.glass { background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius); }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); background: rgba(255,255,255,0.75); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.header.scrolled { padding: 10px 0; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 28px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(135deg, var(--primary), var(--cyan)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo span { font-weight: 300; background: none; -webkit-text-fill-color: var(--text); color: var(--text); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: var(--transition); position: relative; }
.nav a:hover { color: var(--text); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn { position: relative; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; padding: 8px; transition: var(--transition); border-radius: 50%; }
.cart-btn:hover { background: var(--glass-bg); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0% { transform: scale(1); } 50% { transform: scale(1.4); } 100% { transform: scale(1); } }
.mobile-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

.btn { padding: 14px 32px; border: none; border-radius: 50px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; box-shadow: 0 4px 20px rgba(108,99,255,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108,99,255,0.4); }
.btn-secondary { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text); }
.btn-secondary:hover { background: rgba(0,0,0,0.03); transform: translateY(-3px); }

.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: clamp(32px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; color: var(--text); }
.section-header p { color: var(--text-muted); max-width: 540px; margin: 12px auto 0; }
.section-header .subtitle { display: inline-block; font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; }
.category-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: var(--transition); cursor: pointer; box-shadow: var(--shadow); }
.category-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.category-card .icon { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: white; }
.category-card .icon.kitchen { background: linear-gradient(135deg, #FF6B35, #FF8A5C); }
.category-card .icon.cleaning { background: linear-gradient(135deg, #00C9A7, #00E5B0); }
.category-card .icon.beauty { background: linear-gradient(135deg, #FF6EC7, #FF9A9E); }
.category-card .icon.power { background: linear-gradient(135deg, #FFB800, #FFD54F); }
.category-card .icon.audio { background: linear-gradient(135deg, #6C63FF, #8B83FF); }
.category-card .icon.drinkware { background: linear-gradient(135deg, #00B4D8, #48CAE4); }
.category-card h3 { font-size: 15px; font-weight: 600; color: var(--text); }
.category-card p { font-size: 13px; color: var(--text-muted); }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.product-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); position: relative; box-shadow: var(--shadow); }
.product-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: var(--shadow-hover); }
.product-card .badge { position: absolute; top: 12px; left: 12px; color: white; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; z-index: 2; text-transform: uppercase; letter-spacing: 0.5px; }
.product-card .badge.sale { background: var(--accent); }
.product-card .badge.new { background: var(--cyan); }
.product-image { width: 100%; height: 240px; background: #F0F2F5; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition); }
.product-image img:hover { transform: scale(1.05); }
.product-image .wishlist-btn { position: absolute; top: 12px; right: 12px; background: var(--glass-bg); border: none; color: var(--text); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: var(--transition); font-size: 18px; backdrop-filter: blur(10px); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; }
.product-image .wishlist-btn:hover { background: rgba(255,107,53,0.15); color: var(--accent); }
.product-image .wishlist-btn.active { color: var(--accent); background: rgba(255,107,53,0.15); }
.product-info { padding: 20px; background: var(--card-bg); }
.product-info .rating { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.product-info .rating .stars { color: #FFB800; letter-spacing: 1px; }
.product-info .rating .count { font-size: 13px; color: var(--text-muted); }
.product-info h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; color: var(--text); }
.product-info h3 a { color: var(--text); transition: var(--transition); }
.product-info h3 a:hover { color: var(--primary); }
.product-info .sku { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.product-info .price-row { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.product-info .price { font-size: 22px; font-weight: 700; color: var(--text); }
.product-info .price-old { font-size: 16px; color: var(--text-muted); text-decoration: line-through; }
.product-info .price-cad { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.product-info .stock { font-size: 13px; margin-bottom: 12px; font-weight: 500; color: var(--text); }
.product-info .stock.in { color: #22C55E; }
.product-info .stock.out { color: var(--accent); }
.product-info .add-to-cart { width: 100%; padding: 14px; border: none; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 16px rgba(108,99,255,0.25); letter-spacing: 0.3px; }
.product-info .add-to-cart:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 8px 32px rgba(108,99,255,0.35); background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.product-info .add-to-cart:active { transform: scale(0.97); }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 28px; transition: var(--transition); box-shadow: var(--shadow); }
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.testimonial-card .stars { color: #FFB800; font-size: 18px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 15px; font-style: italic; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .author .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--cyan)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: white; }
.testimonial-card .author .name { font-weight: 600; color: var(--text); }
.testimonial-card .author .location { font-size: 13px; color: var(--text-muted); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.feature-card { text-align: center; padding: 32px 20px; background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); transition: var(--transition); box-shadow: var(--shadow); }
.feature-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.feature-card .icon { font-size: 36px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--text-muted); }

.newsletter { background: linear-gradient(135deg, rgba(108,99,255,0.05), rgba(0,201,167,0.03)); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 60px 40px; text-align: center; }
.newsletter h2 { font-size: 32px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.newsletter p { color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 12px; }
.newsletter-form input { flex: 1; padding: 14px 20px; border-radius: 50px; border: 1px solid var(--glass-border); background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px; outline: none; transition: var(--transition); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }

.breadcrumb { padding: 100px 0 20px; font-size: 14px; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); transition: var(--transition); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 8px; }

.footer { padding: 60px 0 30px; border-top: 1px solid var(--glass-border); margin-top: 40px; background: var(--card-bg); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 24px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 300px; }
.footer h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { color: var(--text-muted); font-size: 14px; transition: var(--transition); }
.footer ul li a:hover { color: var(--text); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 14px; color: var(--text-muted); }
.footer-bottom .payment-icons { font-size: 24px; letter-spacing: 8px; }

.cart-sidebar { position: fixed; top: 0; right: -480px; width: 440px; height: 100%; background: var(--card-bg); border-left: 1px solid var(--glass-border); z-index: 2000; transition: right 0.4s cubic-bezier(0.4,0,0.2,1); padding: 24px; display: flex; flex-direction: column; box-shadow: -4px 0 40px rgba(0,0,0,0.08); }
.cart-sidebar.open { right: 0; }
.cart-sidebar .cart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.cart-sidebar .cart-header h2 { font-size: 22px; font-weight: 700; color: var(--text); }
.cart-sidebar .close-cart { background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer; }
.cart-sidebar .cart-items { flex: 1; overflow-y: auto; margin-bottom: 16px; }
.cart-sidebar .cart-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--glass-border); }
.cart-sidebar .cart-item .item-image { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: #F0F2F5; display: flex; align-items: center; justify-content: center; }
.cart-sidebar .cart-item .item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-sidebar .cart-item .item-details { flex: 1; }
.cart-sidebar .cart-item .item-details h4 { font-size: 14px; font-weight: 500; color: var(--text); }
.cart-sidebar .cart-item .item-details .item-price { font-size: 15px; font-weight: 700; color: var(--text); }
.cart-sidebar .cart-item .item-quantity { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.cart-sidebar .cart-item .item-quantity button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--glass-border); background: var(--bg); color: var(--text); cursor: pointer; font-size: 16px; transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.cart-sidebar .cart-item .item-quantity button:hover { background: var(--primary); color: white; }
.cart-sidebar .cart-item .item-quantity span { font-weight: 600; min-width: 20px; text-align: center; }
.cart-sidebar .cart-item .remove-item { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; transition: var(--transition); }
.cart-sidebar .cart-item .remove-item:hover { color: var(--accent); }
.cart-sidebar .cart-total { padding-top: 16px; border-top: 2px solid var(--glass-border); }
.cart-sidebar .cart-total .total-row { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; color: var(--text); }
.cart-sidebar .cart-total .checkout-btn { width: 100%; padding: 14px; margin-top: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border: none; border-radius: 12px; color: white; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition); text-align: center; display: block; }
.cart-sidebar .cart-total .checkout-btn:hover { transform: scale(1.02); box-shadow: 0 4px 20px rgba(108,99,255,0.3); }

.overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.overlay.active { opacity: 1; pointer-events: all; }

.seo-text { max-width: 900px; margin: 0 auto; }
.seo-text h2 { font-size: 24px; font-weight: 700; color: var(--text); margin: 32px 0 16px; }
.seo-text h3 { font-size: 20px; font-weight: 600; color: var(--text); margin: 24px 0 12px; }
.seo-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.seo-text ul { color: var(--text-muted); padding-left: 20px; margin-bottom: 16px; }
.seo-text ul li { list-style: disc; margin-bottom: 8px; }

.filter-section { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; margin-bottom: 32px; box-shadow: var(--shadow); }
.filter-section .filter-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.filter-section select, .filter-section input { padding: 10px 16px; border-radius: 10px; border: 1px solid var(--glass-border); background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; outline: none; transition: var(--transition); }
.filter-section select:focus, .filter-section input:focus { border-color: var(--primary); }
.filter-section select option { background: var(--bg); color: var(--text); }
.filter-section .filter-label { font-size: 14px; color: var(--text-muted); }

.checkout-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.checkout-form .full-width { grid-column: 1 / -1; }
.checkout-form label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.checkout-form input, .checkout-form select, .checkout-form textarea { width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--glass-border); background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px; outline: none; transition: var(--transition); }
.checkout-form input:focus, .checkout-form select:focus { border-color: var(--primary); }
.checkout-form input::placeholder, .checkout-form textarea::placeholder { color: var(--text-muted); }
.checkout-form select option { background: var(--bg); color: var(--text); }
.checkout-form .form-group { margin-bottom: 16px; }
.checkout-form .error { border-color: var(--accent) !important; }
.checkout-form .error-msg { color: var(--accent); font-size: 13px; margin-top: 4px; }

.checkout-sidebar { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.checkout-sidebar .order-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--glass-border); color: var(--text); }
.checkout-sidebar .order-total { font-size: 20px; font-weight: 700; padding-top: 16px; border-top: 2px solid var(--glass-border); margin-top: 8px; color: var(--text); }

.modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 3000; display: none; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.8); }
.modal-content { position: relative; background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 48px; max-width: 500px; width: 90%; text-align: center; z-index: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.modal-content .modal-icon { font-size: 64px; margin-bottom: 16px; }
.modal-content h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.modal-content p { color: var(--text-muted); margin-bottom: 8px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow); }
.blog-card:hover { transform: translateY(-8px); border-color: var(--primary); }
.blog-card .blog-image { height: 200px; background: linear-gradient(135deg, #F0F2F5, #E5E7EB); display: flex; align-items: center; justify-content: center; font-size: 48px; overflow: hidden; }
.blog-card .blog-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .blog-content { padding: 20px; }
.blog-card .blog-content .blog-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card .blog-content .blog-meta span { margin-right: 16px; }
.blog-card .blog-content h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.blog-card .blog-content h3 a { color: var(--text); transition: var(--transition); }
.blog-card .blog-content h3 a:hover { color: var(--primary); }
.blog-card .blog-content p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.blog-sidebar { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.blog-sidebar .sidebar-box { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.blog-sidebar .sidebar-box h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.blog-sidebar .sidebar-box ul li { padding: 8px 0; border-bottom: 1px solid var(--glass-border); }
.blog-sidebar .sidebar-box ul li:last-child { border-bottom: none; }
.blog-sidebar .sidebar-box ul li a { color: var(--text-muted); transition: var(--transition); }
.blog-sidebar .sidebar-box ul li a:hover { color: var(--text); }

.faq-item { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow); }
.faq-item .faq-question { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: var(--text); transition: var(--transition); }
.faq-item .faq-question:hover { background: rgba(0,0,0,0.02); }
.faq-item .faq-question .arrow { transition: var(--transition); font-size: 18px; color: var(--text-muted); }
.faq-item .faq-question.active .arrow { transform: rotate(180deg); }
.faq-item .faq-answer { padding: 0 24px 20px; color: var(--text-muted); display: none; line-height: 1.8; }
.faq-item .faq-answer.open { display: block; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; }
.team-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; text-align: center; transition: var(--transition); box-shadow: var(--shadow); }
.team-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.team-card .team-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--primary), var(--cyan)); display: flex; align-items: center; justify-content: center; font-size: 32px; font-weight: 700; color: white; }
.team-card h3 { font-size: 18px; font-weight: 600; color: var(--text); }
.team-card p { color: var(--text-muted); font-size: 14px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-bottom: 32px; }
.contact-info-card { background: var(--card-bg); border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); }
.contact-info-card .icon { font-size: 32px; margin-bottom: 12px; }
.contact-info-card h3 { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-info-card p { color: var(--text-muted); font-size: 14px; }

.contact-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--glass-border); }
.contact-map iframe { width: 100%; height: 400px; border: none; }

.card-notice { grid-column: 1/-1; padding: 12px 16px; background: rgba(255,107,53,0.08); border: 1px solid var(--accent); border-radius: 10px; font-size: 13px; color: var(--text-muted); text-align: center; }

.countdown-timer {
    background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,107,53,0.02));
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin: 12px 0;
    text-align: center;
}
.timer-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}
.timer-display {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
}

.recently-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.recently-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.recently-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}
.recently-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 8px;
}
.recently-card h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 4px;
}
.recently-card h4 a {
    color: var(--text);
    transition: var(--transition);
}
.recently-card h4 a:hover {
    color: var(--primary);
}
.recently-card .price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.frequently-bought {
    background: linear-gradient(135deg, rgba(108,99,255,0.04), rgba(0,201,167,0.03));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
}
.frequently-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.frequently-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
    padding: 12px;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--glass-border);
    position: relative;
}
.frequently-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 8px;
}
.frequently-item .freq-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
}
.frequently-item .freq-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}
.frequently-item .freq-plus {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.frequently-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    padding: 12px 0;
    border-top: 1px solid var(--glass-border);
    margin-bottom: 12px;
}

.fake-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 12px 20px;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideUp 0.5s ease;
    max-width: 360px;
}
@keyframes slideUp {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.fake-notification .notif-icon {
    font-size: 24px;
}
.fake-notification .notif-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
}
.fake-notification .notif-text strong {
    color: var(--primary);
}

@media (max-width: 992px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .checkout-form { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .cart-sidebar { width: 100%; right: -100%; }
    .newsletter { padding: 40px 20px; }
    .newsletter-form { flex-direction: column; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .fake-notification { left: 10px; right: 10px; max-width: none; bottom: 10px; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-info { padding: 12px; }
    .product-info h3 { font-size: 13px; }
    .product-info .price { font-size: 17px; }
    .product-image { height: 160px; }
}