*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal: #00adc6;
    --teal-dark: #0090a2;
    --teal-light: #4DD0E1;
    --teal-deeper: #007786;
    --teal-bg: #E0F7FA;
    --dark: #232f3e;
    --dark-light: #1E3A5F;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F0F4F8;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --text-dark: #0A1628;
    --text-muted: #64748B;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.12);
    --shadow-teal: 0 4px 16px rgba(0, 188, 212, 0.3);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-dark); line-height: 1.6; background: #f4f6f8; overflow-x: hidden; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--teal); }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.section-title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 3rem; color: var(--text-dark); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; transition: var(--transition); background: none; font-family: inherit; white-space: nowrap; }
.btn-primary { background: linear-gradient(135deg, var(--teal) 0%, color-mix(in srgb, var(--teal) 80%, black) 100%); color: var(--white); border: none; box-shadow: 0 4px 12px color-mix(in srgb, var(--teal) 40%, transparent); font-weight: 600; }
.btn-primary:hover { background: color-mix(in srgb, var(--teal) 80%, black); transform: translateY(-2px); box-shadow: 0 6px 16px color-mix(in srgb, var(--teal) 50%, transparent); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--teal-dark); }
.btn-outline-dark { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-dark:hover { background: var(--teal); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-block { width: 100%; }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #DC2626; }

/* Top Bar */
.top-bar { display: block; background: var(--teal-deeper); color: rgba(255, 255, 255, 0.95); font-size: 0.8rem; padding: 8px 0; }

/* Trust Bar */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.trust-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 15px 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--teal); font-weight: 500; transition: var(--transition); }
.breadcrumb a:hover { color: var(--teal-dark); }
.breadcrumb-light { color: rgba(255, 255, 255, 0.85); margin-bottom: 0.75rem; }
.breadcrumb-light a { color: var(--white); }
.breadcrumb-light span:last-child { color: rgba(255, 255, 255, 0.95); font-weight: 600; }

/* Category Hero */
.category-hero { background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal) 55%, var(--teal-light) 100%); padding: 2.5rem 0; color: var(--white); }
.category-hero-inner { text-align: center; }
.category-hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.category-hero p { max-width: 560px; margin: 0 auto 1rem; opacity: 0.92; line-height: 1.6; }
.category-hero-count { display: inline-block; background: rgba(255, 255, 255, 0.2); padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; }

/* Section headers */
.section-subtitle { text-align: center; color: var(--text-muted); margin: 0.5rem auto 0; max-width: 520px; font-size: 1rem; line-height: 1.5; }
.section-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 3rem; gap: 1.25rem; }
.section-header > div:first-child { text-align: center; }
.section-header .section-title { margin-bottom: 0; }
.section-header > div:first-child .section-subtitle { margin-top: 0.35rem; }
.section-link-btn { flex-shrink: 0; }
.deals-home { padding: 64px 0; background: linear-gradient(180deg, #fff5f5 0%, var(--white) 100%); }
.deals-home .section-title { margin-bottom: 0.5rem; }
.deals-home .section-subtitle { margin-top: 0; margin-bottom: 0; }
.products-grid-deals .product-card { border-color: rgba(239, 68, 68, 0.12); }
@media (min-width: 769px) {
    .deals-home .section-header { flex-direction: row; justify-content: space-between; align-items: flex-end; width: 100%; }
    .deals-home .section-header > div:first-child { text-align: left; }
    .deals-home .section-subtitle { text-align: left; margin-left: 0; }
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar-links { display: flex; gap: 1.5rem; }
.top-bar-links a { color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: var(--transition); }
.top-bar-links a:hover { color: var(--white); }

/* Header */
.header { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); border-bottom: 1px solid var(--gray-200); }
.header-inner { display: flex; align-items: center; gap: 2.5rem; padding: 32px 24px; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { display: block; }
.logo-icon { width: 40px; height: 40px; }
.logo-icon svg { width: 100%; height: 100%; }
.logo-text { color: var(--text-dark); font-size: 1.25rem; font-weight: 800; letter-spacing: 0.5px; }
.logo-text small { display: block; font-size: 0.6rem; font-weight: 500; letter-spacing: 2px; opacity: 0.9; }

/* Header Search */
.header-search { flex: 1; max-width: 580px; }
.header-search form { display: flex; background: var(--white); border-radius: 50px; overflow: hidden; padding: 3px 3px 3px 18px; align-items: center; border: 1px solid var(--gray-300); }
.search-category { padding: 8px 24px 8px 12px; border: none; background: none; font-size: 0.85rem; color: var(--gray-600); cursor: pointer; border-right: 1px solid var(--gray-200); font-family: inherit; outline: none; appearance: none; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 6px center; background-size: 14px; margin-right: 8px; }
.header-search input { flex: 1; padding: 8px 12px; border: none; font-size: 0.9rem; color: var(--text-dark); outline: none; font-family: inherit; background: none; }
.header-search input::placeholder { color: var(--gray-400); }
.header-search button { width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--teal); color: var(--white); cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-search button:hover { background: var(--teal-dark); }
.header-search button svg { width: 18px; height: 18px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.header-action { display: flex; flex-direction: row; align-items: center; gap: 8px; color: var(--gray-600); font-size: 0.85rem; position: relative; transition: var(--transition); text-decoration: none; }
.header-action:hover { color: var(--teal); opacity: 1; }
.header-action svg { width: 24px; height: 24px; }
.action-label { font-size: 0.8rem; margin-top: 0; }

.wishlist-action { cursor: pointer; }
.wishlist-count,
.cart-badge { position: absolute; top: -6px; left: 16px; background: #000; color: var(--white); font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cart-total-display { font-size: 0.9rem; font-weight: 700; margin-top: 0; color: var(--text-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); }

/* Navigation */
.nav { background: var(--teal-dark); border-top: 1px solid rgba(255,255,255,0.05); }
.nav-list { display: flex; list-style: none; gap: 0; overflow-x: auto; overflow-y: hidden; margin: 0; padding: 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none; }
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: block; padding: 12px 20px; color: var(--white); font-weight: 600; font-size: 0.9rem; white-space: nowrap; transition: var(--transition); }
.nav-list > li > a:hover,
.nav-list > li > a.active { background: rgba(0, 0, 0, 0.15); }

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 400px; max-width: 560px; padding: 16px 0; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 100; }
.dropdown-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 0 16px; }
.dropdown-col h4 { font-size: 0.75rem; font-weight: 700; color: var(--teal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.dropdown-col a { display: block; padding: 4px 0; color: var(--gray-600); font-size: 0.85rem; transition: var(--transition); }
.dropdown-col a:hover { color: var(--teal); padding-left: 8px; }

/* Hero Slider */
.hero-slider { margin-top: 0; background: var(--gray-100); }
.slider-container { position: relative; overflow: hidden; }
.slide { display: none; min-height: 460px; position: relative; }
.slide.active { display: flex; align-items: center; animation: slideFadeIn 0.5s ease; }
@keyframes slideFadeIn {
    from { opacity: 0.6; }
    to { opacity: 1; }
}
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-inner { position: relative; z-index: 2; display: flex; align-items: center; width: 100%; min-height: 460px; padding: 48px 0; }
.slide-inner .container { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.slide-text { flex: 1; max-width: 52%; }
.slide-text .hero-badge { display: inline-block; margin-bottom: 1rem; }
.slide-text h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.12; margin-bottom: 0.75rem; letter-spacing: -0.02em; text-transform: uppercase; }
.slide-subtitle { font-size: 1.05rem; font-weight: 500; line-height: 1.6; margin-bottom: 1.75rem; max-width: 480px; text-transform: none; letter-spacing: normal; }
.slide-theme-light .slide-text h1 { color: var(--text-dark); }
.slide-theme-light .slide-subtitle { color: var(--text-muted); }
.slide-theme-light .hero-badge { background: var(--teal); color: var(--white); }
.slide-theme-teal .slide-text h1,
.slide-theme-green .slide-text h1 { color: var(--white); }
.slide-theme-teal .slide-subtitle,
.slide-theme-green .slide-subtitle { color: rgba(255, 255, 255, 0.92); }
.slide-theme-teal .hero-badge,
.slide-theme-green .hero-badge,
.slide-theme-dark .hero-badge { background: rgba(255, 255, 255, 0.2); color: var(--white); backdrop-filter: blur(4px); }
.slide-theme-dark .slide-text h1 { color: var(--white); }
.slide-theme-dark .slide-subtitle { color: rgba(255, 255, 255, 0.92); }
.slide-image { flex: 1; max-width: 44%; display: flex; justify-content: center; align-items: center; }
/* Layout: imagem em tela cheia */
.slide-layout-full { min-height: 460px; }
.slide-layout-full .slide-bg-image { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center; background-repeat: no-repeat; }
.slide-layout-full .slide-overlay { position: absolute; inset: 0; z-index: 2; background: #0a1628; pointer-events: none; }
.slide-layout-full .slide-inner { z-index: 3; }
.slide-layout-full .slide-text { max-width: 640px; }
.slide-layout-full.slide-text-center .slide-inner .container { justify-content: center; }
.slide-layout-full.slide-text-center .slide-text { text-align: center; margin-left: auto; margin-right: auto; }
.slide-layout-full.slide-text-center .hero-ctas { justify-content: center; }
.slide-text-center.slide-layout-split .slide-inner .container { justify-content: center; }
.slide-text-center.slide-layout-split .slide-text { text-align: center; max-width: 100%; flex: 1; }
.slide-text-center.slide-layout-split .hero-ctas { justify-content: center; }
.slide-text-center.slide-layout-split .slide-image { display: none; }
.slide-image img { max-height: 360px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12)); }
.slide-image-fallback svg { width: 100%; max-width: 380px; height: auto; }
.slide-text .hero-ctas { justify-content: flex-start; }

.slider-controls button { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.1); border: none; color: var(--text-dark); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 10; }
.slider-controls button:hover { background: rgba(0, 0, 0, 0.2); }
.slider-controls button svg { width: 24px; height: 24px; }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; align-items: center; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: #cbd5e1; cursor: pointer; transition: var(--transition); }
.dot.active { width: 32px; border-radius: 5px; background: var(--teal); }

.hero-fallback { background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal) 50%, var(--teal-light) 100%); min-height: 520px; display: flex; align-items: center; }
.hero-inner { display: flex; align-items: center; min-height: 520px; padding: 60px 0; }
.hero-content { text-align: center; max-width: 600px; margin: 0 auto; }
.hero-content h1 { font-size: 3rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.hero-content p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Promo Banners */
.promo-banners { padding: 48px 0; background: var(--gray-50); }
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: var(--transition); overflow: hidden; position: relative; }
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.promo-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.promo-teclados::before { background: linear-gradient(90deg, #00BCD4, #4DD0E1); }
.promo-mouses::before { background: linear-gradient(90deg, #00897B, #4DB6AC); }
.promo-cartoes::before { background: linear-gradient(90deg, #43A047, #81C784); }
.promo-content { flex: 1; }
.promo-label { display: inline-block; background: var(--teal-bg); color: var(--teal-dark); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.promo-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.promo-link { color: var(--teal); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.promo-link:hover { color: var(--teal-dark); }
.promo-icon { width: 80px; height: 80px; color: var(--teal); opacity: 0.8; flex-shrink: 0; }
.promo-icon svg { width: 100%; height: 100%; }
.promo-card-img { max-width: 90px; max-height: 70px; object-fit: contain; }

/* Categories */
.categories { padding: 80px 0; background: linear-gradient(180deg, #f4f6f8 0%, var(--teal-bg) 100%); }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.category-card { background: var(--white); padding: 2rem 1.25rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 2px solid var(--gray-100); text-decoration: none; color: inherit; display: block; }
.category-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); border-color: var(--teal); }
.category-icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); transition: var(--transition); }
.category-card:hover .category-icon { background: var(--teal); color: var(--white); }
.category-icon svg { width: 32px; height: 32px; }
.category-custom-img { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; }
.category-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.category-card p { color: var(--text-muted); font-size: 0.8rem; }

/* Products Grid */
.featured-products, .products, .category-page, .search-page { padding: 80px 0; }
.featured-products { padding: 80px 0; background: linear-gradient(180deg, var(--teal-bg) 0%, #f4f6f8 100%); }

.featured-products .section-header { width: 100%; }
.featured-products .section-header .section-title { margin-bottom: 0; }
.featured-products .section-header .section-subtitle { margin: 0.35rem auto 0; }
.product-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.product-tab { padding: 8px 20px; border-radius: 50px; border: 2px solid var(--gray-200); background: var(--white); color: var(--gray-600); font-weight: 500; font-size: 0.9rem; cursor: pointer; transition: var(--transition); font-family: inherit; }
.product-tab:hover { border-color: var(--teal); color: var(--teal); }
.product-tab.active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }

.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0, 0, 0, 0.03); display: flex; flex-direction: column; position: relative; min-width: 0; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.product-image-wrap { position: relative; overflow: hidden; }
.product-link { display: block; color: inherit; }
.product-image { position: relative; height: 220px; background: var(--white); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-image img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform 0.35s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-hover-actions { position: absolute; inset: 0; background: rgba(10, 22, 40, 0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s ease; pointer-events: none; }
.product-card:hover .product-hover-actions { opacity: 1; pointer-events: auto; }
.product-info-link { color: inherit; display: block; }
.product-info-link:hover h3 { color: var(--teal); }
.product-installment { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.35rem; line-height: 1.3; }
.product-shipping-tag { display: inline-block; margin-top: 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--success); background: rgba(16, 185, 129, 0.1); padding: 3px 8px; border-radius: 4px; }
.btn-add-cart { width: 100%; gap: 6px; }
.product-placeholder { color: var(--teal); opacity: 0.5; }
.product-placeholder svg { width: 80px; height: 60px; }
.product-badge { position: absolute; top: 10px; left: 10px; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; z-index: 2; }
.product-badge.sale { background: var(--danger); color: var(--white); }
.product-badge.low-stock { background: var(--warning); color: var(--white); }
.product-badge.out-of-stock { background: var(--text-muted); color: var(--white); }
.product-badge.new { background: var(--teal); color: var(--white); }

.product-wishlist-btn { position: absolute; top: 10px; right: 10px; width: 36px; height: 36px; border-radius: 50%; background: var(--white); border: none; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); z-index: 2; color: var(--gray-400); }
.product-wishlist-btn:hover, .product-wishlist-btn.active { color: #FF5252; }
.product-wishlist-btn svg { width: 18px; height: 18px; }

.product-info { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--teal); margin-bottom: 0.5rem; }
.product-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.3; overflow-wrap: break-word; word-break: break-word; }
.product-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 0.75rem; }
.product-rating svg { width: 14px; height: 14px; }
.product-rating span { font-size: 0.75rem; color: var(--text-muted); margin-left: 4px; }
.product-price-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--teal); }
.product-old-price { font-size: 0.875rem; color: var(--gray-400); text-decoration: line-through; }
.product-stock { font-size: 0.8rem; color: var(--success); }
.product-stock.out { color: var(--danger); }
.product-add-cart { padding: 0 1.25rem 1.25rem; }

.products-cta { text-align: center; margin-top: 3rem; }

/* Benefits */
.benefits { padding: 40px 0; background: var(--white); }
.benefits-inner { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); border: 1px solid rgba(0, 0, 0, 0.04); }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.benefit-item { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 12px; }
.benefit-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; background: var(--teal-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-item h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--text-dark); }
.benefit-item p { font-size: 0.75rem; color: var(--text-muted); }

/* Deals */
.deals { padding: 80px 0; }
.deals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.deal-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: var(--transition); position: relative; }
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
.deal-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
.deal-badge { position: absolute; top: 1rem; left: 1rem; background: #FF5252; color: var(--white); font-weight: 800; font-size: 0.875rem; padding: 6px 14px; border-radius: 50px; z-index: 1; }
.deal-image { height: 100%; min-height: 250px; background: var(--gray-50); display: flex; align-items: center; justify-content: center; }
.deal-image svg { width: 200px; height: 140px; }
.deal-info { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.deal-info h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 0.75rem; }
.deal-info p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.deal-prices { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.deal-old-price { font-size: 1rem; color: var(--gray-400); text-decoration: line-through; }
.deal-new-price { font-size: 1.75rem; font-weight: 800; color: var(--teal); }

/* Brands */
.brands { padding: 60px 0; background: var(--gray-50); }
.brands-slider { overflow: hidden; position: relative; }
.brands-track { display: flex; gap: 48px; animation: scrollBrands 30s linear infinite; }
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.brand-item { flex-shrink: 0; font-size: 1.25rem; font-weight: 700; color: var(--gray-300); white-space: nowrap; transition: var(--transition); }
.brand-item:hover { color: var(--teal); }

/* Newsletter */
.newsletter { padding: 80px 0; background: linear-gradient(135deg, var(--teal-deeper) 0%, var(--teal) 50%, var(--teal-light) 100%); }
.newsletter-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.newsletter-inner .accent { color: #ffd200; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15); }
.newsletter-inner > p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.newsletter-form input { padding: 14px 20px; border-radius: 50px; border: 2px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.15); color: var(--white); font-size: 0.95rem; font-family: inherit; transition: var(--transition); flex: 1; min-width: 200px; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.7); }
.newsletter-form input:focus { outline: none; border-color: var(--white); background: rgba(255, 255, 255, 0.25); }
.newsletter-success { display: none; color: #4ADE80; font-weight: 600; margin-top: 1rem; }
.newsletter-success.visible { display: block; }

/* Instagram */
.instagram { padding: 80px 0; }
.instagram-subtitle { text-align: center; color: var(--teal); font-weight: 600; margin-top: -1.5rem; margin-bottom: 3rem; font-size: 1.1rem; }
.instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.instagram-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; display: block; }
.instagram-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.instagram-placeholder svg { width: 60px; height: 60px; }
.instagram-overlay { position: absolute; inset: 0; background: rgba(0, 188, 212, 0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.instagram-item:hover .instagram-overlay { opacity: 1; }
.instagram-overlay svg { width: 32px; height: 32px; }

/* About */
.about { padding: 80px 0; background: var(--gray-50); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1.5rem; }
.about-content p { color: var(--gray-600); margin-bottom: 1rem; line-height: 1.8; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--teal); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }
.about-image svg { width: 100%; max-width: 400px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255, 255, 255, 0.7); margin-top: 0.5rem; max-width: 280px; font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.footer-social a:hover { background: var(--teal); border-color: var(--teal); }
.footer-social svg { width: 18px; height: 18px; }
.footer h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: var(--transition); font-size: 0.9rem; }
.footer-links a:hover { color: var(--teal); }
.footer-contact ul { list-style: none; }
.footer-contact li { margin-bottom: 0.75rem; color: rgba(255, 255, 255, 0.7); display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.footer-contact li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal); }
.footer-payment { margin-top: 1.5rem; }
.footer-payment h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon { background: rgba(255, 255, 255, 0.1); padding: 6px 12px; border-radius: 6px; font-size: 0.75rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

/* Product Page */
.product-page { padding: 40px 0 80px; background: transparent; }
.product-page-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; align-items: start; min-width: 0; }

/* Sidebar */
.product-sidebar { }
.sidebar-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.sidebar-title { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 2px solid var(--teal); padding-bottom: 0.5rem; }
.category-sidebar-list { list-style: none; padding: 0; margin: 0; }
.category-sidebar-list li { border-bottom: 1px solid var(--gray-100); }
.category-sidebar-list li:last-child { border-bottom: none; }
.category-sidebar-list li a { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; color: var(--gray-600); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.category-sidebar-list li a:hover { color: var(--teal); padding-left: 4px; }
.category-sidebar-list li.active a { color: var(--teal); font-weight: 700; }
.category-arrow { font-size: 1.2rem; color: var(--gray-400); line-height: 1; }

.youtube-sidebar-banner { text-align: center; padding: 0.5rem 0; }
.youtube-sidebar-banner svg { width: 44px; height: 44px; color: #ff0000; margin-bottom: 0.75rem; }
.youtube-sidebar-banner h4 { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.youtube-sidebar-banner p { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1rem; line-height: 1.4; }
.btn-youtube { display: inline-block; background: #ff0000; color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 8px 16px; border-radius: 50px; text-decoration: none; transition: var(--transition); text-align: center; }
.btn-youtube:hover { background: #cc0000; transform: translateY(-1px); }

/* Main Area */
.product-main-content { background: var(--white); border: 1px solid rgba(0,0,0,0.03); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.04); min-width: 0; }
.product-detail { display: grid; grid-template-columns: 420px 1fr; gap: 2.5rem; margin-bottom: 3.5rem; min-width: 0; }

.product-gallery { position: relative; }
.product-main-image { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 380px; position: relative; padding: 1rem; }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; max-height: 360px; }
.product-discount-badge { position: absolute; top: 12px; left: 12px; background: #dc2626; color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; z-index: 2; box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3); }

.product-thumbnails { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.thumb { width: 75px; height: 75px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; background: var(--white); transition: var(--transition); padding: 4px; }
.thumb:hover { border-color: var(--teal); }
.thumb.active { border-color: var(--teal); border-width: 2px; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-title-h1 { font-size: 1.75rem; font-weight: 600; color: var(--text-dark); margin: 0.5rem 0; line-height: 1.3; word-break: break-word; overflow-wrap: break-word; }
.product-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 1rem; }
.product-stock-status { font-size: 0.9rem; }
.meta-divider { color: var(--gray-300); }
.product-wishlist-action-box { }
.btn-wishlist-light { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--gray-500); text-decoration: none; transition: var(--transition); }
.btn-wishlist-light:hover, .btn-wishlist-light.active { color: #dc2626; }
.btn-wishlist-light svg { width: 16px; height: 16px; }

.product-detail-info { min-width: 0; }

.product-divider { border: none; border-top: 1px solid var(--gray-200); margin: 1.25rem 0; }

/* Price Block */
.product-price-block { background: rgba(0, 188, 212, 0.03); border: 1px solid rgba(0, 188, 212, 0.1); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.product-price-actual { font-size: 2.25rem; font-weight: 700; color: #dc2626; }
.product-price-old { font-size: 1.15rem; color: var(--gray-400); text-decoration: line-through; }

/* Buy Form controls */
.cart-form-controls { display: flex; gap: 12px; margin-bottom: 1.5rem; align-items: center; }
.qty-input-box input { border: 1px solid var(--gray-300); rounded: var(--radius-sm); width: 65px; height: 46px; text-align: center; font-size: 1.05rem; font-weight: 600; outline: none; border-radius: 4px; }
.qty-input-box input:focus { border-color: var(--teal); }
.btn-buy-now { flex: 1; max-width: 240px; height: 46px; background: var(--teal); color: var(--white); border: none; border-radius: 50px; font-size: 1rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: var(--transition); text-transform: uppercase; letter-spacing: 0.5px; }
.btn-buy-now:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn-buy-now svg { width: 18px; height: 18px; }

/* Daniel Card */
.support-card-daniel { display: flex; gap: 16px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem; margin-bottom: 1.5rem; align-items: center; text-decoration: none; color: inherit; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.support-card-daniel:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 188, 212, 0.12); border-color: rgba(0, 188, 212, 0.3); }
.daniel-avatar { position: relative; width: 52px; height: 52px; flex-shrink: 0; }
.daniel-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--gray-100); }
.status-indicator { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--white); }
.status-indicator.offline { background: #94a3b8; }
.status-indicator.online { background: #10b981; box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
.daniel-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin: 0; display: flex; align-items: center; gap: 8px; }
.daniel-info .status-badge { background: var(--gray-100); color: var(--gray-600); font-size: 0.65rem; padding: 2px 6px; border-radius: 4px; font-weight: 600; }
.daniel-info .status-badge.online { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.daniel-info p { font-size: 0.8rem; color: var(--gray-500); margin: 2px 0 4px; }
.back-soon { font-size: 0.75rem; color: var(--gray-400); font-weight: 600; }

/* Shipping Calculator */
.shipping-calculator { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; }
.shipping-calculator h4 { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; }
.shipping-input-group { display: flex; gap: 8px; }
.shipping-input-group input { flex: 1; border: 1px solid var(--gray-300); border-radius: 4px; padding: 8px 12px; font-size: 0.9rem; outline: none; }
.shipping-input-group input:focus { border-color: var(--teal); }
.shipping-input-group button { background: var(--dark); color: var(--white); border: none; border-radius: 4px; padding: 8px 16px; font-weight: 600; cursor: pointer; font-size: 0.85rem; transition: var(--transition); }
.shipping-input-group button:hover { background: #1c2630; }
.shipping-links { margin-top: 0.5rem; }
.no-cep-link { font-size: 0.8rem; color: var(--teal); text-decoration: none; font-weight: 600; }
.no-cep-link:hover { text-decoration: underline; }
.shipping-result-box { display: none; margin-top: 1rem; border-top: 1px solid var(--gray-200); padding-top: 1rem; }
.shipping-loading { font-size: 0.85rem; color: var(--gray-500); }
.shipping-methods-list { display: flex; flex-direction: column; gap: 8px; }
.shipping-method-item { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; padding: 8px 12px; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 4px; }
.method-left { display: flex; align-items: center; }
.method-badge { font-size: 0.65rem; font-weight: 700; color: var(--white); padding: 2px 6px; border-radius: 3px; margin-right: 8px; text-transform: uppercase; }
.method-badge.pac { background: var(--teal); }
.method-badge.sedex { background: #f59e0b; }
.method-name { font-weight: 600; color: var(--text-dark); }
.method-days { font-size: 0.8rem; color: var(--gray-500); margin-left: 8px; }
.method-price { font-weight: 700; color: var(--text-dark); }

/* Tabs Container */
.product-tabs-container { margin: 3.5rem 0; }
.product-tabs-header { display: flex; border-bottom: 2px solid var(--gray-200); gap: 1rem; }
.tab-btn { background: none; border: none; padding: 12px 24px; font-size: 1rem; font-weight: 700; color: var(--gray-500); cursor: pointer; position: relative; bottom: -2px; border-bottom: 2px solid transparent; transition: var(--transition); }
.tab-btn:hover { color: var(--teal); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); }
.tab-panel { display: none; padding: 2rem 0 1rem; line-height: 1.8; color: var(--gray-600); font-size: 0.95rem; }
.tab-panel.active { display: block; animation: fadeIn 0.3s ease; }
.specs-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.specs-table th { width: 220px; font-weight: 600; color: var(--gray-500); padding: 12px; border-bottom: 1px solid var(--gray-200); text-align: left; background: var(--gray-50); }
.specs-table td { color: var(--text-dark); padding: 12px; border-bottom: 1px solid var(--gray-200); font-weight: 500; }

/* Related Products */
.related-products { border-top: 1px solid var(--gray-200); padding-top: 3rem; }
.related-title { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2rem; }
.related-products .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sidebar Responsive Layout */
@media (max-width: 992px) {
    .product-page-layout { grid-template-columns: 1fr; gap: 2rem; }
    .product-sidebar { display: none; }
    .product-detail { grid-template-columns: 1fr; }
    .product-main-content { padding: 1.5rem; }
}

/* Category & Search Pages */
.category-page, .search-page { padding: 40px 0 80px; }
.category-header { text-align: center; margin-bottom: 3rem; }
.category-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.category-header p { color: var(--text-muted); margin-bottom: 0.5rem; }
.product-count { color: var(--teal); font-weight: 600; }

.search-header { margin-bottom: 3rem; }
.search-header h1 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.search-form-inline { display: flex; gap: 0.5rem; max-width: 500px; margin-bottom: 1rem; }
.search-form-inline input { flex: 1; padding: 12px 20px; border: 2px solid var(--gray-100); border-radius: 50px; font-size: 1rem; font-family: inherit; }
.search-form-inline input:focus { outline: none; border-color: var(--teal); }
.search-count { color: var(--text-muted); }

.empty-results { text-align: center; padding: 4rem 0; }
.empty-results svg { width: 64px; height: 64px; color: var(--text-muted); margin-bottom: 1rem; }
.empty-results p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.page-link { padding: 8px 16px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); font-weight: 500; transition: var(--transition); }
.page-link:hover { border-color: var(--teal); color: var(--teal); }
.page-link.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Cart Page */
.cart-page { padding: 40px 0 80px; }
.cart-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }

.empty-cart { text-align: center; padding: 4rem 0; }
.empty-cart svg { width: 80px; height: 80px; color: var(--text-muted); margin-bottom: 1rem; }
.empty-cart h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.empty-cart p { color: var(--text-muted); margin-bottom: 2rem; }

.free-shipping-bar { background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(0, 188, 212, 0.05)); padding: 1rem 1.5rem; border-radius: var(--radius); margin-bottom: 2rem; text-align: center; }
.free-shipping-bar p { font-weight: 600; margin-bottom: 0.5rem; }
.progress-bar { height: 8px; background: var(--gray-100); border-radius: 50px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--teal); border-radius: 50px; transition: var(--transition); }

.free-shipping-achieved { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05)); padding: 1rem 1.5rem; border-radius: var(--radius); margin-bottom: 2rem; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.free-shipping-achieved svg { width: 20px; height: 20px; color: var(--success); }

.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.cart-items { }
.cart-item { display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 1rem; align-items: center; padding: 1.5rem 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-image { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; background: var(--gray-100); }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--teal); opacity: 0.3; }
.cart-item-name { font-weight: 600; display: block; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--text-muted); font-size: 0.875rem; }
.cart-item-qty .qty-controls { border-color: var(--gray-100); }
.cart-item-total { font-weight: 700; font-size: 1.1rem; min-width: 100px; text-align: right; }
.remove-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 8px; transition: var(--transition); }
.remove-btn:hover { color: var(--danger); }
.remove-btn svg { width: 20px; height: 20px; }
.cart-clear { margin-top: 1rem; }

.cart-summary { background: var(--gray-100); padding: 2rem; border-radius: var(--radius); height: fit-content; position: sticky; top: 120px; }
.cart-summary h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(10, 22, 40, 0.08); }
.summary-total { font-size: 1.25rem; font-weight: 800; border-bottom: none; padding-top: 1rem; }
.cart-summary .btn { margin-top: 1rem; }

/* Checkout Page */
.checkout-page { padding: 40px 0 80px; }
.checkout-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2rem; }
.checkout-section { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(10, 22, 40, 0.08); margin-bottom: 1.5rem; }
.checkout-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
.form-group { flex: 1; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; font-size: 0.875rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group-large { flex: 2; }
.form-group-small { flex: 0 0 100px; }

.payment-options { display: flex; flex-direction: column; gap: 1rem; }
.payment-option { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.payment-option:has(input:checked) { border-color: var(--teal); background: rgba(0, 188, 212, 0.05); }
.payment-option input { width: 20px; height: 20px; accent-color: var(--teal); }
.payment-option-content strong { display: block; }
.payment-option-content span { font-size: 0.875rem; color: var(--text-muted); }

.checkout-summary { background: var(--gray-100); padding: 2rem; border-radius: var(--radius); height: fit-content; position: sticky; top: 120px; }
.checkout-summary h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.summary-items { margin-bottom: 1rem; }
.summary-item { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; }
.summary-item-name { color: var(--text-muted); }
.summary-totals { border-top: 2px solid rgba(10, 22, 40, 0.08); padding-top: 1rem; }

/* Order Success */
.order-success { padding: 40px 0 80px; text-align: center; }
.success-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; color: var(--success); }
.success-icon svg { width: 100%; height: 100%; }
.order-success h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.order-number { font-size: 1.25rem; margin-bottom: 0.5rem; }
.order-status { margin-bottom: 2rem; }
.order-details, .order-shipping { background: var(--gray-100); padding: 2rem; border-radius: var(--radius); margin-bottom: 2rem; text-align: left; }
.order-details h2, .order-shipping h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.order-items-list { margin-bottom: 1rem; }
.order-item { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(10, 22, 40, 0.08); }
.order-totals { margin-top: 1rem; }
.order-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* Auth Pages — layout centralizado */
.auth-page {
    padding: 2.5rem 1rem 4rem;
    background: var(--gray-50);
    background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 173, 198, 0.12), transparent);
}
.auth-wrap { width: 100%; max-width: 440px; margin: 0 auto; }
.auth-logo-link { display: block; text-align: center; margin-bottom: 1.5rem; }
.auth-logo-link img { height: 48px; width: auto; display: inline-block; }
.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
    overflow: hidden;
}
.auth-card-accent { height: 4px; background: linear-gradient(90deg, var(--teal-deeper), var(--teal), var(--teal-light)); }
.auth-card-body { padding: 1.75rem 1.75rem 1.5rem; }
.auth-badge {
    display: inline-block;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--teal-dark); background: var(--teal-bg); padding: 4px 10px; border-radius: 50px; margin-bottom: 0.65rem;
}
.auth-card-body h1 { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin: 0 0 0.35rem; line-height: 1.25; }
.auth-lead { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 1.25rem; line-height: 1.5; }
.auth-alert { padding: 12px 14px; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.85rem; line-height: 1.45; }
.auth-alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.auth-alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.auth-alert ul { margin: 0.35rem 0 0 1rem; padding: 0; }
.auth-form .form-group { margin-bottom: 0.9rem; }
.auth-form .form-group label { display: block; font-weight: 600; font-size: 0.78rem; color: var(--gray-600); margin-bottom: 0.35rem; }
.auth-form .form-group input {
    width: 100%; padding: 11px 13px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm);
    font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-form .form-group input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0, 173, 198, 0.12); }
.auth-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.auth-form-extra { text-align: right; margin: -0.25rem 0 0.75rem; font-size: 0.85rem; }
.auth-form-extra a { color: var(--teal); font-weight: 600; }
.auth-page-footer { text-align: center; margin-top: 1.25rem; font-size: 0.9rem; color: var(--text-muted); }
.auth-page-footer a { color: var(--teal); font-weight: 700; }
.auth-features {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 1.25rem;
}
.auth-feature {
    text-align: center; font-size: 0.72rem; font-weight: 600; color: var(--gray-600);
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 10px 6px;
}
.auth-feature-icon {
    display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; margin: 0 auto 6px;
    background: var(--teal-bg); color: var(--teal); border-radius: 50%;
}
.auth-feature-icon svg { width: 16px; height: 16px; }
.form-checkbox { display: flex; align-items: center; }
.form-checkbox label { display: flex; align-items: center; gap: 0.5rem; cursor: pointer; }

/* Minha conta — visitante */
.account-guest-page {
    padding: 1.5rem 0 4rem;
    background: var(--gray-50);
    background-image: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 173, 198, 0.1), transparent);
}
.account-guest-shell {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 400px);
    max-width: 920px;
    margin: 1.5rem auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 22, 40, 0.1);
    border: 1px solid var(--gray-200);
    background: var(--white);
}
.account-guest-aside {
    padding: 2.25rem 2rem;
    background: linear-gradient(165deg, var(--teal-deeper) 0%, var(--teal) 50%, var(--teal-light) 100%);
    color: var(--white);
}
.account-guest-kicker {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}
.account-guest-aside h1 {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.account-guest-aside-lead {
    font-size: 0.92rem;
    line-height: 1.55;
    opacity: 0.92;
    margin-bottom: 1.75rem;
}
.account-guest-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account-guest-perks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    line-height: 1.45;
}
.account-guest-perk-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-guest-perk-icon svg { width: 18px; height: 18px; }
.account-guest-main {
    padding: 2.25rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.account-guest-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    background: var(--teal-bg);
    color: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-guest-icon svg { width: 32px; height: 32px; }
.account-guest-main h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.4rem; color: var(--text-dark); }
.account-guest-lead { color: var(--text-muted); line-height: 1.55; margin-bottom: 1.5rem; font-size: 0.9rem; max-width: 280px; }
.account-guest-actions { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 300px; margin-bottom: 1.25rem; }
.account-guest-actions .btn { width: 100%; }
.account-guest-footer { margin: 0; }
.account-guest-footer a { color: var(--teal); font-weight: 600; font-size: 0.88rem; }
.account-welcome { margin-bottom: 1.5rem; }
.account-welcome h1 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.account-welcome p { color: var(--text-muted); }
.account-logout { border: none; box-shadow: none; background: transparent; padding: 0; }

/* Account Page */
.account-page { padding: 40px 0 80px; }
.account-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 2rem; }
.account-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.account-section { background: var(--white); padding: 2rem; border-radius: var(--radius); border: 1px solid rgba(10, 22, 40, 0.08); }
.account-section.full-width { grid-column: 1 / -1; }
.account-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.account-form .form-group { margin-bottom: 1rem; }
.account-form .form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.account-form .form-group input { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-100); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; }
.account-form .form-group input:focus { outline: none; border-color: var(--teal); }
.account-form .form-group input:disabled { background: var(--gray-100); }

.orders-table { overflow-x: auto; }
.orders-table table { width: 100%; border-collapse: collapse; }
.orders-table th, .orders-table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--gray-100); }
.orders-table th { font-weight: 600; font-size: 0.875rem; color: var(--text-muted); }
.status-badge { padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-paid, .status-processing { background: #DBEAFE; color: #1E40AF; }
.status-shipped { background: #E0E7FF; color: #3730A3; }
.status-delivered { background: #D1FAE5; color: #065F46; }
.status-cancelled, .status-refunded { background: #FEE2E2; color: #991B1B; }
.empty-orders { color: var(--text-muted); margin-bottom: 1rem; }

/* Flash Messages */
.flash { padding: 1rem 1.5rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: space-between; position: relative; }
.flash-success { background: #D1FAE5; color: #065F46; }
.flash-error { background: #FEE2E2; color: #991B1B; }
.flash-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: inherit; opacity: 0.6; }
.flash-close:hover { opacity: 1; }
.error-list { margin-bottom: 1.5rem; }
.error-msg { color: var(--danger); font-size: 0.875rem; margin-bottom: 0.25rem; }

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .header-inner { gap: 1rem; }
    .header-search { max-width: 400px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
    .account-layout { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; text-align: center; }
    .deals-grid { grid-template-columns: 1fr; }
    .deal-featured { grid-template-columns: 1fr; }
    .deal-image { min-height: 200px; }
    .slide-text h1 { font-size: 2.5rem; }
    .slide-text { max-width: 60%; }
    .slide-image { max-width: 40%; }
}

@media (max-width: 768px) {
    .auth-form-row { grid-template-columns: 1fr; }
    .auth-features { grid-template-columns: 1fr; }
    .account-guest-shell { grid-template-columns: 1fr; margin-top: 0.5rem; }
    .account-guest-aside { padding: 1.75rem 1.25rem; }
    .account-guest-aside h1 { font-size: 1.35rem; }
    .account-guest-main { padding: 1.75rem 1.25rem 2rem; }
    .trust-bar-inner { justify-content: center; }
    .trust-item { font-size: 0.72rem; }
    .trust-item span { max-width: 140px; white-space: normal; text-align: left; }
    .deals-home .section-header { text-align: center; }
    .section-link-btn { width: 100%; }
    .category-hero h1 { font-size: 1.75rem; }
    .top-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
    .header-inner { flex-wrap: wrap; padding: 10px 16px; }
    .header-search { order: 3; max-width: 100%; width: 100%; }
    .search-category { display: none; }
    .nav { position: fixed; top: 0; right: 0; transform: translateX(100%); width: 280px; height: 100vh; overflow-y: auto; background: var(--teal-dark); padding: 80px 0 2rem; transition: transform 0.3s ease; box-shadow: var(--shadow-lg); z-index: 999; }
    .nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; gap: 0; overflow-x: visible; overflow-y: visible; }
    .nav-toggle { display: flex; z-index: 1001; }
    .dropdown { position: static; min-width: 100%; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255, 255, 255, 0.1); }
    .dropdown-inner { grid-template-columns: 1fr 1fr; padding: 16px; }
    .dropdown-col h4 { color: var(--white); }
    .dropdown-col a { color: rgba(255, 255, 255, 0.8); }
    .dropdown-col a:hover { color: var(--white); }
    .products-grid, .related-products .products-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .slide-text h1 { font-size: 2rem; }
    .slide-text { max-width: 100%; }
    .slide-image { display: none; }
    .slide-inner .container { flex-direction: column; }
    .slide-text .hero-ctas { justify-content: center; }
    .hero-content h1 { font-size: 2rem; }
    .section-title { font-size: 1.5rem; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 0.5rem; }
    .cart-item-qty, .cart-item-total, .cart-item-remove { grid-column: 2; }
    .promo-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .newsletter-form-row { flex-direction: column; }
    .newsletter-form input { min-width: auto; }
}

@media (max-width: 480px) {
    .products-grid, .related-products .products-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 1.75rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    .btn-lg { padding: 14px 28px; font-size: 1rem; }
    .form-row { flex-direction: column; }
    .categories-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: column; gap: 1.5rem; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-text h1 { font-size: 1.75rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
}

/* Floating Actions */
/* WhatsApp Multi-Contact Floating Widget */
.whatsapp-float-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 99999;
    font-family: inherit;
}

.whatsapp-toggle-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-toggle-btn:active {
    transform: scale(0.95);
}

.whatsapp-toggle-btn svg {
    fill: #ffffff;
}

/* Toggle Active State */
.whatsapp-float-container.active .whatsapp-toggle-btn {
    background-color: #ef4444;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
}

/* Popup Window Box */
.whatsapp-popup-window {
    position: absolute;
    bottom: 76px;
    left: 0;
    width: 330px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.whatsapp-float-container.active .whatsapp-popup-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header */
.whatsapp-popup-header {
    background-color: #075e54;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.whatsapp-header-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
}

.whatsapp-header-text h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.whatsapp-header-text p {
    margin: 3px 0 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* Body */
.whatsapp-popup-body {
    background-color: #f4f7f9;
    padding: 16px;
}

.whatsapp-status-alert {
    display: block;
    text-align: center;
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    font-weight: 500;
}

/* Contact List */
.whatsapp-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.whatsapp-contact-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: var(--radius);
    padding: 10px 14px;
    text-decoration: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.whatsapp-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 188, 212, 0.08);
    border-color: rgba(0, 188, 212, 0.25);
}

/* Avatar & Badges */
.whatsapp-avatar-wrapper {
    position: relative;
    width: 42px;
    height: 42px;
    margin-right: 12px;
    flex-shrink: 0;
}

.whatsapp-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.whatsapp-status-dot {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.whatsapp-status-dot.online {
    background-color: #10b981;
    animation: statusPulse 2s infinite ease-in-out;
}

.whatsapp-status-dot.offline {
    background-color: #94a3b8;
}

/* Contact Details */
.whatsapp-contact-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.whatsapp-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.whatsapp-role {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 1px;
}

.whatsapp-availability {
    font-size: 0.65rem;
    font-weight: 600;
    margin-top: 2px;
}

.whatsapp-availability.online {
    color: #10b981;
}

.whatsapp-availability.offline {
    color: #f59e0b;
}

.whatsapp-chat-icon {
    color: #25d366;
    margin-left: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.whatsapp-contact-card:hover .whatsapp-chat-icon {
    opacity: 1;
}

@keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.cart-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background-color: #fff; color: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); border: 2px solid var(--teal-light); z-index: 9999; transition: var(--transition); text-decoration: none; }
.cart-float:hover { transform: scale(1.1); border-color: var(--teal); }
.cart-float svg { width: 28px; height: 28px; }
.cart-float .cart-badge { position: absolute; top: -4px; right: -4px; background: #000; color: #fff; font-size: 0.7rem; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

.btn-yellow { background: #ffd200; color: #000 !important; border-color: #ffd200; border-radius: 50px; font-weight: 700; padding: 12px 32px; box-shadow: 0 4px 12px rgba(255, 210, 0, 0.2); }
.btn-yellow:hover { background: #e6bd00; border-color: #e6bd00; transform: translateY(-2px); }

@media (max-width: 768px) {
    .whatsapp-toggle-btn, .cart-float { width: 50px; height: 50px; }
    .whatsapp-float-container { left: 16px; bottom: 16px; }
    .whatsapp-popup-window { width: 290px; bottom: 62px; }
    .cart-float { right: 16px; bottom: 16px; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
}

/* Mini cart */
.mini-cart-wrap { position: relative; }
.mini-cart-toggle { background: none; border: none; cursor: pointer; font-family: inherit; }
.mini-cart-dropdown {
    position: absolute; top: calc(100% + 12px); right: 0; width: 360px; max-width: calc(100vw - 32px);
    background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200); z-index: 1100; overflow: hidden;
}
.mini-cart-dropdown[hidden] { display: none; }
.mini-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.mini-cart-count-label { font-size: 0.8rem; color: var(--gray-500); }
.mini-cart-free-shipping { padding: 10px 16px; background: rgba(0, 173, 198, 0.06); border-bottom: 1px solid var(--gray-100); }
.mini-cart-free-shipping[hidden] { display: none; }
.mini-cart-free-text { font-size: 0.8rem; margin-bottom: 6px; }
.mini-cart-progress { height: 6px; background: var(--gray-200); border-radius: 50px; overflow: hidden; }
.mini-cart-progress-fill { height: 100%; background: var(--teal); border-radius: 50px; transition: width 0.3s ease; }
.mini-cart-free-ok { font-size: 0.85rem; color: var(--success); font-weight: 600; margin: 0; }
.mini-cart-items { max-height: 280px; overflow-y: auto; padding: 8px 0; }
.mini-cart-loading, .mini-cart-empty { padding: 24px 16px; text-align: center; color: var(--gray-500); font-size: 0.9rem; }
.mini-cart-item { display: flex; gap: 10px; padding: 10px 16px; align-items: flex-start; border-bottom: 1px solid var(--gray-100); }
.mini-cart-item-image { width: 56px; height: 56px; flex-shrink: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--gray-50); border: 1px solid var(--gray-100); }
.mini-cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.mini-cart-no-img { display: block; width: 100%; height: 100%; background: var(--gray-100); }
.mini-cart-item-info { flex: 1; min-width: 0; }
.mini-cart-item-name { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); line-height: 1.3; margin-bottom: 2px; }
.mini-cart-item-qty { font-size: 0.75rem; color: var(--gray-500); }
.mini-cart-item-total { display: block; font-size: 0.85rem; color: var(--teal); margin-top: 2px; }
.mini-cart-remove { background: none; border: none; font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--gray-400); padding: 4px; }
.mini-cart-remove:hover { color: var(--danger); }
.mini-cart-footer { padding: 12px 16px 16px; border-top: 1px solid var(--gray-100); display: flex; flex-direction: column; gap: 8px; }
.mini-cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; font-size: 0.95rem; }
.cart-toast {
    position: fixed; bottom: 100px; right: 24px; z-index: 100000;
    padding: 12px 20px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(10px); transition: 0.3s ease;
}
.cart-toast.visible { opacity: 1; transform: translateY(0); }
.cart-toast-success { background: var(--success); color: var(--white); }
.cart-toast-error { background: var(--danger); color: var(--white); }

/* Star ratings */
.star-rating { display: inline-flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.star-rating .stars { display: inline-flex; gap: 2px; }
.star-rating .star { width: 16px; height: 16px; }
.star-rating-sm .star { width: 13px; height: 13px; }
.star-rating .star.filled { color: #f59e0b; }
.star-rating .star.half { color: #f59e0b; opacity: 0.55; }
.star-rating .star.empty { color: var(--gray-300); }
.star-count { font-size: 0.8rem; color: var(--gray-500); }
.product-info .star-rating { margin: 0.35rem 0 0.5rem; }
.product-rating-summary { display: flex; align-items: center; gap: 10px; margin: 0.5rem 0 0.75rem; flex-wrap: wrap; }
.product-reviews-link { font-size: 0.85rem; color: var(--teal); font-weight: 600; }

/* Category filters */
.category-toolbar { margin-bottom: 2rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.category-filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; }
.filter-group { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.filter-group label { font-size: 0.75rem; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.03em; }
.filter-group input, .filter-group select { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-size: 0.9rem; font-family: inherit; }
.filter-group input:focus, .filter-group select:focus { outline: none; border-color: var(--teal); }
.filter-checkbox { justify-content: flex-end; }
.filter-checkbox label { display: flex; align-items: center; gap: 6px; text-transform: none; font-size: 0.85rem; cursor: pointer; }

/* Reviews */
.reviews-layout { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; }
.reviews-summary-box { text-align: center; padding: 1.5rem; background: var(--gray-50); border-radius: var(--radius); border: 1px solid var(--gray-100); }
.reviews-score { font-size: 2.5rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: 0.5rem; }
.review-form-box { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; }
.review-form-box h3 { margin-bottom: 1rem; font-size: 1.1rem; }
.review-form .form-row { display: flex; gap: 1rem; }
.review-form .form-group { flex: 1; margin-bottom: 1rem; }
.review-form label { display: block; font-weight: 500; margin-bottom: 0.35rem; font-size: 0.875rem; }
.review-form input, .review-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); font-family: inherit; }
.review-form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.75rem; }
.star-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.star-input-label { cursor: pointer; font-size: 1.75rem; color: var(--gray-300); transition: color 0.15s; }
.star-input-label input { display: none; }
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: #f59e0b; }
.reviews-list { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.reviews-list h3 { margin-bottom: 1.25rem; }
.review-card { padding: 1.25rem 0; border-bottom: 1px solid var(--gray-100); }
.review-card:last-child { border-bottom: none; }
.review-card-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.review-card-header time { font-size: 0.8rem; color: var(--gray-500); margin-left: auto; }
.review-card p { color: var(--gray-600); line-height: 1.7; }

@media (max-width: 768px) {
    .mini-cart-dropdown { right: -60px; }
    .reviews-layout { grid-template-columns: 1fr; }
    .category-filters { flex-direction: column; align-items: stretch; }
    .filter-group { min-width: 100%; }
}

