/*
Theme Name: Aurus Joalheria
Template: hello-elementor
Author: Antigravity Master
Version: 15.1.6
Description: Sistema de Luxo Editorial Brasileiro. Refinamento maximo em tipografia e espacos.
*/

:root {
    --lux-bg: #ffffff;
    --lux-white: #ffffff;
    --lux-dark: #222222;
    --lux-gold: #b38a58;
    --lux-gold-light: #d4c1a7;
    --lux-green: #004b43;
    --lux-text: #333333;
    --lux-text-muted: #777777;
    --lux-line: rgba(0,0,0,0.08);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;
    
    --container: 1320px;
}

/* ── FUNDAÇÃO V15 ──────────────────────────────────────────────────── */

body {
    background-color: var(--lux-bg);
    color: var(--lux-text);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.01em;
}

/* Correção para imagens PNG e WebP com transparência não sumirem com o mix-blend-mode: multiply */
img[src*=".png" i],
img[src*=".webp" i],
img[src*=".PNG"],
img[src*=".WEBP"] {
    mix-blend-mode: normal !important;
}

.lux-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* ── HEADER MASTER EDITORIAL ────────────────────────────────────────── */

.lux-header-master {
    background: var(--lux-white);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.lux-header-master__top {
    background: #f8f8f8;
    padding: 8px 0;
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lux-text-muted);
    border-bottom: 1px solid var(--lux-line);
}

.lux-header-master__main {
    padding: 24px 0;
    border-bottom: 1px solid var(--lux-line);
}

.lux-header-master__layout {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 60px;
}

.lux-header-master__logo img {
    height: 48px;
    width: auto;
    display: block;
}

.lux-header-master__nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.lux-nav-link {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    color: var(--lux-dark);
    position: relative;
    padding: 10px 0;
}

.ah-hero-video {
    position: relative;
    overflow: hidden;
}
.ah-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.ah-hero-overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(0,0,0,0.4) 100%);
}

.lux-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lux-gold);
    transition: width 0.4s ease;
}

.lux-nav-link:hover::after {
    width: 100%;
}

.lux-header-master__actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.lux-btn-consultoria {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lux-green);
    border: 1px solid var(--lux-green);
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.lux-btn-consultoria:hover {
    background: var(--lux-green);
    color: var(--lux-white);
}

.lux-cart-trigger {
    position: relative;
    display: flex;
    align-items: center;
}

.lux-cart-icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z"></path><line x1="3" y1="6" x2="21" y2="6"></line><path d="M16 10a4 4 0 0 1-8 0"></path></svg>') no-repeat center;
    background-size: contain;
}

.lux-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--lux-gold);
    color: white;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── SEÇÃO DE CATEGORIAS V15 (CURADORIA) ────────────────────────────── */

.lux-moments-v15 {
    padding: 120px 0;
}

.lux-moments-v15__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.lux-moment-card-v15 {
    position: relative;
    aspect-ratio: 0.8;
    overflow: hidden;
    background: #f0f0f0;
}

.lux-moment-card-v15 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lux-moment-card-v15:hover img {
    transform: scale(1.08);
}

.lux-moment-card-v15__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    color: white;
    text-align: center;
}

.lux-moment-card-v15__content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
}

.lux-moment-card-v15__content span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

/* ── RESPONSIVO ─────────────────────────────────────────────────────── */

@media (max-width: 1100px) {
    .lux-header-master__layout {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }
    .lux-header-master__nav { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LUX DESIGN SYSTEM — componentes globais
   Usado em: archive-product.php, content-product.php, single-product.php,
             template-luxury-home.php e outros templates.
   Tokens: --lux-gold #B98E55 | --lux-dark #181410 | --lux-ink #2B231B
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    --lux-cream:  #FAFAF8;
    --lux-warm:   #F5EDE3;
    --lux-stone:  #EDE7DF;
    --lux-dark:   #181410;
    --lux-ink:    #2B231B;
    --lux-mid:    #7C7168;
    --lux-border: rgba(43,35,27,.08);
    --lux-gold:   #B98E55;
    --lux-gold-l: #D9C49E;
    --lux-gold-d: #8C6A38;
    --lux-serif:  'Cormorant Garamond', Georgia, serif;
    --lux-sans:   'Manrope', system-ui, sans-serif;
}

/* ── Containers e seções ─────────────────────────────────────────────────── */
.lux-section { padding: 88px 0; }
.lux-section--soft { background: var(--lux-stone); }

/* ── Eyebrow ─────────────────────────────────────────────────────────────── */
.lux-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--lux-sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--lux-gold);
    margin: 0 0 16px;
    line-height: 1;
}
.lux-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}

/* ── Botões ──────────────────────────────────────────────────────────────── */
.lux-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lux-sans);
    font-size: 9.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .22em;
    text-decoration: none;
    padding: 16px 36px;
    background: var(--lux-dark);
    color: #fff;
    border: 1px solid var(--lux-dark);
    transition: background .22s, border-color .22s, color .22s;
    white-space: nowrap;
    cursor: pointer;
}
.lux-button:hover { background: var(--lux-ink); border-color: var(--lux-ink); color: #fff; }
.lux-button--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.lux-button--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; }
.lux-button--outline { background: transparent; color: var(--lux-ink); border-color: var(--lux-border); }
.lux-button--outline:hover { background: var(--lux-dark); color: #fff; border-color: var(--lux-dark); }

/* ── Inline link ─────────────────────────────────────────────────────────── */
.lux-inline-link {
    font-family: var(--lux-sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--lux-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--lux-border);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
}
.lux-inline-link:hover { color: var(--lux-gold); border-color: var(--lux-gold); }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.lux-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(255,255,255,.38);
    flex-wrap: wrap;
}
.lux-breadcrumb a { color: rgba(255,255,255,.38); text-decoration: none; transition: color .2s; }
.lux-breadcrumb a:hover { color: var(--lux-gold-l); }
.lux-breadcrumb span[aria-current="page"] { color: rgba(255,255,255,.78); }

/* ── Animações data-reveal (global) ─────────────────────────────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .5s ease, transform .5s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   ARQUIVO DE PRODUTO
   ═══════════════════════════════════════════════════════════════════════════ */

.lux-archive-page {
    background: var(--lux-cream);
    font-family: var(--lux-sans);
    color: var(--lux-ink);
}
.lux-archive-page *, .lux-archive-page *::before, .lux-archive-page *::after { box-sizing: border-box; }
.lux-archive-page img { display: block; max-width: 100%; }

.lux-archive-hero {
    position: relative;
    min-height: 52vh;
    background-color: var(--lux-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.lux-archive-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(24,20,16,.42) 0%, rgba(24,20,16,.72) 100%);
}
.lux-archive-hero__inner { position: relative; z-index: 1; padding: 64px 0; width: 100%; }
.lux-archive-hero__inner h1 {
    font-family: var(--lux-serif);
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.05;
    margin: 12px 0 16px;
    letter-spacing: -.01em;
}
.lux-archive-hero__inner > p {
    font-size: .92rem;
    color: rgba(255,255,255,.55);
    margin: 0 0 40px;
    max-width: 520px;
    line-height: 1.7;
}
.lux-archive-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Chip strip */
.lux-chip-strip { background: #fff; border-bottom: 1px solid var(--lux-border); padding: 14px 0; }
.lux-chip-strip__inner {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.lux-chip-strip__inner::-webkit-scrollbar { display: none; }
.lux-chip {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-family: var(--lux-sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    text-decoration: none;
    color: var(--lux-mid);
    background: var(--lux-stone);
    padding: 8px 18px;
    border: 1px solid transparent;
    transition: color .2s, border-color .2s, background .2s;
    white-space: nowrap;
}
.lux-chip:hover { color: var(--lux-ink); border-color: var(--lux-border); }
.lux-chip.is-active { color: var(--lux-dark); background: #fff; border-color: var(--lux-gold); }

/* Intro editorial */
.lux-archive-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 56px; }
.lux-archive-intro__copy h2 {
    font-family: var(--lux-serif);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 500;
    color: var(--lux-ink);
    margin: 8px 0 16px;
    line-height: 1.1;
}
.lux-archive-intro__copy p { font-size: .92rem; line-height: 1.8; color: var(--lux-mid); margin: 0; }

/* Support card */
.lux-support-card { background: var(--lux-warm); padding: 40px; border: 1px solid var(--lux-border); }
.lux-support-card h3 { font-family: var(--lux-serif); font-size: 1.35rem; font-weight: 500; color: var(--lux-ink); margin: 0 0 20px; }
.lux-feature-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.lux-feature-list li {
    font-size: .88rem;
    color: var(--lux-mid);
    padding-left: 16px;
    position: relative;
    line-height: 1.6;
}
.lux-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 1px;
    background: var(--lux-gold);
}

/* Toolbar */
.lux-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--lux-border);
    border-bottom: 1px solid var(--lux-border);
    margin-bottom: 40px;
}
.lux-toolbar__count { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; color: var(--lux-mid); }
.lux-toolbar__sort select {
    font-family: var(--lux-sans);
    font-size: .82rem;
    font-weight: 500;
    color: var(--lux-ink);
    background: transparent;
    border: 1px solid var(--lux-border);
    padding: 8px 12px;
    outline: none;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARD DE PRODUTO — GLOBAL (lux-product-card)
   ═══════════════════════════════════════════════════════════════════════════ */

.lux-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.lux-product-grid--archive { grid-template-columns: repeat(4, 1fr); }

.lux-product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    transition: box-shadow .25s;
    list-style: none;
}
.lux-product-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.07); }

.lux-product-card__image {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--lux-stone);
    overflow: hidden;
}
.lux-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.4s cubic-bezier(.12,.88,.2,1);
    display: block;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
.lux-product-card__image img[src*=".jpg" i],
.lux-product-card__image img[src*=".jpeg" i],
.lux-product-card__image img[src*=".JPG"],
.lux-product-card__image img[src*=".JPEG"] {
    mix-blend-mode: multiply;
}
.lux-product-card:hover .lux-product-card__image img { transform: scale(1.05); }

.lux-product-card__badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--lux-gold);
    color: #fff;
    font-family: var(--lux-sans);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    padding: 5px 12px;
    z-index: 1;
}

.lux-product-card__body { padding: 20px 20px 16px; display: flex; flex-direction: column; flex: 1; }

.lux-product-card__meta {
    font-size: 8.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--lux-mid);
    text-decoration: none;
    margin-bottom: 6px;
    display: block;
    transition: color .2s;
}
.lux-product-card__meta:hover { color: var(--lux-gold); }

.lux-product-card__body h2,
.lux-product-card__body h3,
.lux-product-card .woocommerce-loop-product__title {
    font-family: var(--lux-serif) !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--lux-ink) !important;
    line-height: 1.2 !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
}
.lux-product-card__body h2 a,
.lux-product-card .woocommerce-loop-product__title a { color: inherit; text-decoration: none; }

.lux-product-card__price,
.lux-product-card .price {
    font-family: var(--lux-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lux-ink);
    margin-bottom: 14px;
    display: block;
}
.lux-product-card__price del,
.lux-product-card .price del { color: var(--lux-mid); font-size: .82em; margin-right: 6px; opacity: .6; }
.lux-product-card__price ins,
.lux-product-card .price ins { text-decoration: none; color: var(--lux-gold-d); }

.lux-product-card__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--lux-border);
    margin-top: auto;
}
.lux-product-card__foot span {
    font-size: 8.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--lux-mid);
}
.lux-product-card .button { display: none !important; }

/* ── Paginação ───────────────────────────────────────────────────────────── */
.lux-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 48px 0 0;
    flex-wrap: wrap;
}
.lux-pagination a,
.lux-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    font-family: var(--lux-sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    text-decoration: none;
    color: var(--lux-mid);
    border: 1px solid var(--lux-border);
    transition: color .2s, border-color .2s, background .2s;
}
.lux-pagination a:hover { color: var(--lux-ink); border-color: var(--lux-gold); }
.lux-pagination span.current { color: var(--lux-dark); border-color: var(--lux-gold); background: var(--lux-warm); }

/* ── Estado vazio ────────────────────────────────────────────────────────── */
.lux-empty-state { text-align: center; padding: 80px 40px; max-width: 560px; margin: 0 auto; }
.lux-empty-state h2 { font-family: var(--lux-serif); font-size: clamp(1.6rem, 2.4vw, 2.2rem); font-weight: 500; color: var(--lux-ink); margin: 0 0 16px; }
.lux-empty-state p { font-size: .92rem; color: var(--lux-mid); line-height: 1.8; margin: 0 0 36px; }
.lux-empty-state__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ── Guidance cards ──────────────────────────────────────────────────────── */
.lux-guidance-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lux-guidance-card { padding: 36px 28px; background: #fff; border: 1px solid var(--lux-border); }
.lux-guidance-card h3 { font-family: var(--lux-serif); font-size: 1.2rem; font-weight: 500; color: var(--lux-ink); margin: 0 0 12px; }
.lux-guidance-card p { font-size: .88rem; line-height: 1.8; color: var(--lux-mid); margin: 0; }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVO — componentes lux
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .lux-product-grid,
    .lux-product-grid--archive { grid-template-columns: repeat(3, 1fr); }
    .lux-guidance-grid { grid-template-columns: repeat(2, 1fr); }
    .lux-archive-intro { grid-template-columns: 1fr; gap: 32px; }
    .lux-archive-hero { min-height: 40vh; }
}
@media (max-width: 640px) {
    .lux-product-grid,
    .lux-product-grid--archive { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .lux-product-card {
        min-width: 0;
        box-shadow: 0 8px 24px rgba(43,35,27,.045);
    }
    .lux-product-card__image {
        aspect-ratio: 1 / .92;
        background: linear-gradient(180deg, #fff 0%, var(--lux-stone) 100%);
    }
    .lux-product-card__image img {
        padding: 6px;
    }
    .lux-product-card__badge,
    .lux-product-card__meta,
    .lux-product-card__foot {
        display: none !important;
    }
    .lux-product-card__body {
        padding: 8px 7px 9px;
    }
    .lux-product-card__body h2,
    .lux-product-card__body h3,
    .lux-product-card .woocommerce-loop-product__title {
        font-family: var(--lux-sans) !important;
        font-size: .68rem !important;
        font-weight: 600 !important;
        line-height: 1.18 !important;
        margin-bottom: 5px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .lux-product-card__price,
    .lux-product-card .price {
        font-family: var(--lux-sans);
        font-size: .68rem;
        line-height: 1.15;
        margin-bottom: 0;
    }
    .lux-guidance-grid { grid-template-columns: 1fr; }
    .lux-section { padding: 56px 0; }
    .lux-archive-hero__inner { padding: 44px 0; }
    .lux-archive-hero__actions { flex-direction: column; align-items: flex-start; }
    .lux-support-card { padding: 28px 24px; }
    .lux-empty-state { padding: 56px 24px; }
    .lux-container { padding: 0 20px; }

    .lux-footer-v14 {
        padding: 3rem 0 1.5rem !important;
    }
    .lux-footer-v14__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.6rem 1.2rem !important;
        margin-bottom: 2.25rem !important;
    }
    .lux-footer-v14__brand {
        grid-column: 1 / -1;
    }
    .lux-footer-v14__brand p {
        max-width: 30rem;
        margin-bottom: 1rem !important;
        line-height: 1.55 !important;
    }
    .lux-footer-v14__grid h4 {
        margin-bottom: .9rem !important;
        font-size: .66rem !important;
        letter-spacing: .08em !important;
    }
    .lux-footer-v14__grid ul {
        gap: .55rem !important;
        font-size: .78rem !important;
        line-height: 1.25 !important;
    }
    .lux-footer-v14__bottom {
        display: grid !important;
        gap: .6rem !important;
        justify-content: stretch !important;
        align-items: start !important;
        font-size: .62rem !important;
        line-height: 1.45 !important;
    }
}

/* Aurus WooCommerce single product normalization
   Keeps the product gallery controlled by WooCommerce/Flexslider and only
   adjusts layout, framing and responsive behavior. */
body.single-product .aurus-product-shell {
    width: min(100%, 1440px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 64px) clamp(16px, 4vw, 56px);
    background: #faf9f6;
}

body.single-product .aurus-product-shell > .product {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
    gap: clamp(28px, 4.5vw, 72px);
    align-items: start;
}

body.single-product .aurus-product-shell > .product::before,
body.single-product .aurus-product-shell > .product::after {
    content: none;
}

body.single-product .aurus-product-shell .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    max-width: 760px;
    margin: 0 auto;
    position: sticky;
    top: 24px;
}

body.single-product .aurus-product-shell .woocommerce-product-gallery .flex-viewport,
body.single-product .aurus-product-shell .woocommerce-product-gallery__image {
    background: #f4eee5;
    overflow: hidden !important;
}

/* G1: aspect-ratio removed from slide element — FlexSlider calculates its own height */

body.single-product .aurus-product-shell .woocommerce-product-gallery__image a {
    display: block;
    width: 100%;
}

body.single-product .aurus-product-shell .woocommerce-product-gallery__image img {
    width: 100% !important;
    /* height removed to allow natural aspect ratio */
    display: block;
    object-fit: contain !important;
    padding: clamp(8px, 2vw, 24px);
    background: transparent !important;
    transform: none;
    transition: transform .28s ease, opacity .2s ease;
}

@media (hover: hover) and (pointer: fine) {
    body.single-product .aurus-product-shell .woocommerce-product-gallery__image:hover img {
        transform: scale(1.035);
        cursor: zoom-in;
    }
}

body.single-product .aurus-product-shell .flex-control-nav.flex-control-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
}

/* Center thumbnails when fewer than full */
body.single-product .aurus-product-shell .flex-control-nav.flex-control-thumbs {
    justify-content: center;
}

body.single-product .aurus-product-shell .flex-control-thumbs li {
    width: auto !important;
    float: none !important;
    list-style: none;
    background: #f4eee5;
    border: 1px solid rgba(43, 35, 27, .08);
    overflow: hidden;
}

body.single-product .aurus-product-shell .flex-control-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    padding: 8px;
    opacity: .72;
    transition: opacity .2s ease, border-color .2s ease;
}

body.single-product .aurus-product-shell .flex-control-thumbs img.flex-active,
body.single-product .aurus-product-shell .flex-control-thumbs img:hover {
    opacity: 1;
}

body.single-product .aurus-product-shell .summary.entry-summary {
    float: none !important;
    width: 100% !important;
    margin: 0;
    color: #241d17;
}

body.single-product .aurus-product-shell .product_title {
    margin: 0 0 18px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.02;
    font-weight: 500;
}

body.single-product .aurus-product-shell .price {
    color: #241d17;
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    margin: 0 0 22px;
}

body.single-product .aurus-product-shell .woocommerce-product-details__short-description {
    color: #71675f;
    line-height: 1.75;
    margin-bottom: 22px;
}

body.single-product .aurus-product-shell form.cart {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

body.single-product .aurus-product-shell form.cart .quantity {
    display: none;
}

body.single-product .aurus-product-shell .single_add_to_cart_button {
    width: 100%;
    min-height: 58px;
    border-radius: 0;
    background: #17120e;
    color: #fff;
    border: 0;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body.single-product .aurus-product-shell .single_add_to_cart_button:hover {
    background: #2a2119;
}

body.single-product .aurus-ring-builder {
    border: 1px solid rgba(43, 35, 27, .1);
    background: #fff;
    padding: clamp(18px, 2.5vw, 28px);
    box-shadow: 0 18px 42px rgba(43, 35, 27, .045);
}

body.single-product .aurus-ring-builder__head span,
body.single-product .aurus-ring-summary span {
    display: block;
    margin-bottom: 8px;
    color: #9a7549;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body.single-product .aurus-ring-builder__head strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.55rem;
    font-weight: 500;
}

body.single-product .aurus-ring-builder__head p {
    margin: 0 0 18px;
    color: #74695f;
    line-height: 1.55;
}

body.single-product .aurus-ring-builder__mode {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

body.single-product .aurus-ring-builder__mode label {
    cursor: pointer;
}

body.single-product .aurus-ring-builder__mode input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.single-product .aurus-ring-builder__mode span {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(43, 35, 27, .12);
    background: #faf9f6;
    color: #5e5249;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.single-product .aurus-ring-builder__mode input:checked + span {
    background: #17120e;
    color: #fff;
    border-color: #17120e;
}

body.single-product .aurus-ring-builder__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap: 12px;
}

body.single-product .aurus-ring-card {
    border: 1px solid rgba(43, 35, 27, .1);
    padding: 14px;
    background: #fff;
}

body.single-product .aurus-ring-card header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

body.single-product .aurus-ring-card header span {
    color: #9a7549;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

body.single-product .aurus-ring-card header strong {
    text-align: right;
    font-size: .92rem;
}

body.single-product .aurus-size-picker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40px, 1fr)) !important;
    gap: 6px !important;
}

body.single-product .aurus-size-chip {
    min-height: 40px;
    border: 1px solid rgba(43, 35, 27, .14);
    background: #faf9f6;
    color: #241d17;
    font-weight: 700;
    font-size: .8rem;
}

body.single-product .aurus-size-chip.is-selected,
body.single-product .aurus-size-chip:hover {
    border-color: #17120e;
    background: #17120e;
    color: #fff;
}

body.single-product .aurus-engraving {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

body.single-product .aurus-engraving span,
body.single-product .aurus-no-engraving span {
    color: #7b6f66;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

body.single-product .aurus-engraving input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(43, 35, 27, .14);
    padding: 0 12px;
    background: #fff;
}

body.single-product .aurus-no-engraving {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 12px;
}

body.single-product .aurus-no-engraving input {
    margin: 2px 0 0;
}

body.single-product .aurus-ring-summary {
    margin-top: 14px;
    padding: 16px;
    background: #eee6dc;
    color: #241d17;
}

body.single-product .aurus-ring-summary strong {
    display: block;
    margin-bottom: 6px;
}

body.single-product .aurus-ring-summary small {
    display: block;
    color: #74695f;
    line-height: 1.45;
}

body.single-product .aurus-product-shell .woocommerce-tabs,
body.single-product .aurus-product-shell .related.products {
    grid-column: 1 / -1;
}

@media (max-width: 980px) {
    body.single-product .aurus-product-shell {
        padding: 22px 16px 44px;
    }

    body.single-product .aurus-product-shell > .product {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    body.single-product .aurus-product-shell .woocommerce-product-gallery {
        position: static;
        max-width: 620px;
    }

    body.single-product .aurus-product-shell .flex-control-nav.flex-control-thumbs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        padding-bottom: 4px;
    }

    body.single-product .aurus-product-shell .flex-control-thumbs li {
        flex: 0 0 76px;
        scroll-snap-align: start;
    }
}

@media (max-width: 640px) {
    body.single-product .aurus-ring-builder__grid {
        grid-template-columns: 1fr !important;
    }

    body.single-product .aurus-ring-builder__mode {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    body.single-product .aurus-ring-builder__mode span {
        min-height: 44px;
        font-size: .65rem;
        letter-spacing: .06em;
    }

    body.single-product .aurus-product-shell .woocommerce-product-gallery__image img {
        padding: 18px;
    }
}

@media (max-width: 360px) {
    body.single-product .aurus-ring-builder__mode span {
        font-size: .58rem;
        letter-spacing: .04em;
    }
}

/* Aurus live audit fixes - mobile overflow and hero readability */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body.single-product .aurus-product-shell {
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
}

body.single-product .aurus-product-shell *,
body.single-product .aurus-product-shell *::before,
body.single-product .aurus-product-shell *::after {
    box-sizing: border-box;
}

body.single-product .aurus-product-shell .woocommerce-breadcrumb,
body.single-product .aurus-product-shell .product_title,
body.single-product .aurus-product-shell .woocommerce-product-details__short-description,
body.single-product .aurus-ring-card header strong {
    overflow-wrap: anywhere;
}

@media (max-width: 640px) {
    .ax-hero__content {
        max-width: 100%;
        padding-inline: 22px;
    }

    .ax-hero__h1 {
        max-width: 340px;
        font-size: clamp(2.75rem, 13vw, 3.35rem) !important;
        line-height: 1.05 !important;
        letter-spacing: 0 !important;
        overflow-wrap: normal;
    }

    .ax-hero__ctas {
        width: 100%;
    }

    .ax-hero__ctas .ax-btn {
        width: min(100%, 330px);
        padding-inline: 20px;
        letter-spacing: .18em;
    }

    body.single-product .aurus-product-shell .product_title {
        font-size: clamp(1.95rem, 10vw, 2.5rem);
    }
}

/* Aurus live audit fixes v15.1.2 - force mobile text containment */
body.single-product .aurus-product-shell > .product,
body.single-product .aurus-product-shell .summary.entry-summary,
body.single-product .aurus-product-shell .woocommerce-product-details__short-description,
body.single-product .aurus-product-shell .woocommerce-product-details__short-description *,
body.single-product .aurus-ring-builder,
body.single-product .aurus-ring-card {
    min-width: 0 !important;
    max-width: 100% !important;
}

body.single-product .aurus-product-shell .product_title,
body.single-product .aurus-product-shell .woocommerce-product-details__short-description,
body.single-product .aurus-product-shell .stock,
body.single-product .aurus-product-shell .price {
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
}

@media (max-width: 640px) {
    body.single-product .aurus-product-shell {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body.single-product .aurus-product-shell .product_title {
        max-width: calc(100vw - 32px) !important;
        font-size: clamp(1.72rem, 8.8vw, 2.12rem) !important;
        line-height: 1.08 !important;
    }

    body.single-product .aurus-product-shell .woocommerce-product-details__short-description {
        max-width: calc(100vw - 32px) !important;
        font-size: .9rem !important;
        line-height: 1.62 !important;
    }

    body.single-product .aurus-ring-card header {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    body.single-product .aurus-ring-card header strong {
        text-align: left !important;
    }
}

/* P0-02: Styling for Zero-Price / Price Consultation Products */
body.single-product.aurus-zero-price-product .quantity,
body.single-product.aurus-zero-price-product button[name="add-to-cart"],
body.single-product.aurus-zero-price-product .single_add_to_cart_button:not(.aurus-whatsapp-consult-button),
body.single-product.aurus-zero-price-product .mercadopago-payment-methods-installment,
body.single-product.aurus-zero-price-product .mp-installment-text,
body.single-product.aurus-zero-price-product .payment-methods-installment,
body.single-product.aurus-zero-price-product .aurus-price-consult + p {
	display: none !important;
}

body.single-product.aurus-zero-price-product .aurus-whatsapp-consult-wrapper {
	margin-top: 18px;
	width: 100%;
}

body.single-product.aurus-zero-price-product .aurus-whatsapp-consult-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	background: #B98E55;
	color: #fff;
	border: 1px solid #B98E55;
	font-family: 'Manrope', sans-serif;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .18em;
	text-transform: uppercase;
	transition: background-color .22s, border-color .22s;
	cursor: pointer;
}

body.single-product.aurus-zero-price-product .aurus-whatsapp-consult-button:hover {
	background: #17120e;
	border-color: #17120e;
	color: #fff;
}

/* Specific express checkout and payment button selectors to hide only on zero-price pages */
body.single-product.aurus-zero-price-product .wcppec-checkout-buttons__button,
body.single-product.aurus-zero-price-product .payment_services_buttons,
body.single-product.aurus-zero-price-product #mercadopago-button,
body.single-product.aurus-zero-price-product .mp-button,
body.single-product.aurus-zero-price-product .stripe-payment-request-button,
body.single-product.aurus-zero-price-product .gpay-card-info-container,
body.single-product.aurus-zero-price-product .apple-pay-button {
	display: none !important;
}

/* Engraving disabled state styles */
body.single-product .aurus-engraving input:disabled {
    background: #faf9f6;
    color: #b0a79f;
    opacity: 0.6;
    cursor: not-allowed;
    border-color: rgba(43, 35, 27, .06);
}

body.single-product .aurus-engraving:has(input:disabled) {
    opacity: 0.6;
}
