/* =============================================
   ANILLOS DE LUJO — Ariun Jewelry
   Paleta: Nude · Rose Gold · Taupe
   ============================================= */

   :root {
    --nude: #F9E2D6;
    --nude-dark: #F0D4C4;
    --rosegold: #B09687;
    --taupe: #5C4D43;
    --gold: #c9a84c;
    --cream: #FDF8F5;
    --white: #ffffff;
    --transition: 0.35s ease;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--taupe);
}

/* ── HERO DE LUJO PERSONALIZADO ── */
.hero-anillos-unique {
    background: linear-gradient(135deg, #F9E2D6 0%, #F0D4C4 50%, #e8c5b0 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-brand-bg {
    position: absolute;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: rgba(176, 150, 135, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 20px;
    line-height: 1;
    pointer-events: none;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
}

.hero-subtitle-top {
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--rosegold);
    margin-bottom: 12px;
    display: block;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.hero-anillos-unique h1 {
    font-family: 'Bodoni Moda', 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900 !important;
    color: var(--taupe) !important;
    letter-spacing: 2px;
    margin: 0 0 16px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0px !important;
    opacity: 1 !important;
    visibility: visible !important;
    
    filter: brightness(1) contrast(1) saturate(1) !important;
}

/* Aplica color a TODOS los elementos hijos y la primera letra */
.hero-anillos-unique h1,
.hero-anillos-unique h1::first-letter,
.hero-anillos-unique h1 span,
.hero-anillos-unique h1 font,
.hero-anillos-unique h1 b,
.hero-anillos-unique h1 strong,
.hero-anillos-unique h1 i,
.hero-anillos-unique h1 em,
.hero-anillos-unique h1 mark,
.hero-anillos-unique h1 * {
    font-weight: 900 !important;
    color: var(--taupe) !important;
    -webkit-text-fill-color: var(--taupe) !important;
    background: none !important;
    background-color: transparent !important;
    text-shadow: none !important;
    -webkit-text-stroke: 0px !important;
    filter: brightness(1) !important;
}

.hero-anillos-unique h1::before,
.hero-anillos-unique h1::after {
    display: none !important;
}

.hero-anillos-unique h1 em {
    font-style: italic;
    font-weight: 900 !important;
    color: var(--taupe) !important;
    -webkit-text-fill-color: var(--taupe) !important;
    letter-spacing: 2px;
    background: none !important;
    text-shadow: none !important;
}

/* Destruir estilos de Google Translate */
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
    color: var(--taupe) !important;
}

.hero-anillos-unique .hero-sub {
    font-size: 0.95rem;
    color: rgba(92, 77, 67, 0.75);
    letter-spacing: 2px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-divider {
    width: 60px;
    height: 1px;
    background: var(--rosegold);
    margin: 20px auto;
    opacity: 0.6;
    position: relative;
    z-index: 2;
}

/* ── FILTROS SECCIÓN ── */
.filtros-section {
    padding: 30px 20px;
    background: var(--cream);
}

.filtros-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filtro-btn {
    background: transparent;
    color: var(--taupe);
    border: 1px solid rgba(176, 150, 135, 0.4);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.filtro-btn:hover,
.filtro-btn.active {
    background: var(--taupe);
    color: var(--white);
    border-color: var(--taupe);
    box-shadow: 0 4px 12px rgba(92, 77, 67, 0.15);
}

/* ── SECCIÓN CONTENEDORA DE PRODUCTOS ── */
.anillos-section {
    padding: 20px 20px 80px;
    background: var(--cream);
}

/* ── TARJETA PREMIUM DE PRODUCTO ── */
.producto-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(92, 77, 67, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.producto-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(92, 77, 67, 0.14);
}

/* ── IMAGEN CON OVERLAY EFECTO HOVER ── */
.producto-imagen-wrap {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: #fff;
}

.producto-imagen-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.producto-card:hover .producto-imagen-wrap img {
    transform: scale(1.06);
}

.producto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.producto-imagen-wrap:hover .producto-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.btn-ver-anillo {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    color: var(--taupe);
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.producto-imagen-wrap:hover .btn-ver-anillo {
    opacity: 1;
    transform: translateY(0);
}

/* ── BADGES Y ICONOS FLOTANTES ── */
.producto-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rosegold);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.favorito-anillo {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--taupe);
    background: rgba(255, 255, 255, 0.8);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.favorito-anillo:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

/* ── INFO DE PRODUCTO ── */
.producto-info {
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.producto-cat {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rosegold);
    margin-bottom: 6px;
    font-weight: 600;
}

.producto-nombre {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--taupe);
    margin: 0 0 6px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.producto-material {
    font-size: 0.8rem;
    color: rgba(92, 77, 67, 0.65);
    margin-bottom: 16px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.producto-precio {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--rosegold);
    display: block;
    margin-top: auto;
    margin-bottom: 14px;
}

.producto-precio small {
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(92, 77, 67, 0.5);
    letter-spacing: 1px;
    margin-left: 4px;
}

/* ── BOTÓN AGREGAR CARRITO ── */
.btn-carrito-anillo {
    width: 100%;
    background: var(--rosegold);
    color: white;
    border: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-carrito-anillo:hover {
    background: var(--taupe);
    transform: translateY(-2px);
}

/* ── RESPONSIVE FLUIDO MOVIL TANTO PC── */
@media (max-width: 576px) {
    .producto-info {
        padding: 12px 10px;
    }

    .producto-nombre {
        font-size: 1.05rem;
    }

    .producto-precio {
        font-size: 1.2rem;
    }
}