/* ================================================
   DT3 - Main Stylesheet
   Mobile-first responsive design
   ================================================ */

/* --- CSS Variables --- */
:root {
    --color-primary: #1A1A1A;
    --color-primary-hover: #333333;
    --color-sale: #2E7D32;
    --color-sale-light: #e8f5e9;
    --color-text: #1A1A1A;
    --color-text-secondary: #666666;
    --color-text-light: #999999;
    --color-bg: #FFFFFF;
    --color-bg-gray: #F5F5F5;
    --color-bg-dark: #1A1A1A;
    --color-border: #E5E5E5;
    --color-border-light: #F0F0F0;
    --color-green: #2E7D32;
    --color-whatsapp: #25D366;
    --color-star: #FFD700;
    --color-footer-bg: #FFFFFF;
    --color-footer-border: #E5E5E5;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --header-height: 56px;
    --promo-height: 36px;
    --fab-bottom: 24px;
    --fab-right: 16px;
    --container-max: 1400px;
    --container-padding: 16px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; color: inherit; }
input { font-family: inherit; font-size: inherit; }

.page-wrapper {
    overflow-x: hidden;
    width: 100%;
}

.no-scroll { overflow: hidden !important; }

/* --- Utility --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-dark { background: var(--color-primary); color: #fff; }
.btn-dark:hover { background: var(--color-primary-hover); }
.btn-pill { border-radius: var(--radius-pill); }
.btn-full { width: 100%; }
.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-outline-dark:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ================================================
   PROMO STRIP
   ================================================ */
.promo-strip {
    background: linear-gradient(to right, #ffffff, #dce8f5);
    padding: 8px 16px;
    text-align: center;
    font-size: 12px;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
}
.promo-strip-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}
.promo-code {
    background: transparent;
    color: var(--color-text);
    padding: 2px 6px;
    border: 1px dashed var(--color-text);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 700;
    font-family: monospace;
}

/* ================================================
   HEADER
   ================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
    transition: box-shadow 0.2s;
}
.header.scrolled {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-spacer {
    height: var(--header-height);
}
.header-spacer.has-promo {
    height: calc(var(--header-height) + var(--promo-height));
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    position: relative;
}
.header-btn:hover { background: var(--color-bg-gray); }

.header-logo {
    display: flex;
    align-items: center;
}
.header-logo-img {
    height: 28px;
    width: auto;
}
.logo-text {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    color: var(--color-primary);
}
.mobile-nav-logo-img {
    height: 24px;
    width: auto;
}

.header-nav {
    display: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-search-btn,
.header-user-btn {
    display: none;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
}

/* ================================================
   MOBILE SEARCH BAR
   ================================================ */
.mobile-search-bar {
    padding: 8px var(--container-padding);
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border-light);
}
.mobile-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.mobile-search-input-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    font-size: 14px;
    color: var(--color-text);
    outline: none;
}
.mobile-search-input-wrapper input:focus { border-color: var(--color-text-light); }
.mobile-search-icon {
    position: absolute;
    right: 12px;
    color: var(--color-text-light);
    pointer-events: none;
}

/* ================================================
   MOBILE NAV
   ================================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: var(--color-bg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}
.mobile-nav-overlay.open .mobile-nav {
    transform: translateX(0);
}
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-light);
}
.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}
.mobile-nav-link {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border-light);
    transition: background 0.2s;
}
.mobile-nav-link:hover { background: var(--color-bg-gray); }

/* ================================================
   CART DRAWER
   ================================================ */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.cart-drawer-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    background: var(--color-bg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.cart-drawer-overlay.open .cart-drawer { transform: translateX(0); }

/* Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border-light);
}
.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-drawer-title svg { color: var(--color-text); flex-shrink: 0; }
.cart-drawer-header h3 { font-size: 18px; font-weight: 600; }
.cart-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--color-text);
}

/* Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px;
}
.cart-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-secondary);
    font-size: 14px;
}

/* Cart Item */
.cart-drawer-item {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}
.cart-drawer-item-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    background: var(--color-bg-gray);
    flex-shrink: 0;
}
.cart-drawer-item-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
}
.cart-drawer-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.cart-drawer-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.cart-drawer-item-info { flex: 1; min-width: 0; }
.cart-drawer-item-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.3;
}
.cart-drawer-item-color {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-top: 2px;
}
.cart-drawer-item-delete {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #DA1F00;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: opacity 0.2s;
}
.cart-drawer-item-delete:hover { opacity: 0.7; }

/* Item Bottom: Price + Qty */
.cart-drawer-item-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}
.cart-drawer-item-pricing { flex: 1; min-width: 0; }
.cart-drawer-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
}
.cart-drawer-item-installments {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-light);
    margin-top: 1px;
}

/* Qty Controls */
.cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}
.cart-qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s;
    line-height: 1;
}
.cart-qty-btn:first-child { border-radius: 4px 0 0 4px; }
.cart-qty-btn:last-child { border-radius: 0 4px 4px 0; }
.cart-qty-btn:hover { background: var(--color-bg-gray); }
.cart-qty-value {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    height: 32px;
    line-height: 32px;
}

/* Footer */
.cart-drawer-footer {
    padding: 0 20px 20px;
    border-top: none;
}

/* PIX Banner */
.cart-pix-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1A5C3A;
    padding: 10px 16px;
    border-radius: 0;
    margin: 0 -20px;
}
.cart-pix-banner svg { flex-shrink: 0; }
.cart-pix-banner span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Summary Rows */
.cart-summary {
    padding: 12px 0 4px;
}
.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
}
.cart-summary-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-secondary);
}
.cart-summary-values {
    text-align: right;
}
.cart-summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    display: block;
}
.cart-summary-sub {
    font-size: 11px;
    font-weight: 400;
    color: var(--color-text-light);
    display: block;
    margin-top: 2px;
}
.cart-summary-total {
    padding-top: 10px;
}
.cart-summary-total .cart-summary-label {
    font-weight: 700;
    color: var(--color-text);
}
.cart-summary-total .cart-summary-value {
    font-weight: 700;
    font-size: 15px;
}

/* Buttons */
.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}
.cart-btn-continue {
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    color: var(--color-text);
    cursor: pointer;
    text-align: center;
    padding: 10px;
    font-family: var(--font-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cart-btn-continue:hover { opacity: 0.7; }
.cart-btn-checkout {
    display: block;
    text-align: center;
    background: var(--color-primary);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-decoration: none;
    transition: background 0.2s;
}
.cart-btn-checkout:hover { background: var(--color-primary-hover); }

/* ================================================
   SEARCH OVERLAY
   ================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--color-bg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-header {
    padding: 16px var(--container-padding);
    border-bottom: 1px solid var(--color-border);
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.search-input-icon { flex-shrink: 0; color: var(--color-text-light); }
.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    background: transparent;
}
.search-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 40px;
    height: 40px;
    justify-content: center;
}
.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 20px var(--container-padding);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.search-empty-state,
.search-no-results {
    text-align: center;
    padding: 40px 0;
    color: var(--color-text-secondary);
}
.search-hint { font-size: 14px; margin-bottom: 24px; }
.search-categories-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.search-categories-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.search-category-link {
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    transition: all 0.2s;
}
.search-category-link:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.search-no-results svg { margin: 0 auto 12px; display: block; }
.search-no-results-hint { font-size: 13px; color: var(--color-text-light); }
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.search-result-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: transform 0.2s;
}
.search-result-card:hover { transform: translateY(-2px); }
.search-result-image {
    aspect-ratio: 1;
    background: var(--color-bg-gray);
    overflow: hidden;
}
.search-result-image img { width: 100%; height: 100%; object-fit: cover; }
.search-result-placeholder { width: 100%; height: 100%; background: var(--color-border-light); }
.search-result-info { padding: 8px 0; }
.search-result-category { font-size: 11px; color: var(--color-text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.search-result-name { font-size: 13px; font-weight: 600; margin: 4px 0; }
.search-result-old-price { font-size: 12px; color: var(--color-text-light); text-decoration: line-through; }
.search-result-price { font-size: 14px; font-weight: 700; }

/* ================================================
   HERO CAROUSEL
   ================================================ */
.hero-section {
    position: relative;
}
.hero-carousel {
    position: relative;
    overflow: hidden;
}
.hero-slides {
    position: relative;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/4;
}
.hero-slide:first-child { position: relative; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 500px;
}
.hero-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.9;
}
.hero-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 12px;
}
.hero-subtitle {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.5;
}
.hero-cta {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
}
.hero-cta:hover {
    background: #fff;
    color: var(--color-primary);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.5); }
.hero-arrow-prev { left: 12px; }
.hero-arrow-next { right: 12px; }

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: all 0.2s;
    border: none;
}
.hero-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 5px;
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
    background: var(--color-bg-dark);
    color: #fff;
    overflow: hidden;
}
.trust-bar-inner {
    overflow: hidden;
    width: 100%;
}
.trust-bar-track {
    display: flex;
    width: max-content;
    animation: trustMarquee 25s linear infinite;
}
@keyframes trustMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    min-width: max-content;
    border-right: 1px solid rgba(255,255,255,0.15);
    font-size: 12px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    opacity: 0.8;
}
.trust-text { white-space: nowrap; }
.trust-text strong { display: block; font-weight: 700; font-size: 13px; }
.trust-text span { opacity: 0.7; font-size: 11px; }

/* ================================================
   CATEGORY GRID
   ================================================ */
.categories-section {
    padding: 32px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}
.categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.categories-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.categories-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cat-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text);
    transition: all 0.2s;
}
.cat-arrow:hover { background: var(--color-bg-gray); }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.category-card {
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.category-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}
.category-card-overlay {
    padding: 16px;
    width: 100%;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.5) 100%);
    color: #fff;
    position: relative;
    z-index: 1;
}
.category-card-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}
.category-card-title {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ================================================
   PRODUCT CARDS & CAROUSELS
   ================================================ */
.product-section {
    padding: 32px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}
.product-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.product-section-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.product-section-arrows {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.carousel-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text);
    transition: all 0.2s;
}
.carousel-arrow:hover { background: var(--color-bg-gray); }

.product-carousel {
    overflow: hidden;
}
.product-carousel-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}
.product-carousel-track::-webkit-scrollbar { display: none; }

.product-card {
    flex-shrink: 0;
    width: calc(50% - 8px);
    scroll-snap-align: start;
}
.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-bg-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
}
.product-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-border-light);
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-card-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--color-sale);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}
.product-card-special-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    background: var(--color-bg);
    color: var(--color-sale);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.product-card-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: color 0.2s;
}
.product-card-heart:hover { color: #e53935; }

.product-card-info {
    padding: 0 4px;
}

/* Color pills */
.product-card-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}
.color-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 11px;
    color: var(--color-text-secondary);
    white-space: nowrap;
}
.color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.color-pill-more {
    border-color: transparent;
    padding-left: 4px;
    color: var(--color-text-light);
    font-size: 11px;
}

/* Badges */
.badge-launch-outline {
    display: inline-block;
    padding: 4px 10px;
    background: var(--color-primary);
    color: var(--color-bg);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-card-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 2px;
}
.price-compare {
    font-size: 12px;
    color: var(--color-text-light);
    text-decoration: line-through;
}
.price-current {
    font-size: 16px;
    font-weight: 800;
}
.price-discount-badge {
    background: var(--color-sale);
    color: #fff;
    padding: 1px 6px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

.product-card-pix {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
}
.product-card-installments {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
}

/* ================================================
   REVIEWS SECTION
   ================================================ */
.reviews-section {
    position: relative;
    padding: 48px var(--container-padding);
    overflow: hidden;
    color: #fff;
}
.reviews-bg {
    position: absolute;
    inset: 0;
    background: #1a1a1a;
    z-index: 0;
}
.reviews-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
}
.reviews-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.5);
}
.reviews-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.reviews-header { margin-bottom: 24px; }
.reviews-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}
.reviews-subtitle {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 16px;
}
.logo-text-white { color: #fff; }
.reviews-logo { margin-bottom: 24px; }
.reviews-logo .logo-text { font-size: 48px; }
.reviews-logo-img {
    height: 40px;
    width: auto;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.reviews-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
}
.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
    flex-shrink: 0;
    width: 85%;
    max-width: 400px;
    scroll-snap-align: center;
    background: rgba(255,255,255,0.95);
    color: var(--color-text);
    border-radius: var(--radius-md);
    padding: 24px;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
.review-quote-mark {
    font-size: 36px;
    font-family: Georgia, serif;
    color: var(--color-text-light);
    line-height: 1;
    display: block;
}
.review-quote-mark-end {
    text-align: right;
}
.review-text {
    font-size: 14px;
    line-height: 1.6;
    margin: 8px 0 12px;
    color: var(--color-text-secondary);
}
.review-author {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.review-date {
    display: block;
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}
.review-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.reviews-footer {
    margin-top: 20px;
}
.reclame-aqui-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.9;
}
.reviews-footnote {
    font-size: 11px;
    opacity: 0.5;
    margin-top: 16px;
}

/* ================================================
   BLOG SECTION
   ================================================ */
.blog-section {
    padding: 48px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}
.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.blog-card {
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 16px;
}
.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.blog-card-title svg {
    flex-shrink: 0;
    margin-top: 3px;
}
.blog-card-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-cta {
    text-align: center;
    margin-top: 24px;
}

/* ================================================
   CORPORATE CTA
   ================================================ */
.corporate-section {
    background: var(--color-bg-gray);
    padding: 48px var(--container-padding);
}
.corporate-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}
.corporate-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}
.corporate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.corporate-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}
.corporate-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.corporate-btn {
    margin-bottom: 28px;
}
.corporate-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
}
.benefit-text {
    font-size: 11px;
    color: var(--color-text-secondary);
    line-height: 1.3;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: 48px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-left { text-align: center; }
.faq-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}
.faq-support-text {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}
.faq-contact-link {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    gap: 16px;
    cursor: pointer;
}
.faq-toggle {
    font-size: 20px;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--color-text-secondary);
    transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding-bottom: 16px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ================================================
   INSTAGRAM SECTION
   ================================================ */
.instagram-section {
    padding: 48px var(--container-padding);
    text-align: center;
    max-width: var(--container-max);
    margin: 0 auto;
}
.instagram-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.instagram-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
}
.instagram-handles {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--color-text-secondary);
}
.instagram-sep { color: var(--color-border); }
.instagram-handle {
    color: var(--color-text);
    text-decoration: underline;
    font-weight: 500;
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.instagram-item {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s;
}
.instagram-item:hover img {
    transform: scale(1.05);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--color-footer-bg);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}
.footer-top {
    padding: 32px var(--container-padding) 0;
    max-width: var(--container-max);
    margin: 0 auto;
}
.footer-logo-col { display: none; }
.footer-logo-icon {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 80px;
    color: var(--color-text);
    line-height: 1;
}

.footer-section {
    border-bottom: 1px solid var(--color-border);
}
.footer-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-chevron {
    transition: transform 0.2s;
}
.footer-section.open .footer-chevron {
    transform: rotate(180deg);
}
.footer-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-section.open .footer-section-content {
    max-height: 500px;
    padding-bottom: 16px;
}
.footer-section-content a {
    font-size: 14px;
    color: var(--color-text-secondary);
    transition: color 0.2s;
    padding: 2px 0;
}
.footer-section-content a:hover { color: var(--color-text); }

/* Contact items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 4px 0;
}
.contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-text-light); }
.contact-item div { display: flex; flex-direction: column; gap: 0; }
.contact-item strong { color: var(--color-text); font-weight: 600; }

/* Footer Bottom */
.footer-bottom {
    padding: 24px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Newsletter */
.footer-newsletter { margin-bottom: 24px; }
.footer-newsletter-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.footer-newsletter-form {
    display: flex;
    gap: 0;
}
.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-right: none;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    font-size: 14px;
    outline: none;
    background: var(--color-bg);
}
.newsletter-input:focus { border-color: var(--color-text-light); }
.newsletter-btn {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-left: none;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--color-bg-gray); }

/* Social */
.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--color-text);
    transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.7; }

/* Security & Certifications */
.footer-section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--color-text);
}
.footer-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    align-items: center;
}
.security-badge,
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.cert-badge-ra {
    flex-direction: column;
    padding: 8px 12px;
    gap: 0;
}
.cert-badge-ra strong { font-size: 13px; color: #F5A623; }
.cert-badge-ra span { font-size: 10px; }

/* SVG Security Badges */
.security-badge svg {
    flex-shrink: 0;
}
/* Certification badge boxes */
.cert-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.cert-badge-box .cert-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
/* Reclame AQUI badge */
.ra-badge-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ra-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ra-score {
    font-size: 18px;
    font-weight: 800;
    color: #2E7D32;
    line-height: 1;
}
.ra-stars {
    display: flex;
    gap: 1px;
}
.ra-badge-text {
    font-size: 11px;
    line-height: 1.2;
}
.ra-badge-text strong {
    color: #F5A623;
}
/* Payment card SVG badges */
.payment-badge svg {
    display: block;
}
/* Footer logo img */
.footer-logo-img {
    height: 60px;
    width: auto;
    opacity: 0.3;
}

/* Legal & Payment */
.footer-legal {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}
.footer-copyright {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.footer-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}
.payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
}

/* ================================================
   FABS
   ================================================ */
.fab-container {
    position: fixed;
    bottom: var(--fab-bottom);
    right: var(--fab-right);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: var(--color-whatsapp); }

/* ================================================
   PRODUCT PAGE (.prod-*)
   ================================================ */

/* Breadcrumb */
.prod-breadcrumb { padding: 12px var(--container-padding); }
.prod-breadcrumb .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.prod-breadcrumb a { color: var(--color-text-secondary); text-decoration: none; }
.prod-breadcrumb a:hover { color: var(--color-text); }
.prod-breadcrumb-sep { color: var(--color-text-light); display: flex; align-items: center; }
.prod-breadcrumb-current { color: var(--color-text-secondary); }

/* Product Top */
.prod-top { padding: 0 var(--container-padding); }

/* Gallery */
.prod-gallery { position: relative; margin-bottom: 16px; }
.prod-gallery-thumbs { display: none; }
.prod-gallery-viewport {
    position: relative;
    background: var(--color-bg-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.prod-gallery-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.prod-gallery-track::-webkit-scrollbar { display: none; }
.prod-gallery-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.prod-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
}
.prod-gallery-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}
.prod-gallery-heart {
    position: absolute;
    top: 12px;
    right: 60px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}
.prod-gallery-heart:hover { background: #fff; }
.prod-gallery-heart svg { color: var(--color-text); }
.prod-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    opacity: 0.7;
}
.prod-gallery-arrow:hover { background: #fff; opacity: 1; }
.prod-gallery-arrow-prev { left: 8px; }
.prod-gallery-arrow-next { right: 8px; }
.prod-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 0;
}
.prod-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}
.prod-gallery-dot.active { background: var(--color-primary); }
.prod-gallery-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #e8e8e8 100%);
    border-radius: 4px;
}

/* Product Details */
.prod-details { padding: 8px 0 24px; }

/* Badges */
.prod-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.prod-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.prod-badge-green { background: var(--color-sale); color: #fff; }
.prod-badge-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

/* Title */
.prod-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--color-text);
}
.prod-subtitle {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
}

/* Rating */
.prod-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    font-size: 13px;
}
.prod-rating-stars { display: flex; gap: 2px; }
.prod-rating-count { color: var(--color-text-light); }
.prod-rating-link { color: #E65100; font-weight: 600; text-decoration: none; }
.prod-rating-link:hover { text-decoration: underline; }

/* Price */
.prod-price { margin-bottom: 24px; }
.prod-price-old {
    font-size: 14px;
    color: var(--color-text-light);
    text-decoration: line-through;
    display: block;
    margin-bottom: 2px;
}
.prod-price-current {
    font-size: 28px;
    font-weight: 800;
    display: block;
    margin-bottom: 2px;
    color: var(--color-text);
}
.prod-price-pix {
    font-size: 13px;
    color: var(--color-text-secondary);
    display: block;
}
.prod-price-installments {
    font-size: 13px;
    color: var(--color-text-secondary);
    display: block;
}

/* Color Pills */
.prod-colors { margin-bottom: 20px; }
.prod-colors-label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
    color: var(--color-text);
}
.prod-color-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.prod-color-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s;
    color: var(--color-text);
    font-family: var(--font-primary);
}
.prod-color-pill:hover { border-color: var(--color-text-secondary); }
.prod-color-pill.active { border-color: var(--color-primary); border-width: 2px; padding: 7px 15px; }
.prod-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Stock Urgency */
.prod-urgency {
    color: #E65100;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Certifications */
.prod-certs-section { margin-bottom: 20px; }
.prod-certs-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    display: block;
    margin-bottom: 10px;
}
.prod-certs { display: flex; gap: 10px; }
.prod-cert {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}
.prod-cert strong { font-size: 10px; font-weight: 800; color: var(--color-text); }
.prod-cert small { font-size: 7px; font-weight: 600; color: var(--color-text-secondary); text-align: center; line-height: 1.1; }
.prod-cert svg { color: var(--color-text-secondary); }

/* Add to Cart */
.prod-add-cart {
    width: 100%;
    padding: 18px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-primary);
}
.prod-add-cart:hover { background: var(--color-primary-hover); }

/* Similar Products */
.prod-similar {
    margin-top: 40px;
    padding: 0 var(--container-padding);
}

/* Tabs Section */
.prod-tabs-section {
    margin-top: 40px;
    padding: 0 var(--container-padding);
}
.prod-tabs-bar {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: calc(var(--promo-height) + var(--header-height));
    z-index: 10;
    background: var(--color-bg);
}
.prod-tabs-bar::-webkit-scrollbar { display: none; }
.prod-tab {
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    background: transparent;
    white-space: nowrap;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-primary);
}
.prod-tab:hover { color: var(--color-text); }
.prod-tab.active {
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-pill);
    border-bottom-color: transparent;
    margin: 4px 4px;
    padding: 10px 20px;
}

/* Tab Panels */
.prod-tab-panel { display: none; padding: 24px 0; }
.prod-tab-panel.active { display: block; }

/* Description */
.prod-desc-prose {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
}
.prod-desc-chars { margin-bottom: 24px; }
.prod-desc-chars h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}
.prod-desc-chars ul {
    list-style: disc;
    padding-left: 20px;
}
.prod-desc-chars li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--color-text-secondary);
}
.prod-desc-note {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-top: 24px;
}

/* Specifications Table */
.prod-specs-table { width: 100%; border-collapse: collapse; }
.prod-specs-table tr.even { background: var(--color-bg-gray); }
.prod-specs-table td {
    padding: 14px 16px;
    font-size: 13px;
    vertical-align: top;
    border-bottom: 1px solid var(--color-border-light);
}
.prod-specs-label {
    font-weight: 600;
    color: var(--color-text);
    width: 40%;
}
.prod-specs-value { color: var(--color-text-secondary); }

/* Dimensional Tab */
.prod-dim-header { margin-bottom: 24px; }
.prod-dim-model-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 1px;
}
.prod-dim-series {
    font-size: 14px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.prod-dim-bars { display: flex; flex-direction: column; gap: 16px; }
.prod-dim-bar { display: flex; align-items: flex-start; gap: 12px; }
.prod-dim-bar-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 50px;
    color: var(--color-text);
}
.prod-dim-bar-icon span { font-size: 11px; font-weight: 600; }
.prod-dim-bar-track {
    flex: 1;
    background: var(--color-bg-gray);
    border-radius: var(--radius-pill);
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.prod-dim-bar-rows { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.prod-dim-bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 70%;
    background: var(--color-primary);
    border-radius: var(--radius-pill);
}
.prod-dim-bar-fill-secondary {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 85%;
    background: var(--color-text-secondary);
    border-radius: var(--radius-pill);
}
.prod-dim-bar-track-secondary { opacity: 0.6; }
.prod-dim-bar-label {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    padding-left: 12px;
}
.prod-dim-bar-value {
    position: relative;
    z-index: 1;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text);
    margin-left: auto;
    padding-right: 12px;
}

/* Reviews Section */
.prod-reviews {
    margin-top: 48px;
    padding: 40px var(--container-padding);
    border-top: 1px solid var(--color-border);
}
.prod-reviews-heading {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--color-text);
    font-style: italic;
}
.prod-reviews-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.prod-reviews-awaiting {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}
.prod-reviews-store {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}
.prod-reviews-score { margin-bottom: 8px; }
.prod-reviews-big {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-text);
}
.prod-reviews-of {
    font-size: 18px;
    color: var(--color-text-secondary);
    font-weight: 400;
}
.prod-reviews-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 20px;
}
.prod-reviews-count {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-left: 6px;
}
.prod-reviews-bars { margin-bottom: 16px; }
.prod-reviews-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.prod-reviews-bar-row > span {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: var(--color-text-secondary);
    min-width: 30px;
}
.prod-reviews-bar-track {
    flex: 1;
    height: 8px;
    background: var(--color-bg-gray);
    border-radius: 4px;
    overflow: hidden;
}
.prod-reviews-bar-fill {
    height: 100%;
    background: #E8A100;
    border-radius: 4px;
}
.prod-reviews-note {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 12px;
}
.prod-reviews-ra {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-secondary);
}

/* Sticky Bar */
.prod-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: #fff;
    padding: 12px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.prod-sticky.visible { transform: translateY(0); }
.prod-sticky-info { display: flex; flex-direction: column; }
.prod-sticky-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text);
}
.prod-sticky-pix {
    font-size: 11px;
    color: var(--color-text-secondary);
}
.prod-sticky-btn {
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.2s;
}
.prod-sticky-btn:hover { background: var(--color-primary-hover); }
.prod-sticky-thumb { display: none; }
.prod-sticky-name { display: none; }
.prod-sticky-installments { display: none; }


/* ================================================
   CATEGORY PAGE
   ================================================ */

/* Hero Banner */
.cat-hero {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #E8E6F0;
}
.cat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cat-hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E8E6F0 0%, #D5D1E8 50%, #C8C3DB 100%);
}
.cat-hero-overlay {
    position: absolute;
    bottom: 20%;
    left: 0;
    padding: 0 var(--container-padding);
    width: 100%;
}
.cat-hero-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Breadcrumb */
.cat-breadcrumb {
    padding: 12px var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cat-breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
}
.cat-breadcrumb a:hover {
    text-decoration: underline;
}
.cat-breadcrumb-sep {
    color: var(--color-text-light);
    font-size: 10px;
}
.cat-breadcrumb-current {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: underline;
}

/* Filter Controls (Mobile) */
.cat-controls {
    padding: 8px var(--container-padding) 16px;
    max-width: var(--container-max);
    margin: 0 auto;
}
.cat-filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.cat-filter-btn,
.cat-sort-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    background: var(--color-bg);
    color: var(--color-text);
    transition: background 0.2s;
}
.cat-filter-btn:hover,
.cat-sort-btn:hover {
    background: var(--color-bg-gray);
}
.cat-results-count {
    font-size: 13px;
    color: var(--color-text-secondary);
}
.cat-results-count strong {
    color: var(--color-text);
}

/* Desktop Header (hidden mobile) */
.cat-desktop-header {
    display: none;
}

/* Layout */
.cat-layout {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding) 48px;
}
.cat-sidebar {
    display: none;
}

/* Product Grid */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.cat-grid .product-card {
    width: 100%;
    flex-shrink: unset;
}

/* Sidebar - Category Links */
.cat-filter-categories {
    margin-bottom: 8px;
    padding-bottom: 8px;
}
.cat-filter-categories-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin-bottom: 12px;
}
.cat-filter-categories a {
    display: block;
    padding: 5px 0;
    font-size: 14px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}
.cat-filter-categories a:hover {
    text-decoration: underline;
}

/* Sidebar - Filter Sections */
.cat-filter-section {
    border-top: 1px solid var(--color-border);
    padding: 16px 0 0;
}
.cat-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 16px;
    user-select: none;
}
.cat-filter-header span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
}
.cat-filter-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--color-text);
}
.cat-filter-section.open .cat-filter-chevron {
    transform: rotate(180deg);
}
.cat-filter-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.cat-filter-section.open .cat-filter-body {
    max-height: 600px;
}
.cat-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--color-text);
    cursor: pointer;
}
.cat-filter-checkbox {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--color-text-light);
    border-radius: 3px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background: var(--color-bg);
    transition: border-color 0.2s;
}
.cat-filter-checkbox:hover {
    border-color: var(--color-text);
}
.cat-filter-checkbox:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

/* Sidebar Title */
.cat-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 24px;
}

/* Filter Modal (Mobile) */
.cat-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
}
.cat-filter-overlay.active {
    display: block;
}
.cat-filter-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 201;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.cat-filter-modal.active {
    display: block;
}
.cat-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--container-padding);
    border-bottom: 1px solid var(--color-border);
}
.cat-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--color-text);
    background: none;
    border: none;
}
.cat-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
}
.cat-modal-body {
    padding: 16px var(--container-padding) 32px;
}
.cat-modal-categories {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 16px;
    margin-bottom: 0;
}

/* Desktop sort button variant */
.cat-sort-btn-desktop {
    flex: none;
    padding: 8px 20px;
    font-size: 13px;
}


/* ================================================
   DESKTOP RESPONSIVE (768px+)
   ================================================ */
@media (min-width: 768px) {
    :root { --container-padding: 24px; }

    .search-results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-slide { aspect-ratio: 16/9; }

    .product-card { width: calc(33.333% - 11px); }

    .blog-grid {
        flex-direction: row;
        gap: 20px;
    }
    .blog-card { flex: 1; }

    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Category page 768px */
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ================================================
   DESKTOP RESPONSIVE (1024px+)
   ================================================ */
@media (min-width: 1024px) {
    :root {
        --container-padding: 40px;
        --header-height: 60px;
    }

    /* Header desktop */
    .header-left { display: none; }
    .header-search-btn,
    .header-user-btn { display: flex; }
    .header-logo { margin-right: auto; }
    .header-nav {
        display: flex;
        align-items: center;
        gap: 20px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .header-nav a {
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        white-space: nowrap;
        color: var(--color-text);
        transition: color 0.2s;
    }
    .header-nav a:hover { color: var(--color-text-secondary); }
    .header-container { position: relative; }

    /* Hide mobile search bar on desktop */
    .mobile-search-bar { display: none; }

    /* Hero desktop - images are 1920x600 (~3.2:1) */
    .hero-slide { aspect-ratio: 16/5; }
    .hero-title { font-size: 72px; }
    .hero-subtitle { font-size: 16px; max-width: 400px; margin-left: auto; margin-right: auto; }
    .hero-arrow { width: 48px; height: 48px; }
    .hero-arrow-prev { left: 24px; }
    .hero-arrow-next { right: 24px; }

    /* Trust bar - marquee roda em todas as telas */

    /* Categories */
    .categories-title { font-size: 18px; }
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
    .categories-arrows { display: none; }
    .category-card-title { font-size: 28px; }

    /* Product cards */
    .product-section-title { font-size: 22px; }
    .product-card { width: calc(20% - 13px); }
    .product-card-name { font-size: 12px; }
    .price-current { font-size: 16px; }

    /* Reviews */
    .reviews-section { padding: 64px 40px; }
    .reviews-title { font-size: 32px; }
    .review-card { width: 100%; max-width: 500px; }

    /* Blog */
    .blog-title { font-size: 26px; }
    .blog-card-title { font-size: 18px; }

    /* Corporate CTA - side by side */
    .corporate-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
    .corporate-image {
        margin-bottom: 0;
        aspect-ratio: auto;
        height: 100%;
        min-height: 350px;
    }

    /* Header logo desktop */
    .header-logo-img { height: 32px; }
    .corporate-title { font-size: 28px; }

    /* FAQ - two column */
    .faq-container {
        flex-direction: row;
        gap: 48px;
        align-items: flex-start;
    }
    .faq-left {
        flex: 0 0 35%;
        text-align: left;
        position: sticky;
        top: 100px;
    }
    .faq-right { flex: 1; }
    .faq-title { font-size: 28px; }

    /* Footer desktop */
    .footer-top {
        display: flex;
        gap: 48px;
        padding: 48px 40px 32px;
    }
    .footer-logo-col { display: block; flex-shrink: 0; }
    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        flex: 1;
    }
    .footer-section { border-bottom: none; }
    .footer-section-toggle {
        cursor: default;
        padding: 0 0 12px 0;
    }
    .footer-chevron { display: none; }
    .footer-section-content {
        max-height: none;
        padding-bottom: 0;
    }

    /* Footer bottom */
    .footer-bottom { padding: 24px 40px; }
    .footer-legal {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .footer-copyright { margin-bottom: 0; }

    /* Search */
    .search-results-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* ---- Product Page Desktop ---- */
    .prod-breadcrumb .container {
        max-width: var(--container-max);
        margin: 0 auto;
    }

    .prod-top {
        display: grid;
        grid-template-columns: 55% 45%;
        gap: 0 40px;
        max-width: var(--container-max);
        margin: 0 auto;
        padding: 0 var(--container-padding);
    }

    .prod-gallery {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    .prod-gallery-thumbs {
        display: flex;
        flex-direction: column;
        gap: 8px;
        order: -1;
        max-height: 500px;
        overflow-y: auto;
    }
    .prod-gallery-thumb {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    .prod-gallery-viewport {
        aspect-ratio: 1/1;
        border-radius: var(--radius-md);
    }
    .prod-gallery-dots { display: none; }
    .prod-gallery-counter { display: none; }
    .prod-gallery-arrow { display: flex; }
    .prod-gallery-track {
        scroll-snap-type: none;
    }
    .prod-gallery-slide {
        min-width: 100%;
    }

    .prod-details {
        position: sticky;
        top: calc(var(--header-height) + 50px);
        align-self: start;
        padding: 0;
    }
    .prod-title { font-size: 28px; }
    .prod-price-current { font-size: 32px; }
    .prod-price-old { font-size: 16px; }

    .prod-similar {
        max-width: var(--container-max);
        margin-left: auto;
        margin-right: auto;
    }

    .prod-tabs-section {
        max-width: var(--container-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
    .prod-tabs-bar {
        position: static;
        justify-content: flex-start;
        gap: 32px;
        border-bottom: 1px solid var(--color-border);
        background: transparent;
        padding: 0;
    }
    .prod-tab {
        padding: 12px 0;
        font-size: 14px;
    }
    .prod-tab.active {
        border-bottom-color: var(--color-primary);
    }
    .prod-specs-table {
        max-width: 700px;
    }
    .prod-dim-bars {
        max-width: 600px;
    }

    .prod-reviews {
        max-width: var(--container-max);
        margin-left: auto;
        margin-right: auto;
    }
    .prod-reviews-card {
        max-width: 600px;
    }
    .prod-reviews-heading {
        font-size: 26px;
    }

    .prod-sticky {
        padding: 12px 40px;
        justify-content: center;
        gap: 24px;
    }
    .prod-sticky-thumb {
        display: block;
        width: 48px;
        height: 48px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        flex-shrink: 0;
    }
    .prod-sticky-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .prod-sticky-name {
        display: block;
        font-size: 14px;
        font-weight: 600;
        color: var(--color-text);
        max-width: 200px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .prod-sticky-info {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    .prod-sticky-installments {
        display: block;
        font-size: 12px;
        color: var(--color-text-secondary);
    }

    /* ---- Category Page Desktop ---- */
    .cat-hero {
        aspect-ratio: 4/1;
    }
    .cat-hero-title {
        font-size: 56px;
        letter-spacing: 2px;
    }
    .cat-hero-overlay {
        padding: 0;
        padding-left: max(var(--container-padding), calc((100% - var(--container-max)) / 2 + var(--container-padding)));
        bottom: 15%;
    }

    .cat-breadcrumb {
        padding: 16px var(--container-padding);
    }

    /* Hide mobile controls on desktop */
    .cat-controls {
        display: none;
    }

    /* Desktop header bar */
    .cat-desktop-header {
        grid-column: 1 / -1;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 0 20px;
    }
    .cat-desktop-header-left {
        flex-shrink: 0;
        width: 230px;
    }
    .cat-desktop-header-right {
        display: flex;
        align-items: center;
        gap: 20px;
        flex: 1;
        justify-content: flex-end;
        padding-left: 40px;
    }

    /* Layout: sidebar + grid */
    .cat-layout {
        display: grid;
        grid-template-columns: 230px 1fr;
        gap: 40px;
    }
    .cat-sidebar {
        display: block;
        position: sticky;
        top: calc(var(--promo-height) + var(--header-height) + 20px);
        align-self: start;
        max-height: calc(100vh - var(--header-height) - var(--promo-height) - 40px);
        overflow-y: auto;
        scrollbar-width: thin;
    }
    .cat-sidebar::-webkit-scrollbar {
        width: 4px;
    }
    .cat-sidebar::-webkit-scrollbar-thumb {
        background: var(--color-border);
        border-radius: 4px;
    }

    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Desktop filter sections start open */
    .cat-sidebar .cat-filter-section.open .cat-filter-body {
        max-height: none;
        overflow: visible;
    }

    /* Cart drawer desktop */
    .cart-drawer { width: 420px; max-width: 420px; }
    .cart-buttons {
        flex-direction: row;
        gap: 12px;
    }
    .cart-btn-continue {
        flex: 1;
        font-style: normal;
        text-decoration: none;
        border: 1.5px solid var(--color-primary);
        border-radius: var(--radius-sm);
        padding: 12px 16px;
        font-weight: 600;
    }
    .cart-btn-continue:hover { background: var(--color-bg-gray); opacity: 1; }
    .cart-btn-checkout {
        flex: 1;
        border-radius: var(--radius-sm);
        padding: 12px 16px;
    }
}

/* ================================================
   LARGE DESKTOP (1200px+)
   ================================================ */
@media (min-width: 1200px) {
    .hero-title { font-size: 80px; }
    .hero-content { max-width: 600px; }
    .product-section-title { font-size: 24px; }
    .blog-title { font-size: 28px; }

    /* Category page 1200px */
    .cat-hero-title { font-size: 64px; }
}

/* ================================================
   ULTRA-WIDE (1440px+)
   ================================================ */
@media (min-width: 1440px) {
    .hero-slide { max-height: 600px; }
}

/* ================================================
   SUCCESS PAGE
   ================================================ */
.success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    min-height: 50vh;
}

.success-icon {
    margin-bottom: 24px;
}

.success-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 12px;
}

.success-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    max-width: 400px;
    line-height: 1.5;
}

.success-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-text);
    color: #fff;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-primary);
    transition: opacity 0.2s;
}

.success-btn:hover {
    opacity: 0.85;
}

/* ================================================
   CONTENT PAGES (.cp-)
   ================================================ */
.cp-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.cp-breadcrumb {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.cp-breadcrumb a {
    color: var(--color-text-secondary);
    text-decoration: none;
}

.cp-breadcrumb a:hover {
    color: var(--color-text);
}

.cp-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 32px;
    line-height: 1.3;
}

.cp-section {
    margin-bottom: 28px;
}

.cp-heading {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.cp-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.cp-text p {
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .cp-page {
        padding: 60px 20px 80px;
    }
    .cp-title {
        font-size: 32px;
    }
}
