/* ═══════════════════════════════════════════════════════════════
   D POLIMENTOS — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ─── Design Tokens ────────────────────────────────────────────── */
:root {
    --bg:           #080808;
    --surface:      #111111;
    --surface-2:    #181818;
    --surface-3:    #222222;
    --border:       #2a2a2a;
    --border-light: #333333;

    --yellow:       #F5C20A;
    --yellow-dark:  #D4A800;
    --yellow-glow:  rgba(245, 194, 10, 0.18);
    --yellow-dim:   rgba(245, 194, 10, 0.08);

    --white:        #FFFFFF;
    --text:         #F0F0F0;
    --text-muted:   #888888;
    --text-faint:   #444444;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Inter', sans-serif;

    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --radius-full:  9999px;

    --shadow-sm:    0 2px 8px rgba(0,0,0,.4);
    --shadow:       0 8px 32px rgba(0,0,0,.6);
    --shadow-lg:    0 24px 64px rgba(0,0,0,.8);
    --shadow-yellow:0 0 40px rgba(245,194,10,.25);

    --transition:   200ms ease;
    --transition-md:350ms ease;
    --transition-lg:600ms cubic-bezier(.16,1,.3,1);

    --container:    1280px;
    --container-wide: 1440px;

    --header-h:     72px;
    --announce-h:   40px;
}

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

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; color: inherit; font: inherit; }
input, select, textarea { font: inherit; }

/* ─── Utility ───────────────────────────────────────────────────── */
.dp-container        { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.dp-container--wide  { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.dp-sr-only          { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Animation States ──────────────────────────────────────────── */
[data-anim] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-lg), transform var(--transition-lg);
}
[data-anim].is-visible {
    opacity: 1;
    transform: none;
}
[data-anim="hero-img"] {
    transform: translateX(40px) scale(.96);
}
[data-anim="hero-img"].is-visible {
    transform: none;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.dp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.dp-btn:hover   { transform: translateY(-2px); }
.dp-btn:active  { transform: translateY(0); }

.dp-btn--primary {
    background: var(--yellow);
    color: #000;
    box-shadow: 0 4px 20px var(--yellow-glow);
}
.dp-btn--primary:hover {
    background: #ffd011;
    box-shadow: 0 8px 32px rgba(245,194,10,.45);
}

.dp-btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--border-light);
}
.dp-btn--ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.dp-btn--dark {
    background: #000;
    color: var(--yellow);
    border: 1.5px solid var(--yellow);
}
.dp-btn--dark:hover {
    background: var(--yellow);
    color: #000;
}

.dp-btn--lg  { padding: 18px 36px; font-size: 1.1rem; }
.dp-btn--sm  { padding: 10px 20px; font-size: .85rem; }
.dp-btn--full { width: 100%; justify-content: center; }

/* ─── Section Shared ─────────────────────────────────────────────── */
.dp-section-header     { margin-bottom: 48px; }
.dp-section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1.1;
    text-transform: uppercase;
}
.dp-section-desc  { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }
.dp-section-link  { color: var(--yellow); font-size: .9rem; font-weight: 600; letter-spacing: .03em; }

/* ─── Badges ─────────────────────────────────────────────────────── */
.dp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.dp-badge--sale     { background: #ef4444; color: #fff; }
.dp-badge--featured { background: var(--yellow); color: #000; }

/* ═══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ═══════════════════════════════════════════════════════════════ */
.dp-announce {
    position: relative;
    background: var(--yellow);
    color: #000;
    height: var(--announce-h);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    overflow: hidden;
    transition: height var(--transition-md), opacity var(--transition-md);
}
.dp-announce.is-hidden { height: 0; opacity: 0; pointer-events: none; }
.dp-announce__inner    { display: flex; align-items: center; gap: 16px; }
.dp-announce__sep      { opacity: .4; }
.dp-announce__close    { position: absolute; right: 16px; font-size: 1.2rem; opacity: .6; }
.dp-announce__close:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.dp-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(8,8,8,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), background var(--transition-md);
}
.dp-header.is-scrolled {
    border-bottom-color: var(--border);
    background: rgba(8,8,8,.97);
}

.dp-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.dp-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -.01em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.dp-logo__d     { color: var(--yellow); font-size: 2rem; line-height: 1; }
.dp-logo__text  { color: var(--white); }
.dp-logo__img   { height: 48px; width: auto; object-fit: contain; display: block; }

.dp-header__nav { flex: 1; }
.dp-nav__list   { display: flex; align-items: center; gap: 4px; }
.dp-nav__list a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}
.dp-nav__list a:hover,
.dp-nav__list .current-menu-item a { color: var(--white); }
.dp-nav__list .current-menu-item a { color: var(--yellow); }

.dp-header__actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.dp-header__icon,
.dp-header__cart {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}
.dp-header__icon:hover,
.dp-header__cart:hover { color: var(--white); background: var(--surface-2); }

/* WhatsApp button in header */
.dp-header__whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 36px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
}
.dp-header__whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); color: #fff; }
.dp-header__whatsapp-label { display: none; }
@media (min-width: 900px) { .dp-header__whatsapp-label { display: inline; } }

/* Mobile nav WhatsApp link */
.dp-mobile-nav__whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-bottom: 12px;
}

.dp-header__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--yellow);
    color: #000;
    font-size: .65rem;
    font-weight: 800;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    padding: 8px;
}
.dp-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition-md), opacity var(--transition);
}
.dp-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dp-header__burger.is-open span:nth-child(2) { opacity: 0; }
.dp-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.dp-mobile-nav {
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--bg);
    z-index: 99;
    transform: translateX(-100%);
    transition: transform var(--transition-lg);
}
.dp-mobile-nav.is-open { transform: none; }
.dp-mobile-nav__inner  { padding: 32px 24px; }
.dp-mobile-nav__list   { display: flex; flex-direction: column; gap: 4px; }
.dp-mobile-nav__list li a {
    display: block;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transition: color var(--transition);
}
.dp-mobile-nav__list li a:hover { color: var(--yellow); }
.dp-mobile-nav__footer { margin-top: 32px; color: var(--text-muted); font-size: .9rem; }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.dp-hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.dp-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.dp-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
}
.dp-hero__glow--1 {
    width: 600px;
    height: 600px;
    background: var(--yellow);
    top: -200px;
    right: 10%;
    animation: glow-float 8s ease-in-out infinite;
}
.dp-hero__glow--2 {
    width: 400px;
    height: 400px;
    background: #3B82F6;
    bottom: -100px;
    left: 5%;
    animation: glow-float 10s ease-in-out infinite reverse;
}

@keyframes glow-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

.dp-hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dp-hero__eyebrow {
    display: inline-block;
    background: var(--yellow-dim);
    color: var(--yellow);
    border: 1px solid rgba(245,194,10,.2);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.dp-hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 24px;
}
.dp-hero__title-accent { color: var(--yellow); }

.dp-hero__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.dp-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.dp-hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}
.dp-hero__trust-item { text-align: center; }
.dp-hero__trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--yellow);
}
.dp-hero__trust-item span { font-size: .8rem; color: var(--text-muted); }
.dp-hero__trust-sep { width: 1px; height: 40px; background: var(--border); }

.dp-hero__visual { position: relative; }
.dp-hero__img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface);
    aspect-ratio: 1;
}
.dp-hero__img { width: 100%; height: 100%; object-fit: cover; }
.dp-hero__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-faint);
    font-size: .9rem;
    min-height: 500px;
}

.dp-hero__img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(8,8,8,.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: right;
}
.dp-hero__img-badge-text { display: block; font-size: .75rem; color: var(--text-muted); margin-bottom: 4px; }
.dp-hero__img-badge-price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--yellow); }

.dp-hero__scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}
.dp-hero__scroll-hint span {
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--yellow));
    margin: 0 auto;
    animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
    0%, 100% { opacity: .3; transform: scaleY(1); }
    50%       { opacity: 1; transform: scaleY(.6); }
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════════════ */
.dp-categories { padding: 100px 0; }

.dp-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dp-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-md), border-color var(--transition), box-shadow var(--transition-md);
}
.dp-cat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
}
.dp-cat-card:hover .dp-cat-card__bg { opacity: 1; }
.dp-cat-card:hover .dp-cat-card__cta { color: var(--yellow); }

.dp-cat-card__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, var(--cat-color, var(--yellow)), transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-md);
    pointer-events: none;
}

.dp-cat-card__icon {
    width: 48px;
    height: 48px;
    color: var(--yellow);
    margin-bottom: 20px;
}
.dp-cat-card__icon svg { width: 100%; height: 100%; }

.dp-cat-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.dp-cat-card__desc { font-size: .9rem; color: var(--text-muted); flex: 1; margin-bottom: 20px; }
.dp-cat-card__cta  { font-size: .85rem; font-weight: 600; color: var(--text-faint); transition: color var(--transition); }

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════════ */
.dp-featured { padding: 60px 0 100px; }

.dp-products-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.dp-products-grid--4 { grid-template-columns: repeat(4, 1fr); }

.dp-product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-md), border-color var(--transition), box-shadow var(--transition-md);
}
.dp-product-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    box-shadow: var(--shadow);
}

.dp-product-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--surface-2);
}
.dp-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lg);
}
.dp-product-card:hover .dp-product-card__img { transform: scale(1.04); }

.dp-product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-md);
}
.dp-product-card:hover .dp-product-card__overlay { opacity: 1; }
.dp-product-card__quick-view {
    background: var(--yellow);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .03em;
}

.dp-product-card .dp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.dp-product-card__body { padding: 20px 20px 8px; flex: 1; }
.dp-product-card__cats {
    font-size: .75rem;
    color: var(--yellow);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.dp-product-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 10px;
}
.dp-product-card__price { margin-top: 8px; }
.dp-product-card__footer { padding: 12px 20px 20px; }

/* WooCommerce price overrides */
.dp-product-card .price,
.dp-product-card .woocommerce-Price-amount {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
}
.dp-product-card ins .woocommerce-Price-amount { color: var(--yellow); text-decoration: none; }
.dp-product-card del .woocommerce-Price-amount { font-size: 1rem; color: var(--text-faint); font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */
.dp-how { padding: 100px 0; background: var(--surface); }

.dp-how__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.dp-how__step {
    position: relative;
    padding: 32px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.dp-how__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--step-color, var(--yellow));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dp-how__step-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--step-color, var(--yellow));
    opacity: .15;
    line-height: 1;
    margin-bottom: 16px;
}
.dp-how__step-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.dp-how__step-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

.dp-how__cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF
   ═══════════════════════════════════════════════════════════════ */
.dp-proof { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.dp-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.dp-proof__stat {
    background: var(--bg);
    padding: 40px 24px;
    text-align: center;
}
.dp-proof__stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 8px;
}
.dp-proof__stat-label { font-size: .85rem; color: var(--text-muted); }

/* ═══════════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════════ */
.dp-cta-strip { padding: 80px 0; }
.dp-cta-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--yellow);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
}
.dp-cta-strip__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
}
.dp-cta-strip__desc { color: rgba(0,0,0,.6); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════════════
   SHOP PAGE
   ═══════════════════════════════════════════════════════════════ */
.dp-shop-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}
.dp-shop-header__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
}

.dp-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 80px;
    align-items: start;
}

.dp-shop-filters { position: sticky; top: calc(var(--header-h) + 24px); }
.dp-shop-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}
.dp-shop-filters__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
}
.dp-shop-filters__close { display: none; font-size: 1.4rem; color: var(--text-muted); }

.dp-filter-group { margin-bottom: 32px; }
.dp-filter-group__title {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.dp-filter-list { display: flex; flex-direction: column; gap: 4px; }
.dp-filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    color: var(--text-muted);
    transition: color var(--transition), background var(--transition);
}
.dp-filter-list a:hover { color: var(--white); background: var(--surface-2); }
.dp-filter-list a.is-active { color: var(--yellow); background: var(--yellow-dim); }
.dp-filter-list__count {
    font-size: .75rem;
    color: var(--text-faint);
}
.dp-filter-list--sizes { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.dp-size-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.dp-size-btn:hover  { border-color: var(--yellow); color: var(--yellow); }
.dp-size-btn.is-active { background: var(--yellow); color: #000; border-color: var(--yellow); font-weight: 700; }

.dp-shop-toolbar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.dp-shop-toolbar__filter-btn {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    color: var(--text-muted);
}
.dp-shop-toolbar__result-count { font-size: .85rem; color: var(--text-muted); }
.dp-shop-toolbar__right { margin-left: auto; }

.dp-shop-empty { padding: 80px 0; text-align: center; color: var(--text-muted); }
.dp-shop-empty p { margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════
   SINGLE PRODUCT
   ═══════════════════════════════════════════════════════════════ */

/* Sticky cart */
.dp-sticky-cart {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(17,17,17,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform var(--transition-lg);
    padding: 12px 0;
}
.dp-sticky-cart.is-visible { transform: none; }
.dp-sticky-cart__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.dp-sticky-cart__product { display: flex; align-items: center; gap: 12px; flex: 1; }
.dp-sticky-cart__img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); }
.dp-sticky-cart__name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; }
.dp-sticky-cart__price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.dp-sticky-cart__btn { white-space: nowrap; }

/* Breadcrumb */
.dp-breadcrumb { padding: 20px 0; }
.dp-breadcrumb ol { display: flex; gap: 8px; align-items: center; }
.dp-breadcrumb li { font-size: .8rem; color: var(--text-muted); }
.dp-breadcrumb li::after { content: '→'; margin-left: 8px; }
.dp-breadcrumb li:last-child::after { display: none; }
.dp-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.dp-breadcrumb a:hover { color: var(--yellow); }

/* Product hero layout */
.dp-product-hero { padding: 0 0 80px; }
.dp-product-hero__layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.dp-product-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.dp-product-gallery__main {
    position: relative;
    aspect-ratio: 1;
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
    border: 1px solid var(--border);
}
.dp-product-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-lg);
}
.dp-product-gallery__zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,.7);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background var(--transition);
}
.dp-product-gallery__zoom:hover { background: var(--yellow); color: #000; }

.dp-product-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.dp-product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.dp-product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.dp-product-gallery__thumb:hover,
.dp-product-gallery__thumb.is-active { border-color: var(--yellow); }

/* Product details panel */
.dp-product-details { padding: 8px 0; }
.dp-product-details__cats {
    font-size: .75rem;
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.dp-product-details__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
}
.dp-product-details__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.dp-product-details__rating-link {
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-color: transparent;
}
.dp-product-details__rating-link:hover { text-decoration-color: var(--text-muted); }

/* Stars */
.dp-stars { display: flex; align-items: center; gap: 2px; }
.dp-star   { color: var(--yellow); font-size: .9rem; }
.dp-star--empty { color: var(--text-faint); }
.dp-stars__count { font-size: .8rem; color: var(--text-muted); margin-left: 4px; }

/* Price */
.dp-product-details__price { margin-bottom: 16px; }
.dp-product-details .price,
.dp-product-details .woocommerce-Price-amount {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
}
.dp-product-details ins .woocommerce-Price-amount { color: var(--yellow); text-decoration: none; }
.dp-product-details del .woocommerce-Price-amount { font-size: 1.4rem; color: var(--text-faint); font-weight: 400; }

/* MP Badge */
.dp-mp-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--yellow-dim);
    border: 1px solid rgba(245,194,10,.15);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.dp-mp-badge strong { color: var(--yellow); }
.dp-mp-badge__sep { color: var(--text-faint); }

.dp-product-details__short-desc {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

/* WooCommerce form overrides */
.dp-product-details__form .variations { width: 100%; margin-bottom: 20px; }
.dp-product-details__form .variations td,
.dp-product-details__form .variations th { padding: 8px 0; vertical-align: middle; }
.dp-product-details__form .variations th { font-size: .8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; padding-right: 16px; white-space: nowrap; }
.dp-product-details__form select,
.dp-product-details__form .variations select {
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    width: 100%;
    appearance: none;
    cursor: pointer;
    transition: border-color var(--transition);
}
.dp-product-details__form select:focus { outline: none; border-color: var(--yellow); }

.dp-product-details__form .woocommerce-variation-price,
.dp-product-details__form .woocommerce-variation-availability { margin: 12px 0; }

.dp-product-details__form .quantity { display: flex; align-items: center; gap: 0; margin-bottom: 16px; }
.dp-product-details__form .qty {
    width: 80px;
    background: var(--surface-2);
    border: 1px solid var(--border-light);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 700;
}
.dp-product-details__form .qty:focus { outline: none; border-color: var(--yellow); }

.dp-product-details__form .single_add_to_cart_button {
    background: var(--yellow);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    width: 100%;
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    box-shadow: 0 4px 20px var(--yellow-glow);
    margin-top: 8px;
}
.dp-product-details__form .single_add_to_cart_button:hover {
    background: #ffd011;
    box-shadow: 0 8px 32px rgba(245,194,10,.45);
    transform: translateY(-2px);
}

/* Shipping rows */
.dp-product-details__shipping {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dp-shipping-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--text-muted);
}
.dp-shipping-row svg { color: var(--yellow); flex-shrink: 0; }

/* Product info tabs */
.dp-product-info { padding: 60px 0; border-top: 1px solid var(--border); }
.dp-product-info__tabs {
    display: flex;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    overflow-x: auto;
}
.dp-tab {
    padding: 14px 20px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
}
.dp-tab:hover   { color: var(--white); }
.dp-tab.is-active { color: var(--yellow); border-bottom-color: var(--yellow); }

.dp-panel { display: none; }
.dp-panel.is-active { display: block; }

.dp-product-desc { max-width: 720px; line-height: 1.8; color: var(--text-muted); }
.dp-product-desc h2, .dp-product-desc h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; margin: 28px 0 12px; color: var(--white); }
.dp-product-desc p   { margin-bottom: 16px; }
.dp-product-desc ul, .dp-product-desc ol { padding-left: 20px; margin-bottom: 16px; }
.dp-product-desc li  { margin-bottom: 6px; }

.dp-specs-table { width: 100%; max-width: 600px; border-collapse: collapse; }
.dp-specs-table tr { border-bottom: 1px solid var(--border); }
.dp-specs-table tr:last-child { border-bottom: none; }
.dp-specs-table th { text-align: left; padding: 14px 16px 14px 0; font-size: .85rem; color: var(--text-muted); font-weight: 500; width: 40%; }
.dp-specs-table td { padding: 14px 0; font-size: .9rem; color: var(--white); }

.dp-aplicacao__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; margin-bottom: 24px; }
.dp-aplicacao__grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dp-aplicacao__item  { display: flex; align-items: flex-start; gap: 12px; padding: 16px; background: var(--surface); border-radius: var(--radius-sm); border: 1px solid var(--border); }
.dp-aplicacao__icon  { font-size: 1.4rem; }
.dp-aplicacao__item strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.dp-aplicacao__item p  { font-size: .8rem; color: var(--text-muted); }

/* Related */
.dp-related { padding: 60px 0; border-top: 1px solid var(--border); }

/* Lightbox */
.dp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-md);
}
.dp-lightbox.is-open { opacity: 1; pointer-events: all; }
.dp-lightbox__img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.dp-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--surface);
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.dp-lightbox__close:hover { background: var(--yellow); color: #000; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.dp-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding-top: 80px;
}

.dp-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.dp-footer__tagline { color: var(--text-muted); font-size: .9rem; margin-top: 12px; margin-bottom: 24px; }
.dp-footer__social  { display: flex; gap: 12px; }
.dp-footer__social a {
    width: 38px;
    height: 38px;
    background: var(--surface-2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: background var(--transition), color var(--transition);
}
.dp-footer__social a:hover { background: var(--yellow); color: #000; }

.dp-footer__title {
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.dp-footer__links { display: flex; flex-direction: column; gap: 8px; }
.dp-footer__links a { font-size: .9rem; color: var(--text-muted); transition: color var(--transition); }
.dp-footer__links a:hover { color: var(--white); }

.dp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}
.dp-footer__copy { font-size: .8rem; color: var(--text-faint); }
.dp-footer__payment { display: flex; align-items: center; gap: 12px; }
.dp-footer__payment-label { font-size: .8rem; color: var(--text-faint); }

/* ═══════════════════════════════════════════════════════════════
   WOOCOMMERCE PAGINATION
   ═══════════════════════════════════════════════════════════════ */
.woocommerce-pagination { margin-top: 48px; }
.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; }
.woocommerce-pagination li span,
.woocommerce-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: .9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}
.woocommerce-pagination li a:hover,
.woocommerce-pagination li span.current {
    background: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .dp-categories__grid   { grid-template-columns: repeat(2, 1fr); }
    .dp-how__steps         { grid-template-columns: repeat(2, 1fr); }
    .dp-products-grid--4   { grid-template-columns: repeat(3, 1fr); }
    .dp-footer__top        { grid-template-columns: 1fr 1fr; gap: 40px; }
    .dp-shop-layout        { grid-template-columns: 240px 1fr; }
}

@media (max-width: 1024px) {
    .dp-hero__inner        { grid-template-columns: 1fr; gap: 48px; }
    .dp-hero__visual       { display: none; }
    .dp-product-hero__layout { grid-template-columns: 1fr; }
    .dp-product-gallery    { position: relative; top: 0; }
    .dp-proof__grid        { grid-template-columns: repeat(2, 1fr); }
    .dp-aplicacao__grid    { grid-template-columns: repeat(2, 1fr); }
    .dp-cta-strip__inner   { flex-direction: column; text-align: center; padding: 40px 32px; }
}

@media (max-width: 768px) {
    :root {
        --header-h:  64px;
        --announce-h: 36px;
    }

    .dp-header__nav    { display: none; }
    .dp-header__burger { display: flex; }

    .dp-categories__grid  { grid-template-columns: 1fr; }
    .dp-how__steps        { grid-template-columns: 1fr; }
    .dp-products-grid     { grid-template-columns: repeat(2, 1fr); }
    .dp-products-grid--4  { grid-template-columns: repeat(2, 1fr); }
    .dp-proof__grid       { grid-template-columns: repeat(2, 1fr); }
    .dp-footer__top       { grid-template-columns: 1fr; gap: 32px; }
    .dp-footer__bottom    { flex-direction: column; gap: 16px; text-align: center; }

    .dp-shop-layout        { grid-template-columns: 1fr; }
    .dp-shop-filters       { display: none; }
    .dp-shop-filters.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        z-index: 300;
        background: var(--bg);
        padding: 32px 24px;
        overflow-y: auto;
    }
    .dp-shop-filters__close { display: block; }
    .dp-shop-toolbar__filter-btn { display: flex; }

    .dp-aplicacao__grid    { grid-template-columns: 1fr; }

    .dp-sticky-cart__price { display: none; }
    .dp-sticky-cart__product .dp-sticky-cart__name { font-size: .85rem; }

    .dp-announce__inner span:not(:first-child) { display: none; }

    .dp-hero { padding: 60px 0; min-height: auto; }
    .dp-hero__actions { flex-direction: column; }
    .dp-hero__actions .dp-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .dp-products-grid { grid-template-columns: 1fr; }
    .dp-proof__grid   { grid-template-columns: 1fr; }
    .dp-product-gallery__thumbs { gap: 8px; }
    .dp-product-gallery__thumb  { width: 60px; height: 60px; }
}

/* ─── Print ─────────────────────────────────────────────────────── */
@media print {
    .dp-header, .dp-footer, .dp-sticky-cart, .dp-announce { display: none; }
}
