/* ============================================================
   FRAN by Franciny Ehlke - CSS Principal
   Design: Moderno, clean, luxo acessivel
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #000000;
    --color-secondary: #E91E63;
    --color-accent: #FF4081;
    --color-bg: #FFFFFF;
    --color-bg-alt: #FAFAFA;
    --color-bg-warm: #FFF5F5;
    --color-text: #1A1A1A;
    --color-text-light: #666666;
    --color-text-muted: #999999;
    --color-border: #E5E5E5;
    --color-border-light: #F0F0F0;
    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-error: #F44336;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1280px;
    --header-height: 70px;
}

/* Skip to content (accessibility) */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 4px;
    font-size: 0.85rem;
    text-decoration: none;
}
.skip-to-content:focus {
    top: 8px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Sections - prevent children with negative margins from overflowing */
.section,
main {
    overflow: hidden;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-light);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.header-logo img {
    height: 40px;
    width: auto;
}

.header-logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-action-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text);
    transition: var(--transition);
}

.header-action-btn:hover {
    color: var(--color-secondary);
}

.header-search-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text);
    transition: var(--transition);
}

.header-search-btn:hover {
    color: var(--color-secondary);
}

.header-action-btn svg,
.header-search-btn svg {
    width: 22px;
    height: 22px;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-secondary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    margin: 5px 0;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO / BANNER (see also HERO WITH VIDEO section below)
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-secondary);
    color: white;
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
}

.btn-outline:hover {
    background: var(--color-text);
    color: white;
}

.btn-white {
    background: white;
    color: var(--color-text);
}

.btn-white:hover {
    background: var(--color-bg-alt);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--color-text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--color-border-light);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-bg-alt);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-secondary);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.product-quick-btn:hover {
    background: var(--color-secondary);
    color: white;
}

.product-card-info {
    padding: 16px;
}

.product-card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.product-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
}

.price-original {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    background: var(--color-bg-warm);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* ============================================================
   CATEGORIES BAR
   ============================================================ */
.categories-bar {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
}

.categories-bar::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex-shrink: 0;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition);
    cursor: pointer;
    background: white;
}

.category-pill:hover,
.category-pill.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page {
    margin-top: calc(var(--header-height) + 52px);
    padding-bottom: 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.product-gallery-main {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-bg-alt);
    margin-bottom: 12px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.product-gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--color-secondary);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-info .product-sku {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.product-price-block {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.product-price-block .price-current {
    font-size: 2rem;
}

.product-price-block .price-original {
    font-size: 1rem;
}

.product-price-block .pix-price {
    display: block;
    margin-top: 4px;
    font-size: 0.9rem;
    color: var(--color-success);
    font-weight: 600;
}

.product-description {
    margin-bottom: 24px;
    color: var(--color-text-light);
    line-height: 1.8;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.qty-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--color-bg-alt);
}

.qty-input {
    width: 60px;
    flex-shrink: 0;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.add-to-cart-btn {
    display: block;
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.product-benefits-wrapper {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.product-benefits div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-benefits svg {
    flex-shrink: 0;
    vertical-align: middle;
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: white;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border-light);
    flex-shrink: 0;
}

.cart-drawer-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--color-text-light);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border-light);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-bg-alt);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-controls button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    background: white;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none !important;
    cursor: pointer;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    width: auto !important;
    height: auto !important;
    line-height: 1;
    padding: 2px 6px;
    margin-left: auto;
}

.cart-item-remove:hover {
    color: var(--color-error);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.cart-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border-light);
    flex-shrink: 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.cart-checkout-btn:hover {
    background: var(--color-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.5);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE (consolidated)
   ============================================================ */

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-secondary); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.hidden { display: none !important; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success { background: var(--color-success); }
.toast.error { background: var(--color-error); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.announcement-bar + .header {
    top: 32px;
}

.announcement-bar ~ main,
.announcement-bar ~ .hero {
    margin-top: calc(var(--header-height) + 32px);
}

/* ============================================================
   HERO WITH VIDEO
   ============================================================ */
/* Desktop: show video hero, hide product hero */
.hero-product { display: none; }
.hero-desktop { display: flex; }

/* Mobile nav extras hidden on desktop */
.mobile-nav-extras { display: none; }

.hero {
    margin-top: calc(var(--header-height) + 32px);
    position: relative;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background: #000;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 0 60px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.8;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 1.125rem;
    opacity: 0.85;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--color-bg-alt);
    border-bottom: 1px solid var(--color-border-light);
    padding: 20px 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item img,
.trust-item svg {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}

.trust-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ============================================================
   CATEGORIES GRID
   ============================================================ */
.categories-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: none;
}

.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    min-width: 120px;
}

.category-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.category-card span {
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
}

.promo-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%);
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}

.promo-banner-alt .promo-banner-bg::after {
    background: linear-gradient(270deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%);
}

.promo-banner-alt .promo-banner-content {
    text-align: right;
}

.promo-badge {
    display: inline-block;
    background: var(--color-secondary);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.promo-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.promo-banner-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 400px;
}

.promo-banner-alt .promo-banner-content p {
    margin-left: auto;
}

/* ============================================================
   BRAND VALUES
   ============================================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition);
}

.value-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-card img {
    display: inline-block;
    margin-bottom: 16px;
    opacity: 0.7;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--color-bg-warm);
    padding: 60px 0;
}

.newsletter-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--color-secondary);
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-nav-overlay.open {
    display: block;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb a:hover {
    color: var(--color-secondary);
}

.breadcrumb span {
    color: var(--color-text-light);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a {
    border: 1px solid var(--color-border);
    background: white;
}

.pagination a:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.pagination span.current {
    background: var(--color-primary);
    color: white;
}

/* ============================================================
   HERO PRODUCT BANNER (product-focused hero)
   ============================================================ */
.hero-product {
    margin-top: calc(var(--header-height) + 32px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8bbd0 0%, #f48fb1 40%, #ec407a 100%);
    overflow: hidden;
    padding: 60px 40px;
    min-height: 450px;
}

.hero-product .hero-product-text {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.hero-product .hero-product-text h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-product .hero-product-text p {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.hero-product .hero-product-text .btn {
    background: #000;
    color: #fff;
    padding: 14px 36px;
    font-size: 0.85rem;
}

.hero-product .hero-product-text .btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.hero-product .hero-product-img {
    flex: 0 0 auto;
    width: 350px;
    max-width: 40%;
    z-index: 2;
}

.hero-product .hero-product-img img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* ============================================================
   SECTION HEADER ROW (title + "VER TODOS" link)
   ============================================================ */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.section-header-row h2 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.section-header-row .ver-todos {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
    transition: color var(--transition);
}

.section-header-row .ver-todos:hover {
    color: var(--color-secondary);
}

/* ============================================================
   PRODUCT CAROUSEL (horizontal scroll)
   ============================================================ */
.product-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ============================================================
   CATEGORIES GRID WITH IMAGES
   ============================================================ */
.categories-grid-img {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-card-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform var(--transition);
}

.category-card-img:hover {
    transform: translateY(-4px);
}

.category-card-img .cat-img-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-border-light);
    background: var(--color-bg-alt);
    transition: border-color var(--transition);
}

.category-card-img:hover .cat-img-circle {
    border-color: var(--color-secondary);
}

.category-card-img .cat-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-img span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--color-text);
}

/* ============================================================
   DARK FEATURED SECTION
   ============================================================ */
.section-dark {
    background: #000;
    color: #fff;
    padding: 60px 0;
}

.section-dark .section-header h2,
.section-dark .section-header-row h2 {
    color: #fff;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

.section-dark .product-card {
    background: transparent;
    border: none;
}

.section-dark .product-card:hover {
    box-shadow: none;
}

.section-dark .product-card-name {
    color: #fff;
}

.section-dark .price-current {
    color: #fff;
}

.section-dark .price-original {
    color: rgba(255,255,255,0.5);
}

.section-dark .product-quick-btn {
    background: #fff;
    color: #000;
}

.section-dark .product-quick-btn svg {
    stroke: #000;
}

/* Featured product showcase */
.featured-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-showcase-img {
    text-align: center;
}

.featured-showcase-img img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(255,255,255,0.1));
}

.featured-showcase-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.featured-showcase-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .featured-showcase {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .featured-showcase-img img {
        max-width: 200px;
    }

    .featured-showcase-info h3 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   UGC SECTION (#FRANFAMILY)
   ============================================================ */
.ugc-section {
    padding: 48px 0;
    background: var(--color-bg-alt);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.ugc-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    position: relative;
}

.ugc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.ugc-item:hover img {
    transform: scale(1.05);
}

.ugc-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background var(--transition);
}

.ugc-item:hover::after {
    background: rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .ugc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .ugc-item {
        border-radius: 0;
    }

    .ugc-section {
        padding: 32px 0;
    }
}

/* ============================================================
   RESPONSIVE - ALL BREAKPOINTS (single source of truth)
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .product-layout {
        display: block;
    }

    .product-gallery {
        position: relative;
        top: 0;
        margin-bottom: 32px;
    }

    .hero-product .hero-product-img {
        width: 250px;
        max-width: 40%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner {
        height: 350px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }

    /* Announcement bar */
    .announcement-bar {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .announcement-bar + .header {
        top: 28px;
    }

    .announcement-bar ~ main,
    .announcement-bar ~ .hero {
        margin-top: calc(var(--header-height) + 28px);
    }

    /* Header / Nav - CLEAN: only hamburger | logo | bag */
    .header-action-btn.mobile-hide {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        gap: 0;
        z-index: 1001;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-xl);
        display: flex;
        overflow-y: auto;
    }

    .header-nav.open {
        left: 0;
    }

    .header-nav a {
        display: block;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
        font-size: 0.95rem;
    }

    .header-nav a::after {
        display: none;
    }

    /* Mobile nav extra links (search, tracking) */
    .mobile-nav-extras {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-top: 16px;
        margin-top: 8px;
        border-top: 1px solid var(--color-border-light);
    }

    .mobile-nav-extras a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 0;
        width: 100%;
        font-size: 0.9rem;
        color: var(--color-text-light);
        border-bottom: 1px solid var(--color-border-light);
    }

    .mobile-nav-extras a svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .menu-toggle {
        display: block;
        order: -1;
    }

    /* Hero: mobile shows product hero, hides video */
    .hero-product {
        display: flex !important;
    }

    .hero-desktop {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    /* Product hero banner (mobile-first) */
    .hero-product {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        min-height: 0;
        margin-top: 0;
        padding: 32px 20px 0;
        background: linear-gradient(180deg, #f8bbd0 0%, #f48fb1 50%, #ec407a 100%);
    }

    .hero-product .hero-product-text {
        text-align: center;
        z-index: 2;
        margin-bottom: 20px;
    }

    .hero-product .hero-product-text h1 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
        line-height: 1;
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .hero-product .hero-product-text p {
        font-size: 0.8rem;
        color: rgba(0,0,0,0.7);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
    }

    .hero-product .hero-product-text .btn {
        padding: 12px 32px;
        font-size: 0.8rem;
        background: #000;
        color: #fff;
        border-radius: var(--radius-full);
    }

    .hero-product .hero-product-img {
        width: 75%;
        max-width: 280px;
        z-index: 2;
    }

    .hero-product .hero-product-img img {
        width: 100%;
        height: auto;
    }

    /* Trust bar compact */
    .trust-items {
        gap: 12px;
        justify-content: space-around;
        padding: 0 8px;
    }

    .trust-item span {
        display: none;
    }

    .trust-item strong {
        font-size: 0.7rem;
    }

    .trust-item svg, .trust-item img {
        width: 20px;
        height: 20px;
    }

    .trust-bar {
        padding: 12px 0;
    }

    /* Sections - more compact */
    .section {
        padding: 32px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.25rem;
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    /* Section header with VER TODOS */
    .section-header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .section-header-row h2 {
        font-size: 1.1rem;
        font-family: var(--font-primary);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 700;
        margin: 0;
    }

    .section-header-row .ver-todos {
        font-size: 0.8rem;
        color: var(--color-text-muted);
        text-decoration: underline;
        white-space: nowrap;
    }

    /* Product grid - clean cards */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-card {
        border: none;
        border-radius: 0;
        background: transparent;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-card-img {
        border-radius: var(--radius-sm);
    }

    .product-card-info {
        padding: 8px 2px;
    }

    .product-card-category {
        display: none;
    }

    .product-card-name {
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 4px;
    }

    .price-current {
        font-size: 0.9rem;
    }

    /* Product card - black bag button always visible */
    .product-card-actions {
        opacity: 1;
        transform: translateY(0);
    }

    .product-quick-btn {
        background: #000;
        color: #fff;
        width: 36px;
        height: 36px;
        box-shadow: none;
    }

    .product-quick-btn svg {
        stroke: #fff;
    }

    .product-quick-btn:hover {
        background: var(--color-secondary);
    }

    /* Product carousel (horizontal scroll mobile) */
    .product-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 0 16px;
        margin: 0;
        scrollbar-width: none;
    }

    .product-carousel::-webkit-scrollbar {
        display: none;
    }

    .product-carousel .product-card {
        flex: 0 0 42vw;
        scroll-snap-align: start;
        min-width: 0;
    }

    /* ---- Product page mobile ---- */
    .product-page {
        margin-top: calc(var(--header-height) + 40px);
        padding-bottom: 60px;
    }

    .product-page .container {
        padding: 0 16px;
    }

    .product-gallery {
        margin-bottom: 24px;
    }

    .product-gallery-main {
        aspect-ratio: 4/3;
        border-radius: var(--radius-md);
    }

    .product-gallery-thumbs {
        gap: 6px;
    }

    .product-gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .product-info h1 {
        font-size: 1.4rem;
    }

    .product-price-block .price-current {
        font-size: 1.5rem;
    }

    .product-price-block .pix-price {
        font-size: 0.85rem;
    }

    .add-to-cart-btn {
        font-size: 0.9rem;
        padding: 16px;
        letter-spacing: 0.02em;
    }

    .product-benefits {
        gap: 10px 20px;
        font-size: 0.8rem;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .value-card {
        padding: 16px 10px;
    }

    .value-card h4 {
        font-size: 0.85rem;
    }

    .value-card p {
        font-size: 0.75rem;
    }

    /* Promo banners */
    .promo-banner {
        height: 280px;
    }

    .promo-banner-content {
        padding: 0 24px;
    }

    .promo-banner-content h2 {
        font-size: 1.75rem;
    }

    .promo-banner-content p {
        font-size: 0.9rem;
    }

    .promo-banner-alt .promo-banner-content {
        text-align: left;
    }

    .promo-banner-alt .promo-banner-content p {
        margin-left: 0;
    }

    .promo-banner-alt .promo-banner-bg::after {
        background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 70%);
    }

    /* Categories with circular images */
    .categories-grid-img {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 0;
    }

    .category-card-img {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .category-card-img .cat-img-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--color-border-light);
        background: var(--color-bg-alt);
    }

    .category-card-img .cat-img-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .category-card-img span {
        font-size: 0.72rem;
        font-weight: 500;
        text-align: center;
        color: var(--color-text);
    }

    /* Dark featured section */
    .section-dark {
        background: #000;
        color: #fff;
        padding: 40px 0;
    }

    .section-dark .section-header h2,
    .section-dark .section-header-row h2 {
        color: #fff;
    }

    .section-dark .product-card-name {
        color: #fff;
    }

    .section-dark .price-current {
        color: #fff;
    }

    .section-dark .product-quick-btn {
        background: #fff;
        color: #000;
    }

    .section-dark .product-quick-btn svg {
        stroke: #000;
    }

    /* UGC Section */
    .ugc-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .ugc-grid .ugc-item {
        aspect-ratio: 1;
        overflow: hidden;
    }

    .ugc-grid .ugc-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
    }

    /* Cart drawer */
    .cart-drawer {
        width: 100vw;
        right: -100vw;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cart-items {
        padding: 12px 16px;
    }

    .cart-drawer-header {
        padding: 16px;
    }

    .cart-footer {
        padding: 16px;
        padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    }

    .cart-item-img {
        width: 64px;
        height: 64px;
    }

    .cart-item {
        gap: 12px;
        padding: 12px 0;
    }

    .cart-item-name {
        font-size: 0.82rem;
    }

    .cart-item-price {
        font-size: 0.8rem;
    }

    .cart-item-controls button {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }

    .cart-checkout-btn {
        padding: 14px;
        font-size: 0.9rem;
    }

    /* Responsive inputs */
    input[type="text"], input[type="email"], input[type="search"] {
        max-width: 100%;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 12px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        margin: 12px auto 0;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-product .hero-product-text h1 {
        font-size: 2rem;
    }

    .categories-grid {
        gap: 8px;
    }

    .category-card {
        padding: 14px 18px;
        min-width: 100px;
    }

    .categories-grid-img {
        gap: 12px;
    }

    .category-card-img .cat-img-circle {
        width: 70px;
        height: 70px;
    }

    .category-card-img span {
        font-size: 0.68rem;
    }

    .product-grid {
        gap: 6px;
    }

    .product-card-info {
        padding: 6px 2px;
    }

    .product-card-name {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
    }

    .price-current {
        font-size: 0.82rem;
    }

    .price-original,
    .price-discount {
        font-size: 0.65rem;
    }

    .product-carousel .product-card {
        flex: 0 0 44vw;
    }

    /* Product page small mobile */
    .product-page .container {
        padding: 0 12px;
    }

    .product-info h1 {
        font-size: 1.2rem;
    }

    .product-price-block {
        padding: 14px;
    }

    .product-price-block .price-current {
        font-size: 1.3rem;
    }

    .add-to-cart-btn {
        font-size: 0.85rem;
        padding: 14px;
        letter-spacing: 0;
    }

    .product-benefits {
        gap: 8px 16px;
        font-size: 0.75rem;
    }

    .product-gallery-thumb {
        width: 52px;
        height: 52px;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
    }

    .qty-input {
        width: 50px;
    }

    .product-quick-btn {
        width: 32px;
        height: 32px;
    }

    .product-quick-btn svg {
        width: 14px;
        height: 14px;
    }

    .promo-banner {
        height: 240px;
    }

    .promo-banner-content h2 {
        font-size: 1.5rem;
    }

    .promo-banner-content p {
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .value-card h4 {
        font-size: 0.8rem;
    }

    .value-card p {
        font-size: 0.72rem;
    }

    .ugc-grid {
        gap: 2px;
    }

    .section-header-row h2 {
        font-size: 1rem;
    }

    /* Promo banner smaller */
    .promo-banner {
        height: 220px;
    }

    .promo-banner-content h2 {
        font-size: 1.3rem;
    }
}

/* Touch active states (replaces hover on mobile) */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover {
        transform: none;
        box-shadow: none;
    }

    .product-card:active {
        opacity: 0.85;
    }

    .product-quick-btn:active {
        transform: scale(0.9);
    }

    .category-card-img:active {
        transform: scale(0.95);
    }

    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }

    .category-pill:active {
        transform: scale(0.95);
    }
}
