/*
 Theme Name:   Blocksy Child - El BaÃºl de Pandora
 Theme URI:    https://elbauldepandora.com
 Description:  Tema hijo de Blocksy con vista inmersiva y desarrollos personalizados.
 Author:       Simon Sandrea
 Template:     blocksy
 Version:      1.0.2
 Text Domain:  blocksy-child
*/

/* =========================================================================
   Estilos Generales y EstÃ©tica Inmersiva para El BaÃºl de Pandora
   ========================================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fdfcfc;
    /* Blanco perla/crema lujo */
    --text-primary: #222222;
    /* Grafito profundo, no negro puro */
    --text-secondary: #5a5a5a;
    /* Gris neutro oscuro */
    --glass-bg: rgba(255, 255, 255, 0.85);
    /* Cristal claro con mucho blur */
    --glass-border: rgba(0, 0, 0, 0.05);
    /* Borde claro apenas visible */
    --gold-accent: #c29b62;
    /* Dorado viejo y elegante */

    /* Variables de estructura */
    --section-padding: 8rem 2rem;
}

body.pandora-immersive {
    width: 100%;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
}

#pwa-app-content {
    animation: globalFadeIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

@keyframes globalFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TipografÃ­a Compartida */
h1,
h2,
h3,
.brand-logo {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    font-weight: 500;
}

/* =========================================================================
   Navbar Minimalista (Light Theme)
   ========================================================================= */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    background: transparent;
    border-bottom: 1px solid transparent;
    pointer-events: none;
}

.main-nav .nav-container {
    pointer-events: auto;
}

.main-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex !important;
    align-items: center !important;
    line-height: 1;
}

.brand-logo-img,
.main-nav .brand-logo img,
.nav-container .brand-logo img,
a.brand-logo img {
    height: 48px !important;
    width: auto !important;
    max-width: 200px !important;
    max-height: 48px !important;
    display: block !important;
    object-fit: contain !important;
    position: static !important;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img,
.main-nav .brand-logo:hover img {
    opacity: 0.8;
    transform: scale(1.03);
}

.nav-links a,
.nav-list a {
    color: #333333;
    text-decoration: none;
    margin: 0 1.5rem;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.4s ease;
    font-weight: 400;
    position: relative;
}

.nav-links a::after,
.nav-list a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #333333;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-links a:hover::after,
.nav-list a:hover::after {
    transform: scaleX(1);
}

.nav-links a:hover,
.nav-list a:hover {
    color: #1a1a1a;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-actions a,
.nav-actions button,
.nav-actions .pandora-account-wrapper {
    color: var(--text-primary);
    margin-left: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.nav-actions a:hover {
    color: var(--gold-accent);
    transform: translateY(-2px);
}

/* =========================================================================
   Panel Global Superpuesto (Search / Filters Overlay)
   ========================================================================= */
.global-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(252, 252, 252, 0.98);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.global-search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-overlay-btn {
    position: absolute;
    top: 2rem;
    right: 3rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-overlay-btn:hover {
    transform: rotate(90deg);
}

.overlay-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.global-search-overlay.active .overlay-content {
    transform: translateY(0);
}

.overlay-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.overlay-content form {
    display: flex;
    border-bottom: 1px solid var(--text-secondary);
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}

.overlay-content input[type="search"] {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 2rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    outline: none;
}

.overlay-content input::placeholder {
    color: #ccc;
}

.overlay-content button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.overlay-content .quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-content .quick-links span {
    color: var(--text-secondary);
}

.overlay-content .quick-links a {
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.overlay-content .quick-links a:hover {
    border-color: var(--text-primary);
}

/* =========================================================================
   Secciones Generales
   ========================================================================= */
section {
    padding: 6rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    /* Bordes menos redondeados, mÃ¡s premium */
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
}

.cta-button.primary:hover {
    background: transparent;
    color: var(--text-primary);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.cta-button.secondary:hover {
    border-color: var(--text-primary);
    background: rgba(0, 0, 0, 0.02);
}

/* =========================================================================
   1. Hero Section
   ========================================================================= */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    max-width: 100%;
    /* Ocupa todo el ancho */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    /* Extra-sutil sobre el background crema */
    z-index: -1;
    mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 25%, transparent 100%);
}

.hero-content {
    animation: fadeInDown 1.5s ease-out;
}

.hero-content .brand-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 500;
    letter-spacing: 4px;
    background: linear-gradient(to bottom right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-content .brand-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.hero-text-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--text-primary);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-text-link:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}

.hero-text-link svg {
    transition: transform 0.3s ease;
}

.hero-text-link:hover svg {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* =========================================================================
   2. Novedades (Carousel de Productos)
   ========================================================================= */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 2rem;
    /* Espacio para sombras */
    -ms-overflow-style: none;
    /* IE y Edge */
    scrollbar-width: none;
    /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari y Opera */
}

.carousel-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.product-card {
    min-width: 300px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    /* Bordes sutiles */
    padding: 1rem;
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.add-to-cart-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: white;
    color: black;
}

.product-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.product-info .price {
    font-size: 1.2rem;
    color: var(--gold-accent);
    /* Destacamos el precio */
    font-weight: 500;
}

/* =========================================================================
   3. CategorÃ­as (Grid) - RediseÃ±ado
   ========================================================================= */
.categories-section {
    padding-top: 4rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    height: 600px;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
}

.category-card:nth-child(even) {
    margin-top: 8rem;
}

.category-card.wide {
    grid-column: span 2;
    height: 400px;
    margin-top: 4rem;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

/* Oscurecemos la imagen para que destaque el texto */
.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.45) 50%, transparent 100%);
    z-index: 2;
}

.category-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.category-card:hover .category-bg {
    transform: scale(1.05);
    /* Zoom sutil a la foto */
}

.categories-grid .card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.categories-grid .card-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.categories-grid .explore-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.categories-grid .explore-btn svg {
    width: 16px;
    height: 16px;
}

.category-card:hover .explore-btn {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

/* =========================================================================
   4. La Historia (Lifestyle)
   ========================================================================= */
.brand-story-section {
    padding: 8rem 2rem;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 4rem;
}

.story-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 600px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

.story-text {
    padding-right: 2rem;
}

.story-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-accent);
    display: block;
    margin-bottom: 1rem;
}

.story-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    font-size: 3rem;
    background: linear-gradient(to right, var(--text-primary), var(--gold-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.story-text .cta-button {
    margin-top: 2rem;
}

/* =========================================================================
   5. Footer Moderno
   ========================================================================= */
.modern-footer {
    border-top: 1px solid var(--glass-border);
    padding: 6rem 2rem 2rem;
    background: #fdfdfd;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-style: italic;
}

.footer-newsletter h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-newsletter p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--text-primary);
    flex-grow: 1;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #a0a0a0;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--gold-accent);
}

.secret-channel-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin: 1.5rem 0 2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 13px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Outfit', sans-serif;
    text-transform: none;
}

.secret-channel-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.secret-channel-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-newsletter {
        align-items: center;
        text-align: center;
    }
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a,
.footer-social a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =========================================================================
   Responsive (MÃ³viles y Tablets)
   ========================================================================= */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        padding: 3rem;
    }

    .story-image {
        height: 400px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* En mÃ³vil se ocultarÃ­a en un menÃº hamburguesa */
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 0.5rem;
    }

    section {
        padding: 4rem 1rem;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card.wide {
        grid-column: span 1;
    }

    .hero-content .brand-title {
        font-size: 3rem;
    }
}

/* =========================================================================
   WooCommerce Overrides (Phase 3)
   ========================================================================= */

/* --- CatÃ¡logo (Archive) --- */
.pandora-archive-wrapper {
    padding: var(--section-padding);
    padding-top: 12rem;
    /* Espacio para el header */
    max-width: 1400px;
    margin: 0 auto;
}

.archive-header {
    margin-bottom: 4rem;
    text-align: center;
}

.archive-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* NavegaciÃ³n Superior de Tienda (Store Top Nav) */
.store-top-nav-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.store-top-nav-wrapper nav ul.store-top-nav-list,
.store-top-nav ul.store-top-nav-list,
ul.store-top-nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    /* Allow natural left alignment for scroll */
    gap: 3rem !important;
    flex-wrap: nowrap !important;
    /* Force single line */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

ul.store-top-nav-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

ul.store-top-nav-list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
    white-space: nowrap;
}

.store-top-nav-wrapper nav,
.store-top-nav {
    display: block;
    width: 100%;
}

/* Category Navigation Scroll Container & Indicator */
.store-nav-scroll-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    /* Prevent indicator from escaping bounds */
}

/* Margin between levels */
.level-1-container {
    margin-bottom: 1.5rem;
}

.level-2-container {
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--bg-primary) 80%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
    z-index: 10;
    color: var(--text-secondary);
    padding-right: 5px;
    opacity: 0.8;
    animation: bounceRight 2s infinite ease-in-out;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-5px);
    }
}

/* Hide indicator on larger screens where it might not overflow */
@media (min-width: 1200px) {
    ul.store-top-nav-list {
        justify-content: center !important;
        /* Re-center if plenty of space */
    }

    .scroll-indicator {
        display: none;
    }
}

.store-top-nav a {
    display: inline-block;
    padding: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Level 1 specific styling (Collections) */
ul.level-1 a {
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

ul.level-1 a:hover,
ul.level-1 a.active {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Level 2 specific styling (Subcategories) */
ul.level-2 a {
    color: #888;
    /* Slightly more muted default */
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    text-transform: none;
    /* Rely on PHP ucwords */
}

ul.level-2 a:hover,
ul.level-2 a.active {
    color: var(--bg-primary);
    background: var(--text-primary);
    border-color: var(--text-primary);
}

/* Layout Tienda con Sidebar (Filtros) */
.pandora-shop-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.pandora-shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.pandora-shop-products {
    flex-grow: 1;
}

/* Mobile Filter Bar & Overlay Defaults */
.mobile-filter-bar {
    display: none;
    margin-bottom: 2rem;
    width: 100%;
}

.mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.sidebar-header-mobile {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-header-mobile h3 {
    font-size: 1.2rem;
    margin: 0;
}

.close-filter-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

.pandora-shop-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.pandora-shop-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Estilos de las cajas de Filtro */
.pandora-filter-box {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.pandora-filter-box:last-child {
    border-bottom: none;
}

.pandora-filter-box .widget-title,
.pandora-filter-box h2.widgettitle {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.5rem !important;
}

.pandora-filter-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pandora-filter-box ul li {
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pandora-filter-box ul li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    flex-grow: 1;
}

.pandora-filter-box ul li a:hover {
    color: var(--text-primary);
}

.pandora-filter-box ul li .count {
    font-size: 11px;
    opacity: 0.5;
}

/* Custom Checkbox Look for Filters */
.contextual-category-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem !important;
}

.custom-cat-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.custom-cat-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.custom-cat-checkbox input[type="checkbox"]:checked {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
}

.custom-cat-checkbox input[type="checkbox"]:checked::after {
    content: 'âœ“';
    position: absolute;
    color: var(--bg-primary);
    font-size: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-cat-checkbox:hover {
    color: var(--text-primary);
}

.custom-cat-checkbox:hover input[type="checkbox"] {
    border-color: var(--text-primary);
}

.contextual-category-list li.chosen .custom-cat-checkbox {
    color: var(--text-primary);
    font-weight: 500;
}

/* Scrollable Categories Box */
.scrollable-categories-box ul.contextual-category-list {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
    /* Custom thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.scrollable-categories-box ul.contextual-category-list::-webkit-scrollbar {
    width: 4px;
}

.scrollable-categories-box ul.contextual-category-list::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px;
}

/* Price Filter Adjustments */
.widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: #eaeaea;
    height: 4px;
    border: none;
    border-radius: 2px;
}

.widget_price_filter .ui-slider .ui-slider-range {
    background: var(--gold-accent);
}

.widget_price_filter .ui-slider .ui-slider-handle {
    background: var(--bg-primary);
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    width: 14px;
    height: 14px;
    top: -5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    outline: none;
}

.widget_price_filter .price_slider_amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

.widget_price_filter .price_slider_amount .button {
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.widget_price_filter .price_slider_amount .button:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.widget_price_filter .price_label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
}

/* Custom Manual Price Inputs */
.custom-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.manual-price-input {
    width: 60px;
    padding: 0.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    text-align: center;
}

.manual-price-input:focus {
    border-color: var(--text-primary);
}

.price-separator {
    color: var(--text-secondary);
    font-size: 12px;
}

.apply-price-btn {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    padding: 0.4rem 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-left: auto;
}

.apply-price-btn:hover {
    opacity: 0.8;
}

/* Grilla de productos en catÃ¡logo */
.archive-content ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    column-gap: 3rem !important;
    row-gap: 4rem !important;
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 1024px) {
    .pandora-shop-layout {
        flex-direction: column;
    }

    .mobile-filter-bar {
        display: block;
    }

    .pandora-shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 350px;
        max-width: 85vw;
        height: 100vh;
        background: var(--bg-primary);
        z-index: 9999;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
        transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 2rem;
        overflow-y: auto;
        margin-bottom: 0;
    }

    .pandora-shop-sidebar.active {
        left: 0;
    }

    .sidebar-header-mobile {
        display: flex;
    }

    .archive-content ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .archive-content ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 1rem !important;
        row-gap: 2.5rem !important;

    }
}

.archive-content ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    border: none !important;
    /* Limpiamos bordes por defecto de Woo */
    background: transparent !important;
}

.archive-content ul.products li.product .woocommerce-loop-product__link {
    display: block;
    margin-bottom: 1rem;
}

.archive-content ul.products li.product img {
    border-radius: 0px;
    background-color: #f9f9f9 !important;
    box-shadow: none !important;
    transition: transform 0.8s ease-out;
    width: 100%;
}

.archive-content ul.products li.product:hover img {
    transform: scale(1.03);
}

.archive-content ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    color: var(--text-primary) !important;
    margin-top: 1rem !important;
    padding: 0 !important;
}

.archive-content ul.products li.product .price {
    color: var(--text-secondary) !important;
    font-size: 13px !important;
}

/* --- PaginaciÃ³n del CatÃ¡logo (Phase 3.10) --- */
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    border: none !important;
    margin-top: 4rem !important;
}

.woocommerce-pagination ul.page-numbers li {
    border: none !important;
}

.woocommerce-pagination ul.page-numbers li a,
.woocommerce-pagination ul.page-numbers li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce-pagination ul.page-numbers li span.current {
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
}

/* --- Producto Ãšnico (Single Product) --- */
.pandora-single-product-container {
    padding: 4rem 2rem;
    padding-top: 12rem;
    max-width: 1600px;
    margin: 0 auto;
}

.luxury-product-layout {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 80px;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.luxury-gallery-col {
    width: calc(50% - 40px);
    /* 50/50 split minus half the gap */
    flex: 0 0 auto;
    min-width: 300px;
}

.luxury-summary-col {
    width: calc(50% - 40px);
    /* 50/50 split minus half the gap */
    flex: 0 0 auto;
    padding: 0;
    min-width: 300px;
}

/* GalerÃ­a: layout con miniaturas a la izquierda en desktop */
.woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    overflow: visible;
    display: flex !important;
    flex-direction: row-reverse;
    gap: 14px;
    align-items: flex-start;
}

.woocommerce-product-gallery__wrapper {
    margin: 0 !important;
    flex: 1 1 auto;
    width: 0;
}

/* Miniaturas verticales a la IZQUIERDA en desktop */
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
    flex: 0 0 90px;
    width: 90px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    order: -1;
}

.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
    width: 90px;
    height: 90px;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.55;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: 2px solid transparent;
}

.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img:hover,
.woocommerce-product-gallery .flex-control-nav.flex-control-thumbs img.flex-active {
    opacity: 1;
    border-color: var(--text-primary);
}

.luxury-gallery-col img,
.woocommerce-product-gallery img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    background-color: #f9f9f9;
}

.summary-content-wrapper {
    width: 100%;
    padding-top: 0;
    /* Sophia pro no usa sticky, lo quitamos */
}

.woocommerce-breadcrumb {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.woocommerce-breadcrumb a:hover {
    color: var(--text-primary);
    opacity: 1;
}

.product_title {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0px;
    text-transform: capitalize;
}

.luxury-summary-col .price {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 2rem;
    display: block;
}

.woocommerce-product-details__short-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Ocultar estrellas nativas de WooCommerce para limpiar UI */
.woocommerce-product-rating {
    display: none !important;
}

.product-actions-wrapper form.cart {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
    width: 100%;
}

.product-actions-wrapper div.quantity {
    display: flex;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    width: 100px;
    height: 50px;
    margin-bottom: 0;
}

.product-actions-wrapper div.quantity input.qty {
    width: 100%;
    height: 100%;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    font-size: 1rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Ocultar botones incrementales por defecto en number input */
.product-actions-wrapper div.quantity input.qty::-webkit-inner-spin-button,
.product-actions-wrapper div.quantity input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Estilos para productos variables (dropdowns y tabla) */
.product-actions-wrapper form.cart table.variations {
    width: 100%;
    margin-bottom: 2rem;
    border: none;
}

.product-actions-wrapper form.cart table.variations th {
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 0;
    width: 30%;
    border: none;
}

.product-actions-wrapper form.cart table.variations td {
    padding: 10px 0;
    border: none;
}

.product-actions-wrapper form.cart table.variations select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--text-secondary);
    background: transparent;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    border-radius: 4px;
    outline: none;
}

.product-actions-wrapper form.cart .reset_variations {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-decoration: underline;
}

/* Envoltura de botones de carrito para producto variable */
.product-actions-wrapper form.cart .woocommerce-variation-add-to-cart,
.product-actions-wrapper form.cart .single_variation_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-actions-wrapper button.single_add_to_cart_button,
.product-actions-wrapper .button.alt,
.product-actions-wrapper form.cart .button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 200px;
    height: 50px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    padding: 0 2rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.product-actions-wrapper button.single_add_to_cart_button:hover,
.product-actions-wrapper .button.alt:hover,
.product-actions-wrapper form.cart .button:hover {
    background: transparent;
    color: var(--text-primary);
}

/* --- Insignias de EnvÃ­o (Sophia Pro Style) --- */
.pandora-shipping-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.shipping-badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
}

.shipping-badge-item i,
.shipping-badge-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-primary);
    stroke-width: 1.5;
}

.single-whatsapp-btn {
    border-radius: 4px !important;
    margin-top: 0 !important;
}

.single-whatsapp-btn:hover {
    background-color: #25D366 !important;
    color: #ffffff !important;
}

.product-meta-custom {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-meta-custom span {
    display: block;
    margin-bottom: 0.5rem;
}

/* --- AcordeÃ³n de Producto Ãšnico (Phase 4.7) --- */
.pandora-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--glass-border);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.pandora-accordion-header:hover {
    color: var(--text-secondary);
}

.pandora-accordion-header.active {
    border-bottom-color: transparent;
}

.pandora-accordion-content {
    padding: 0 0 2rem 0 !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--glass-border) !important;
}

/* Ocultar tabs nativas por prevenciÃ³n extra */
.woocommerce-tabs ul.tabs {
    display: none !important;
}

.shop_attributes {
    border: none !important;
}

.shop_attributes th,
.shop_attributes td {
    border: none !important;
    border-bottom: 1px solid var(--glass-border) !important;
    padding: 1rem 0 !important;
    font-family: 'Outfit', sans-serif;
}

.shop_attributes th {
    color: var(--text-primary);
    font-weight: 500;
}

.luxury-product-bottom {
    margin-top: 6rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 4rem;
}

/* Ocultar tÃ­tulo genÃ©rico de "Productos relacionados" */
.related.products>h2 {
    display: none !important;
}

/* Responsividad Producto Ãšnico */
@media (max-width: 1024px) {
    .luxury-product-layout {
        flex-direction: column !important;
        gap: 3rem;
    }

    .luxury-gallery-col,
    .luxury-summary-col {
        width: 100% !important;
        padding: 0;
    }

    .summary-content-wrapper {
        position: static;
    }

    .pandora-single-product-container {
        padding: 2rem 1.5rem;
        padding-top: 8rem;
    }

    .product_title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .luxury-summary-col .price {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .woocommerce-product-details__short-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* --- GalerÃ­a: miniaturas horizontales abajo en mobile --- */
    .woocommerce-product-gallery {
        flex-direction: column !important;
        gap: 12px;
    }

    .woocommerce-product-gallery__wrapper {
        width: 100% !important;
        flex: none;
    }

    .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs {
        flex: none;
        width: 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px;
        order: 0;
    }

    .woocommerce-product-gallery .flex-control-nav.flex-control-thumbs li {
        width: 72px !important;
        height: 72px !important;
    }

    .product-actions-wrapper form.cart {
        gap: 1rem;
    }
}

/* =========================================================================
   WooCommerce Cart & Checkout (Phase 4)
   ========================================================================= */

/* Estilos compartidos para tablas (Carrito, Resumen de Pedido) */
.woocommerce table.shop_table,
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-color: var(--glass-border) !important;
}

.woocommerce table.shop_table th {
    background: transparent !important;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 500;
}

.woocommerce table.shop_table td.product-name a {
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Botones WC genÃ©ricos (Actualizar carrito, Pagar) */
.woocommerce button.button {
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
    border: 1px solid var(--text-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 0.9rem !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    font-weight: 400 !important;
}

.woocommerce button.button:hover {
    background: transparent !important;
    color: var(--text-primary) !important;
}

.woocommerce button.button.alt:hover {
    background: var(--gold-accent) !important;
    border-color: var(--gold-accent) !important;
    color: white !important;
}

/* Inputs y Selects */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: transparent !important;
    border: 1px solid var(--text-secondary) !important;
    border-radius: 4px !important;
    color: var(--text-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    padding: 10px !important;
}

.woocommerce form .form-row label {
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
}

/* Mensajes de WooCommerce */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    background: transparent !important;
    border-top-color: var(--gold-accent) !important;
    color: var(--text-primary) !important;
    border-left: 1px solid var(--glass-border) !important;
    border-right: 1px solid var(--glass-border) !important;
    border-bottom: 1px solid var(--glass-border) !important;
    border-radius: 4px;
}

.woocommerce-message::before {
    color: var(--gold-accent) !important;
}

/* Ajustes Responsive Finales */
@media (max-width: 768px) {

    .pandora-archive-wrapper,
    .pandora-single-product-container {
        padding-top: 8rem;
    }

    .archive-title {
        font-size: 2.5rem;
    }

    .product_title {
        font-size: 2.5rem;
    }
}

/* =========================================================================
   Fase 5: UI Global, IntegraciÃ³n y Offcanvas
   ========================================================================= */

/* Barras de desplazamiento global (Phase 5.5) */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cccccc;
}

/* Overlay Global de BÃºsqueda (Phase 5.1 & 5.2) */
.global-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
}

.global-search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* BotÃ³n Cerrar (Phase 5.3) */
.close-overlay-btn {
    position: absolute;
    top: 3rem;
    right: 4rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10000;
}

.close-overlay-btn svg {
    width: 30px;
    height: 30px;
    stroke-width: 1px;
}

.overlay-content {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

.overlay-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.overlay-content form {
    width: 100%;
}

.overlay-content input[type="search"] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-primary);
    padding: 1rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    /* TamaÃ±o gigantesco pedido en Tarea 5.1 */
    color: var(--text-primary);
    text-align: center;
    outline: none;
}

.overlay-content input[type="search"]::placeholder {
    color: rgba(0, 0, 0, 0.1);
}

.overlay-content button[type="submit"] {
    display: none;
    /* Ocultamos el botÃ³n porque pulsarÃ¡ enter */
}

.quick-links {
    margin-top: 3rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.quick-links span {
    margin-right: 1rem;
}

.quick-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 0.5rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    border-bottom-color: var(--text-primary);
}

/* Off-canvas MiniCart (Phase 5.6 & 5.7) */
.pandora-minicart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.pandora-minicart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.pandora-minicart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 9999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.pandora-minicart-panel.active {
    right: 0;
}

@media (max-width: 480px) {
    .pandora-minicart-panel {
        width: 100%;
        right: -100%;
    }
}

.minicart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.minicart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 400;
}

.minicart-header button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.minicart-header button:hover {
    color: var(--text-primary);
}

/* Cart Counter Header */
.pandora-cart-count {
    font-size: 11px;
    font-weight: 600;
    margin-left: 5px;
    color: var(--p-gold);
    vertical-align: middle;
}

/* Cart Shake Animation */
@keyframes cartShake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px) rotate(-5deg);
    }

    50% {
        transform: translateX(3px) rotate(5deg);
    }

    75% {
        transform: translateX(-3px) rotate(-5deg);
    }

    100% {
        transform: translateX(0);
    }
}

.cart-animate {
    animation: cartShake 0.4s ease-in-out;
}

/* Ensure Side Panels Scroll */
.pandora-minicart-panel,
.pandora-panel {
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.minicart-content,
.pandora-panel-body {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 100px !important;
    -webkit-overflow-scrolling: touch;
}

/* Order Status Badges */
.order-status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-processing {
    background-color: #dcfce7;
    color: #166534;
}

.status-completed {
    background-color: #dcfce7;
    color: #166534;
}

.status-cancelled {
    background-color: #fee2e2;
    color: #991b1b;
}

.status-apartado {
    background-color: #e0f2fe;
    color: #075985;
    border: 1px solid #bae6fd;
}

.minicart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* =========================================================================
   PÃ¡gina de Colecciones (Editorial Style)
   ========================================================================= */

.collections-page {
    padding-top: 100px;
    /* Espacio para el header fijo */
}

.collections-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
}

.collections-hero-content .brand-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1rem;
}

.collections-grid-wrapper {
    padding: 4rem 2rem 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collections-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.collection-item {
    position: relative;
    overflow: hidden;
}

.collection-item-large {
    grid-column: span 2;
    height: 600px;
}

.collection-item-standard {
    height: 600px;
}

.collection-card {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.collection-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 4rem;
    transition: background 0.5s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.collection-info {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.collection-card:hover .collection-info {
    transform: translateY(0);
}

.collection-count {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.collection-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.collection-explore {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .collection-explore {
    opacity: 1;
}

.collections-manifesto {
    padding: 10rem 2rem;
    text-align: center;
    background-color: #fcfcfc;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
}

.manifesto-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.manifesto-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-secondary);
    font-weight: 300;
}

@media (max-width: 991px) {

    .collection-item-large,
    .collection-item-standard {
        grid-column: span 2;
        height: 500px;
    }

    .collection-overlay {
        padding: 2rem;
    }
}

/* =========================================================================
   6. Estilos Faltantes: Colecciones y Tienda (Archive)
   ========================================================================= */

/* --- PÃ¡gina de Colecciones --- */
.collections-page {
    padding-top: 10rem;
    background-color: var(--bg-primary);
}

.collections-hero {
    text-align: center;
    padding: 4rem 2rem 6rem;
}

.collections-hero-content .brand-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
}

.collections-hero-content .brand-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.collections-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

.collections-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.collection-item-large {
    grid-column: span 2;
}

.collection-item-standard {
    grid-column: span 1;
}

/* --- Tienda y Filtros (Archive) --- */
.pandora-archive-wrapper {
    padding-top: 10rem;
    background-color: var(--bg-primary);
    min-height: 100vh;
}

.archive-header {
    text-align: center;
    margin-bottom: 4rem;
}

.archive-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.store-top-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-top-nav-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.store-top-nav-list a.active,
.store-top-nav-list a:hover {
    color: var(--text-primary);
    font-weight: 500;
}

.pandora-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 8rem;
}

.pandora-shop-sidebar {
    position: sticky;
    top: 120px;
    height: max-content;
}

.sidebar-header-mobile {
    display: none;
}

.mobile-filter-bar {
    display: none;
}

@media (max-width: 991px) {
    .pandora-shop-layout {
        grid-template-columns: 1fr;
    }

    .pandora-shop-sidebar {
        display: none;
    }
}

/* --- Estilos para el Mini-Carrito (Super Compacto y Premium) --- */
/* Forzamos que el contenido ocupe el ancho total */
.pandora-minicart-panel .minicart-content {
    padding: 1rem !important;
}

/* Lista de productos â€” altura fija con scroll para que botones siempre sean visibles */
.pandora-minicart-panel .widget_shopping_cart_content {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.pandora-minicart-panel .cart_list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    max-height: 320px !important;
    overflow-y: auto !important;
    flex-shrink: 0;
}

.pandora-minicart-panel .mini_cart_item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    position: relative !important;
}

/* Imagen - Forzamos tamaÃ±o pequeÃ±o ignorando al tema */
.pandora-minicart-panel .mini_cart_item a img {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: block !important;
    background: #f0f0f0 !important;
}

/* Detalles del producto (texto) */
.pandora-minicart-panel .mini_cart_item .item-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-width: 0 !important;
    /* Para evitar desbordes */
}

.pandora-minicart-panel .mini_cart_item a:not(.remove) {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    margin-bottom: 4px !important;
    display: block !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pandora-minicart-panel .mini_cart_item .quantity {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.8rem !important;
    color: var(--text-secondary) !important;
    display: block !important;
}

/* BotÃ³n de eliminar (X) */
.pandora-minicart-panel .mini_cart_item .remove {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin-left: auto !important;
    color: #999 !important;
    font-size: 1.2rem !important;
    text-decoration: none !important;
    line-height: 1 !important;
    padding: 5px !important;
}

.pandora-minicart-panel .mini_cart_item .remove:hover {
    color: #cc0000 !important;
}

/* Footer del carrito (Total y botones) */
.pandora-minicart-panel .total {
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 1rem !important;
}

.pandora-minicart-panel .buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding-bottom: 1rem !important;
}

.pandora-minicart-panel .buttons a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 45px !important;
    border-radius: 4px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-decoration: none !important;
}

/* Estilo BotÃ³n Ver Carrito */
.pandora-minicart-panel .buttons a.wc-forward:not(.checkout) {
    background: transparent !important;
    border: 1px solid var(--text-primary) !important;
    color: var(--text-primary) !important;
}

/* Estilo BotÃ³n Finalizar Compra */
.pandora-minicart-panel .buttons a.checkout {
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
    border: 1px solid var(--text-primary) !important;
}

.pandora-minicart-panel .buttons a:hover {
    opacity: 0.8 !important;
}

/* =========================================================================
   PWA â€” Bottom Navigation Bar (Mobile App Feel)
   Only visible on small screens and in standalone (installed app) mode.
   ========================================================================= */
.pwa-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgba(253, 252, 252, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) and (display-mode: standalone),
(max-width: 768px) and (display-mode: fullscreen) {

    html,
    body {
        height: 100dvh;
        width: 100vw;
        overflow: hidden !important;
        margin: 0;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
    }

    #pwa-app-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        background: var(--bg-primary, #fcfcfc);
        position: relative;
    }

    .pwa-bottom-nav {
        display: flex !important;
        position: relative;
        flex-shrink: 0;
        width: 100%;
        height: calc(60px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        z-index: 999999 !important;
        /* Prevent browser defaults on flex item */
        margin: 0;
        bottom: auto;
    }
}

/* Fallback para cuando la JS añade la clase standalone al body */
body.standalone .pwa-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999999 !important;
}

.pwa-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-decoration: none;
    color: #888;
    font-size: 9px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    gap: 4px;
    transition: color 0.2s ease;
    padding: 6px 0;
}

.pwa-nav-item .pwa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.pwa-nav-item:hover,
.pwa-nav-item.active {
    color: var(--text-primary, #1a1a1a);
}

.pwa-nav-item.active .pwa-icon svg {
    stroke-width: 1.8;
}

/* PWA Install Banner */
.pwa-install-banner {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 16px;
    right: 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    z-index: 10000;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
}

.pwa-install-banner.visible {
    display: flex;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-install-banner img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.pwa-install-banner .pwa-install-text {
    flex: 1;
}

.pwa-install-banner .pwa-install-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px;
}

.pwa-install-banner .pwa-install-text span {
    font-size: 12px;
    opacity: 0.65;
}

.pwa-install-banner .pwa-install-btn {
    background: var(--gold-accent, #c29b62);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.pwa-install-banner .pwa-dismiss-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

/* =========================================================================
   Quantity Selector â€” Single Product Page
   ========================================================================= */
.pandora-qty-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1.4rem;
}

.pandora-qty-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary, #5a5a5a);
    font-family: 'Outfit', sans-serif;
}

.pandora-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    width: fit-content;
    height: 46px;
}

.pandora-qty-btn {
    background: #f5f5f5;
    border: none;
    width: 46px;
    height: 100%;
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    flex-shrink: 0;
}

.pandora-qty-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

.pandora-qty-btn:active {
    background: #333;
    color: #fff;
}

#pandora-qty {
    width: 60px;
    height: 100%;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #1a1a1a;
    outline: none;
    background: #fff;
    -moz-appearance: textfield;
}

#pandora-qty::-webkit-outer-spin-button,
#pandora-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#pandora-qty:focus {
    background: #fdfcfc;
}

/* =========================================================================
   Registered User Badge â€” Vendor Dashboard
   ========================================================================= */
.vd-badge.b-reg {
    background: #0d9488;
    color: #fff;
    font-size: 9px;
}

/* =========================================================================
   "Avisame cuando llegue" â€” Restock Alert Button & Modal
   ========================================================================= */
.pandora-restock-wrapper {
    margin-top: 0.8rem;
}

.pandora-restock-btn {
    width: 100%;
    padding: 1.4rem 2rem;
    background: transparent;
    border: 1px solid #000;
    color: #fff;
    background: #2a2a2a;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.pandora-restock-btn:hover {
    background: #c29b62;
    color: #fff;
}

.pandora-restock-subscribed {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #5a5a5a;
    padding: 0.8rem 0;
    letter-spacing: 0.5px;
}

/* Restock modal - Centered fixed position */
.pandora-restock-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.pandora-restock-modal.active {
    display: flex;
}

.pandora-restock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.pandora-restock-modal-box {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 12px;
    padding: 36px 32px 28px;
    max-width: 380px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

.pandora-restock-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.pandora-restock-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.pandora-restock-modal-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0 0 24px;
    line-height: 1.5;
}

.pandora-restock-modal-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.pandora-restock-modal-btns .button {
    flex: 1;
}

/* =========================================================================
   Product Image Overlay Wrapper
   ========================================================================= */
/* prd-img-wrap is injected by pandora_inject_product_overlays filter â€”
   it wraps the <img> + heart button + restock badge so position:absolute
   works relative to the photo, not the full product card */
.prd-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 0;
    /* remove ghost spacing below img */
}

.prd-img-wrap img {
    width: 100%;
    display: block;
}

/* Heart button â€” top-right of image */
.prd-img-wrap .pandora-fav-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
}

/* Restock overlay â€” bottom strip of image */
.prd-img-wrap .pandora-restock-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

/* 1. Breadcrumbs: Small (9px), elegant, capitalized - AGGRESSIVE FIX */
body #main-container .woocommerce-breadcrumb,
body .woocommerce-breadcrumb {
    font-family: 'Outfit', sans-serif !important;
    font-size: 9px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    color: #b5b5b5 !important;
    margin-bottom: 2rem !important;
    display: block !important;
    line-height: 1 !important;
}

body #main-container .woocommerce-breadcrumb a,
body .woocommerce-breadcrumb a {
    color: #b5b5b5 !important;
    text-decoration: none !important;
    font-size: 9px !important;
}

/* 2. Gallery: Vertical thumbnails on the left - AGGRESSIVE FIX */
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .ct-product-gallery-container,
.ct-product-gallery-container {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 20px !important;
    position: relative !important;
    align-items: flex-start !important;
}

/* Force Thumbnails to the left and vertical */
.woocommerce div.product .flexy-pills,
.woocommerce div.product .flex-control-nav,
.flexy-pills {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 70px !important;
    min-width: 70px !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    overflow: visible !important;
    order: 1 !important;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__wrapper {
    flex: 1 !important;
    margin: 0 !important;
    order: 2 !important;
}

/* Heart Buttons - Sutilizado (Subtle) */
.pandora-fav-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    line-height: 0;
}

.pandora-fav-btn {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.pandora-fav-btn:hover {
    background: #fff !important;
    color: #e11d48 !important;
    transform: scale(1.05) !important;
}


.pandora-price-ranges {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}

.pandora-price-ranges li {
    margin-bottom: 6px;
}

.pandora-price-range-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #333;
}

.pandora-price-range-label input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #1a1a1a;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 2px;
}

.pandora-price-range-label span {
    line-height: 1;
}

.pandora-price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    background: #f6f6f6;
    border-radius: 4px;
    padding: 6px 8px;
}

.pandora-price-input-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.pandora-price-input-wrap span {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #888;
}

.pandora-price-input-wrap .ppi {
    width: 100%;
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #1a1a1a;
    outline: none;
    -moz-appearance: textfield;
}

.pandora-price-input-wrap .ppi::-webkit-inner-spin-button,
.pandora-price-input-wrap .ppi::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pandora-price-dash {
    color: #bbb;
    font-size: 12px;
    flex-shrink: 0;
}

.pandora-price-go {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 3px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.pandora-price-go:hover {
    background: #c29b62;
}

/* â”€â”€ Dual-handle range slider â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-range-wrap {
    position: relative;
    height: 26px;
    margin: 14px 0 6px;
}

.pandora-range-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e4e4e4;
    border-radius: 2px;
    transform: translateY(-50%);
    pointer-events: none;
}

.pandora-range-selected {
    position: absolute;
    top: 0;
    height: 100%;
    background: #c29b62;
    border-radius: 2px;
}

.pandora-range-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
    margin: 0;
}

.pandora-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c29b62;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s;
}

.pandora-range-input::-webkit-slider-thumb:hover {
    box-shadow: 0 2px 8px rgba(194, 155, 98, 0.4);
}

.pandora-range-input::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #c29b62;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* z-index so higher handle stays on top when they overlap */
#prange-low {
    z-index: 1;
}

#prange-high {
    z-index: 2;
}

/* =========================================================================
   Account Hover Dropdown â€” Login Form
   ========================================================================= */
.pandora-account-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-left: 1.5rem;
}

.nav-account-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.account-login-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: -8px;
    width: 300px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 99999;
}

.account-login-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transform: rotate(45deg);
}

.account-login-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ald-inner {
    padding: 24px 20px 20px;
}

.ald-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 18px;
    text-align: center;
}

.ald-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ald-field {
    position: relative;
}

.ald-field input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.ald-field input:focus {
    border-color: #1a1a1a;
    background: #fff;
}

.ald-pw-wrap {
    display: flex;
    align-items: center;
}

.ald-pw-wrap input {
    padding-right: 38px;
}

.ald-eye-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 2px;
    display: flex;
    align-items: center;
}

.ald-eye-btn:hover {
    color: #555;
}

.ald-error {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #dc2626;
    background: #fee2e2;
    border-radius: 6px;
    padding: 8px 10px;
    text-align: center;
}

.ald-submit-btn {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 12px;
    background: var(--gold-accent) !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: 4px;
}

.ald-submit-btn:hover {
    background: #1a1a1a !important;
    transform: translateY(-1px);
}

.ald-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ald-footer {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ald-forgot {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.ald-forgot:hover {
    color: #555;
}

.ald-register-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: var(--gold-accent);
    padding: 0;
    transition: color 0.2s;
    text-align: center;
}

.ald-register-link:hover {
    color: var(--gold-accent);
    text-decoration: underline;
}

.ald-register-link strong {
    font-weight: 700;
}

/* Product Card Relative Fix */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    display: block;
}

/* =========================================================================
   PÃ¡gina de Cuenta Personalizada
   ========================================================================= */
.pandora-cuenta-page {
    padding-top: 10rem;
    min-height: 100vh;
    background: #fdfcfb;
    font-family: 'Outfit', sans-serif;
}

/* Hero */
.pca-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 2rem;
}

.pca-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0eae3;
    flex-shrink: 0;
}

.pca-hero-info {
    flex: 1;
}

.pca-username {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px;
}

.pca-email {
    font-size: 13px;
    color: #888;
    margin: 0;
}

.pca-logout-btn {
    font-size: 10px;
    color: #aaa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 7px 14px;
    transition: all 0.2s;
    white-space: nowrap;
}

.pca-logout-btn:hover {
    color: #666;
    border-color: #ccc;
}

/* Tabs Navigation */
.pca-tabs-nav {
    max-width: 900px;
    margin: 0 auto 0;
    padding: 0 2rem;
    display: flex;
    gap: 0;
    border-bottom: 1px solid #ece9e5;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pca-tabs-nav::-webkit-scrollbar {
    height: 0;
}

.pca-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 12px 18px;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
    margin-bottom: -1px;
}

.pca-tab-btn:hover {
    color: #555;
}

.pca-tab-btn.active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}

.pca-tab-count {
    background: #1a1a1a;
    color: #fff;
    border-radius: 50px;
    font-size: 9px;
    padding: 2px 6px;
    font-weight: 700;
}

/* Tabs Content */
.pca-tabs-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 2rem 6rem;
}

.pca-tab-panel {
    display: none;
}

.pca-tab-panel.active {
    display: block;
    animation: pca-fadein 0.3s ease;
}

@keyframes pca-fadein {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty states */
.pca-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #bbb;
}

.pca-empty-state svg {
    display: block;
    margin: 0 auto 18px;
}

.pca-empty-state p {
    font-size: 14px;
    color: #aaa;
    margin: 0 0 20px;
}

.pca-empty-sub {
    font-size: 12px !important;
    color: #ccc !important;
    max-width: 300px;
    margin: 0 auto !important;
    line-height: 1.5;
}

.pca-cta-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: background 0.2s;
}

.pca-cta-btn:hover {
    background: #333;
    color: #fff;
}

/* Orders list */
.pca-orders-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pca-order-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #ece9e5;
    border-radius: 10px;
    padding: 16px;
    transition: box-shadow 0.2s ease;
}

.pca-order-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.pca-order-thumb {
    flex-shrink: 0;
}

.pca-order-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.pca-order-info {
    flex: 1;
    min-width: 0;
}

.pca-order-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.pca-order-num {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a1a;
}

.pca-order-status {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
}

.st-pending {
    background: #fff3cd;
    color: #856404;
}

.st-processing {
    background: #dbeafe;
    color: #1d4ed8;
}

.st-completed {
    background: #dcfce7;
    color: #166534;
}

.st-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.pca-order-meta {
    font-size: 11px;
    color: #aaa;
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
}

.pca-order-total {
    font-weight: 600;
    color: #555;
}

.pca-order-items-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pca-order-items-preview span {
    font-size: 10px;
    color: #888;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 2px 7px;
}

.pca-order-link {
    flex-shrink: 0;
    color: #aaa;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px;
    transition: color 0.2s;
}

.pca-order-link:hover {
    color: #1a1a1a;
}

/* Mini product card grid */
.pandora-mini-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 1rem;
}

.pandora-mini-card {
    background: #fff;
    border: 1px solid #ece9e5;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pandora-mini-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pandora-mini-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f3f0;
}

.pandora-mini-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pandora-mini-card:hover .pandora-mini-card-img-wrap img {
    transform: scale(1.04);
}

.pandora-mini-card-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pandora-mini-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pandora-mini-card-price {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    font-family: 'Outfit', sans-serif;
}

.pandora-mini-card-atc {
    display: block;
    text-align: center;
    padding: 7px;
    background: #1a1a1a;
    color: #fff;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    font-family: 'Outfit', sans-serif;
}

.pandora-mini-card-atc:hover {
    background: #333;
    color: #fff;
}

.pandora-mini-card-oos {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

/* Waitlist badge */
.pandora-waitlist-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 9px;
    text-align: center;
    padding: 5px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
}

.pandora-waitlist-remove {
    background: none;
    border: 1px solid #f0e0e0;
    color: #dc2626;
    font-size: 9px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
}

.pandora-waitlist-remove:hover {
    background: #fee2e2;
}

/* Recommendations loading */
.pca-recs-header {
    margin-bottom: 1rem;
}

.pca-recs-sub {
    font-size: 13px;
    color: #aaa;
    margin: 0;
}

.pca-recs-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #bbb;
}

.pca-spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 2px solid #e0e0e0;
    border-top-color: #c29b62;
    border-radius: 50%;
    animation: pandora-spin 0.8s linear infinite;
    margin-bottom: 12px;
}

.pca-recs-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #bbb;
    font-size: 13px;
    padding: 40px;
}

@media (max-width: 640px) {
    .pca-hero {
        padding: 0 1rem;
        gap: 14px;
    }

    .pca-username {
        font-size: 1.3rem;
    }

    .pca-tabs-nav {
        padding: 0 1rem;
    }

    .pca-tabs-content {
        padding: 2rem 1rem 4rem;
    }

    .pandora-mini-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pca-order-card {
        flex-wrap: wrap;
    }

    .pandora-cuenta-page {
        padding-top: 8rem;
    }
}

@media (min-width: 1024px) and (max-width: 1360px) {

    /* Constrain the overall single-product wrapper */
    .woocommerce div.product {
        max-width: 1050px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 1.5rem;
    }

    /* Tighten the two-column layout */
    .luxury-gallery-col {
        width: 45% !important;
        max-width: 420px;
    }

    .luxury-summary-col {
        width: 53% !important;
        padding-left: 2rem !important;
    }

    /* Reduce overly large product title */
    .woocommerce div.product .product_title {
        font-size: 1.6rem !important;
    }
}

/* =========================================================================
   REFINED UI (VERSION 2.0 - ELEGANT)
   ========================================================================= */

/* 1. Breadcrumbs: Readable & Elegant - ULTRA SPECIFIC */
html body #main-container .woocommerce-breadcrumb,
html body .woocommerce-breadcrumb,
html body .ct-breadcrumbs {
    font-family: 'Outfit', sans-serif !important;
    font-size: 11px !important;
    text-transform: none !important;
    letter-spacing: 0.8px !important;
    color: #444 !important;
    margin-bottom: 2.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

html body .woocommerce-breadcrumb a,
html body .ct-breadcrumbs a {
    color: #888 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    text-transform: none !important;
}

html body .woocommerce-breadcrumb a:hover {
    color: #1a1a1a !important;
}

/* 2. Gallery: Vertical Left Thumbnails - ULTRA SPECIFIC */
.single-product .ct-product-gallery-container,
.single-product .woocommerce-product-gallery {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 20px !important;
}

.single-product .flex-control-nav,
.single-product .flexy-pills {
    display: flex !important;
    flex-direction: column !important;
    width: 65px !important;
    min-width: 65px !important;
    max-width: 65px !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product .woocommerce-product-gallery__wrapper {
    flex: 1 !important;
}

/* Responsive vertical gallery: Back to horizontal on mobile */
@media (max-width: 768px) {

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .ct-product-gallery-container {
        flex-direction: column !important;
    }

    .woocommerce div.product .flex-control-nav {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 15px !important;
    }
}

/* 3. Subtle Glass Hearts */
.pandora-fav-wrapper {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    line-height: 0;
}

.pandora-fav-btn {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #333 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.pandora-fav-btn:hover {
    background: rgba(255, 255, 255, 0.8) !important;
    border-color: rgba(225, 29, 72, 0.2) !important;
    color: #e11d48 !important;
}

/* 4. Restock Badge: Elegant Charcoal Pill */
.pandora-restock-img-overlay {
    position: absolute !important;
    bottom: 25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 200px !important;
    background: rgba(15, 15, 15, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 30 !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.28) !important;
}

.pandora-restock-img-overlay .restock-text-lines {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    line-height: 1.1 !important;
    text-align: center !important;
}

.pandora-restock-img-overlay .restock-text-lines span {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pandora-restock-img-overlay .restock-text-lines span:first-child {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
}

.pandora-restock-img-overlay .restock-text-lines span:last-child {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.pandora-restock-img-overlay:hover {
    background: #000 !important;
    transform: translateX(-50%) translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5) !important;
}

/* 5. Hide Redundant Badges Broadly */
/* Target OOS labels in loop and single */
.product.pandora-is-oos .onsale,
.pandora-is-oos~.onsale,
.pandora-is-oos .onsale {
    display: none !important;
}

.product.pandora-is-oos .out-of-stock-label,
.prd-img-wrap.pandora-is-oos+.onsale,
.sova-badge--oos {
    border: 2px solid var(--p-gold) !important;
    display: inline-block !important;
    background: #000 !important;
    color: var(--p-gold) !important;
    font-weight: 700;
}

/* Intensified Zoom */
.zoomImg {
    transform: scale(1.6) !important;
}

.woocommerce-product-gallery__image:hover img:not(.zoomImg) {
    transform: scale(1.1);
}

/* SYNC TRACER - V2.0 - ELEGANT */
.pandora-sync-v2-tracer {
    content: "v2.0-elegant";
    display: none;
}

/* =========================================================================
   AWWWARDS HOME â€” El BaÃºl de Pandora
   VersiÃ³n: 3.0 â€” DiseÃ±o editorial asimÃ©trico
   ========================================================================= */

/* â”€â”€â”€ Variables propias de la home â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --p-cream: #F7F4F0;
    --p-ink: #1A1412;
    --p-gold: #C29B62;
    --p-gold-dim: rgba(194, 155, 98, 0.18);
    --p-muted: #6B6560;
    --p-border: rgba(26, 20, 18, 0.08);
    --p-card-bg: #EDEBE7;
    --p-overlay: rgba(26, 20, 18, 0.45);
    --transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* â”€â”€â”€ TipografÃ­a editorial: Cormorant Garamond â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Outfit:wght@300;400;500&display=swap');

.body.pandora-immersive,
.pandora-hero,
.pandora-novedades,
.pandora-manifesto,
.pandora-colecciones,
.pandora-story {
    font-family: 'Outfit', sans-serif;
}

.pandora-hero__title,
.pandora-section-title,
.pandora-manifesto__headline,
.pandora-col-card__name,
.pandora-novedad-card__name {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
}

/* â”€â”€â”€ Eyebrow label â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-eyebrow {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--p-gold);
    margin-bottom: 1rem;
}

/* â”€â”€â”€ Section title â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--p-ink);
    letter-spacing: -0.01em;
    margin: 0 0 2rem;
}

.pandora-section-title em {
    font-style: italic;
    color: var(--p-gold);
    font-weight: 300;
}

/* â”€â”€â”€ Link with arrow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--p-ink);
    text-decoration: none;
    font-size: 11px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

.pandora-link-arrow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--p-ink);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pandora-link-arrow:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}

.pandora-link-arrow:hover svg {
    transform: translateX(6px);
}

.pandora-link-arrow svg {
    transition: transform 0.3s ease;
}

/* â”€â”€â”€ CLIPPING MASKS (Awwwards Style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-mask {
    display: block;
    overflow: hidden;
    position: relative;
    width: max-content;
    /* Ensure mask expands to fit text */
    max-width: 100%;
}


.pandora-mask span {
    display: block;
    transform: translateY(110%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.pandora-mask.is-active span {
    transform: translateY(0%);
}

/* â”€â”€â”€ STICKY HEADER DYNAMICS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5vw;
    transition: background 0.5s ease, padding 0.5s ease, backdrop-filter 0.5s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through unless on links */
}

.pandora-header a,
.pandora-header button,
.pandora-header input {
    pointer-events: auto;
}

.pandora-header--scrolled {
    background: rgba(247, 244, 240, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 5vw;
    border-bottom: 1px solid rgba(26, 20, 18, 0.05);
}

.pandora-header__logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--p-ink);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.pandora-header--scrolled .pandora-header__logo {
    font-size: 1.5rem;
}

/* â”€â”€â”€ Immersive Page Menu Fix â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Ocultar cabecera original de Blocksy solo en esta pÃ¡gina */
.page-template-page-inicio-inmersivo .main-nav,
.page-template-page-inicio-inmersivo-php .main-nav,
.pandora-immersive .main-nav,
.page-template-page-inicio-inmersivo header:not(.pandora-header),
.pandora-immersive header:not(.pandora-header) {
    display: none !important;
}

.page-template-page-inicio-inmersivo .pandora-header__logo img {
    height: auto;
    width: 140px;
    display: block;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .page-template-page-inicio-inmersivo .pandora-header__logo img {
        width: auto;
        height: 12px;
    }
}

.page-template-page-inicio-inmersivo .pandora-header__logo:hover img {
    transform: scale(1.05);
}

.page-template-page-inicio-inmersivo .pandora-header__nav a {
    color: #ffffff !important;
    opacity: 0.9;
}

.pandora-header--scrolled .pandora-header__nav a {
    color: var(--p-ink) !important;
}




/* â”€â”€â”€ Outline button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-btn-outline {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    border: 1px solid var(--p-ink);
    color: var(--p-ink);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
    cursor: pointer;
    background: transparent;
}

.pandora-btn-outline:hover {
    background: var(--p-ink);
    color: var(--p-cream);
}

/* â”€â”€â”€ CUSTOM CURSOR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--p-ink);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid var(--p-ink);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.35s ease, height 0.35s ease, border-color 0.35s ease, background 0.25s ease;
}

.cursor-ring--hover {
    width: 56px;
    height: 56px;
    border-color: var(--p-gold);
    background: rgba(194, 155, 98, 0.08);
}

.cursor-dot--hover {
    width: 4px;
    height: 4px;
    background: var(--p-gold);
}

/* â”€â”€â”€ WISHLIST BUTTON STATES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-fav-btn.is-fav {
    color: var(--p-gold) !important;
}

.pandora-fav-btn.fav-pulse {
    animation: favPulse 0.4s ease-out;
}

@keyframes favPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}


/* â”€â”€â”€ DECORATIVE SVG LINE-ART â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-lineart {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.pandora-lineart svg {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

/* â”€â”€â”€ 1. HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
    background: var(--p-cream);
}

.pandora-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
    /* Si no hay imagen, fallback a gradiente editorial */
    background-color: #1A1412;
}

.pandora-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(26, 20, 18, 0.78) 0%,
            rgba(26, 20, 18, 0.35) 55%,
            transparent 100%);
    z-index: 1;
}

.pandora-hero__inner {
    position: relative;
    z-index: 3;
    padding: 15vh 6vw;
    /* MÃ¡s arriba y pegado a la izquierda */
    max-width: 650px;
    /* Reducido para evitar solapar con slider */
}

.pandora-hero__title {
    font-size: clamp(3.2rem, 8.5vw, 7.5rem);
    /* Slightly smaller to fit */
    font-weight: 300;
    line-height: 1.0;
    color: #fff;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    margin: 0.5rem 0 1.5rem;
    width: 100%;
}


.pandora-hero__title-line {
    display: block;
}

.pandora-hero__title-line--italic {
    font-style: italic;
    color: var(--p-gold);
}

.pandora-hero__meta {
    margin-bottom: 0.5rem;
}

.pandora-hero__meta .pandora-eyebrow {
    color: rgba(194, 155, 98, 0.85);
}

.pandora-hero__sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.pandora-hero .pandora-link-arrow {
    color: rgba(255, 255, 255, 0.85);
}

.pandora-hero .pandora-link-arrow::after {
    background: rgba(255, 255, 255, 0.85);
}

/* Feature image â€” esquina derecha */
.pandora-hero__feature-img {
    position: absolute;
    right: 5vw;
    bottom: 0;
    z-index: 2;
    width: clamp(240px, 30vw, 420px);
}

.pandora-hero__imgwrap {
    height: clamp(350px, 55vh, 600px);
    background-size: cover;
    background-position: center;
    /* Fallback gradient si no hay imagen */
    background-color: #2C2016;
}

.pandora-hero__img-tag {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background: var(--p-cream);
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pandora-hero__img-tag .pandora-eyebrow {
    color: var(--p-ink);
    margin: 0;
}

/* â”€â”€â”€ MAGIC SLIDER (Lun Dev Style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-carousel {
    width: 100vw !important;
    height: 100vh !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

/* Etiquetas fijas (No se mueven con el slider) */
.pandora-carousel__fixed-labels {
    position: absolute;
    top: auto;
    bottom: 320px;
    left: 8%;
    z-index: 50;
    /* Por encima de todo */
    pointer-events: none;
    mix-blend-mode: difference;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.pandora-carousel__fixed-labels .topic {
    font-size: 8px;
    letter-spacing: 0.5em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.pandora-carousel__fixed-labels .author {
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--p-gold);
    font-size: 14px;
    margin: 0;
    display: block;
}

.pandora-carousel__fixed-labels .author::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--p-gold);
    margin-top: 5px;
}

.pandora-carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

/* Ocultar contenido de items que no son el principal para evitar superposiciÃ³n */
.pandora-carousel .list .item .content {
    display: none;
}

.pandora-carousel .list .item:nth-child(1) {
    z-index: 5;
}

.pandora-carousel .list .item:nth-child(1) .content {
    display: block;
}

.pandora-carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1.15);
}

.pandora-carousel .list .item .content {
    position: absolute;
    top: auto;
    bottom: 12%;
    width: 600px;
    max-width: 80%;
    left: 5%;
    z-index: 30;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.pandora-carousel .list .item .title-wrap {
    display: flex;
    flex-direction: column;
    /* Vertical para mÃ³viles, horizontal en desk */
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pandora-carousel .list .item .title-wrap {
        flex-direction: row;
        align-items: flex-end;
        gap: 30px;
    }
}

.pandora-carousel .list .item .price-fav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.pandora-carousel .list .item .price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--p-gold);
}

.pandora-wishlist-btn {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0;
    display: flex;
    align-items: center;
}

.pandora-wishlist-btn:hover {
    transform: scale(1.15);
}

.pandora-wishlist-btn.is-fav svg {
    fill: var(--p-gold) !important;
    stroke: var(--p-gold) !important;
}

.pandora-wishlist-btn.active svg {
    fill: var(--p-gold);
    stroke: var(--p-gold);
}

.pandora-wishlist-btn:hover {
    transform: scale(1.2);
}

.pandora-wishlist-btn.active svg {
    fill: var(--p-gold);
    stroke: var(--p-gold);
}

.pandora-carousel .list .item .title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.0;
    font-family: 'Cormorant Garamond', serif;
    margin: 0 !important;
}

/* Topic removido de aquÃ­ ya que es fijo */

.pandora-carousel .list .item .des {
    font-size: 13px;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pandora-carousel .list .item .buttons {
    display: grid;
    grid-template-columns: 200px;
    /* Un poco mÃ¡s ancho para 'AÃ±adir al carrito' */
    grid-template-rows: 45px;
    gap: 15px;
    margin-top: 10px;
}

.pandora-carousel .list .item .buttons button,
.pandora-carousel .list .item .buttons a {
    border: none;
    letter-spacing: 2px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-decoration: none;
    transition: 0.3s;
    height: 45px;
    padding: 0 25px;
}

.pandora-btn-solid {
    background-color: var(--p-gold);
    color: #fff !important;
}

.pandora-btn-solid:hover {
    background-color: #fff;
    color: var(--p-gold) !important;
}

.pandora-carousel .list .item .buttons .pandora-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff !important;
}

.pandora-carousel .list .item .buttons .pandora-btn-outline:hover {
    background: #fff;
    color: #000 !important;
    border-color: #fff;
}

/* Thumbnails */
.pandora-carousel .thumbnail {
    position: absolute;
    bottom: 50px;
    left: 65%;
    /* Only reaches up to 35% of screen instead of 50% */
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.pandora-carousel .thumbnail .thumb-item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
    background-color: transparent !important;
}

.pandora-carousel .thumbnail .thumb-item:hover {
    transform: translateY(-10px);
}

.pandora-carousel .thumbnail .thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    /* Ensure it covers the whole card */
    top: 0;
    left: 0;
    transform: scale(1.15);
}

.pandora-carousel .thumbnail .thumb-item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.pandora-carousel .thumbnail .thumb-item .content .title {
    font-weight: 500;
    font-size: 11px;
}

/* Arrows */
.pandora-carousel .arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.pandora-carousel .arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.pandora-carousel .arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* Animation triggers */
/* El primer item siempre al frente para mostrar sus textos */
.pandora-carousel .list .item:nth-child(1) {
    z-index: 10;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.pandora-carousel .list .item:nth-child(1) .content .topic,
.pandora-carousel .list .item:nth-child(1) .content .author,
.pandora-carousel .list .item:nth-child(1) .content .title-wrap,
.pandora-carousel .list .item:nth-child(1) .content .des,
.pandora-carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(30px);
    filter: blur(10px);
    opacity: 0;
    animation: showContent .4s ease-out 1 forwards;
}

.pandora-carousel .list .item:nth-child(1) .content .title-wrap {
    animation-delay: 0.2s !important;
}

.pandora-carousel .list .item:nth-child(1) .content .des {
    animation-delay: 0.3s !important;
}

.pandora-carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 0.4s !important;
}

/* create animation when next click */
.pandora-carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.pandora-carousel.next .thumbnail .thumb-item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.pandora-carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.pandora-carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */
.pandora-carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: var(--p-gold);
    left: 0;
    top: 0;
}

.pandora-carousel.next .time,
.pandora-carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}

/* prev click */
.pandora-carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.pandora-carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.pandora-carousel.prev .thumbnail .thumb-item:nth-child(1) {
    width: 0;
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail 0.5s linear 1 forwards;
}

.pandora-carousel.prev .list .item:nth-child(2) .content .author,
.pandora-carousel.prev .list .item:nth-child(2) .content .title,
.pandora-carousel.prev .list .item:nth-child(2) .content .topic,
.pandora-carousel.prev .list .item:nth-child(2) .content .des,
.pandora-carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .pandora-carousel .list .item .content {
        padding-right: 0;
    }

    .pandora-carousel .list .item .content .title {
        font-size: 30px;
    }
}


/* Scroll hint */
.pandora-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.pandora-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.4);
    animation: scrollLineAnim 2s ease-in-out infinite;
    transform-origin: top;
}

.pandora-scroll-hint span {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

@keyframes scrollLineAnim {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }

    30% {
        transform: scaleY(1);
        opacity: 1;
    }

    70% {
        transform: scaleY(1);
        opacity: 1;
    }

    100% {
        transform: scaleY(0) translateY(60px);
        opacity: 0;
    }
}

/* â”€â”€â”€ 2. NOVEDADES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-novedades {
    padding: 8rem 5vw;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.pandora-novedades__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

/* Grid editorial asimÃ©trico de 3 columnas */
.pandora-novedades__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2.5rem;
    align-items: start;
}

.pandora-novedad-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card grande ocupa 2 filas */
.pandora-novedad-card.pandora-card--large {
    grid-row: span 2;
}

/* Card wide ocupa 2 columnas */
.pandora-novedad-card.pandora-card--wide {
    grid-column: span 2;
}

.pandora-novedad-card__imgwrap {
    position: relative;
    display: block;
    overflow: hidden;
    /* Alturas segÃºn tipo */
    height: 420px;
    text-decoration: none;
    background: var(--p-card-bg);
    cursor: none;
}

.pandora-card--large .pandora-novedad-card__imgwrap {
    height: 680px;
}

.pandora-card--wide .pandora-novedad-card__imgwrap {
    height: 360px;
}

.pandora-novedad-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.96);
    transform: scale(1.15);
}

.pandora-novedad-card:hover .pandora-novedad-card__bg {
    transform: scale(1.21);
}

/* Overlay que aparece en hover */
.pandora-novedad-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pandora-novedad-card:hover .pandora-novedad-card__overlay {
    opacity: 1;
}

/* Add to cart button sobre imagen */
.pandora-atc-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    background: var(--p-cream) !important;
    color: var(--p-ink) !important;
    padding: 0.75rem 1.6rem !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
    border: none !important;
    border-radius: 0 !important;
    text-decoration: none !important;
    transition: background 0.3s ease, color 0.3s ease !important;
    cursor: none !important;
}

.pandora-atc-btn:hover {
    background: var(--p-ink) !important;
    color: var(--p-cream) !important;
}

/* Badge "Sale" */
.pandora-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--p-ink);
    color: var(--p-cream);
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    pointer-events: none;
    z-index: 2;
}

/* Info del producto */
.pandora-novedad-card__info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0 0.2rem;
}

.pandora-novedad-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--p-ink);
    margin: 0;
}

.pandora-novedad-card__name a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.pandora-novedad-card__name a:hover {
    color: var(--p-gold);
}

.pandora-novedad-card__price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--p-muted);
    white-space: nowrap;
}

.pandora-novedades__cta {
    text-align: center;
    margin-top: 4rem;
}

/* â”€â”€â”€ 3. MANIFESTO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-manifesto {
    padding: 6rem 5vw;
    max-width: 100%;
    background: var(--p-cream);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.pandora-manifesto__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.pandora-manifesto__svg-wrap {
    position: absolute;
    left: -5vw;
    top: -4rem;
    width: 55%;
    height: 140%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.pandora-manifesto__svg-wrap svg {
    width: 100%;
    height: 100%;
}

.pandora-manifesto__headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 300;
    line-height: 0.95;
    color: var(--p-ink);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    grid-column: 1;
}

.pandora-manifesto__headline em {
    font-style: italic;
    color: var(--p-gold);
}

.pandora-manifesto__body {
    grid-column: 2;
    position: relative;
    z-index: 1;
}

.pandora-manifesto__body p {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--p-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

/* â”€â”€â”€ 4. COLECCIONES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-colecciones {
    padding: 8rem 5vw;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.pandora-colecciones__header {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
}

.pandora-colecciones__grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    align-items: start;
}

.pandora-col-card {
    position: relative;
    display: block;
    text-decoration: none;
    height: 580px;
    overflow: hidden;
    background: var(--p-card-bg);
    cursor: none;
    transition: transform 0.5s ease;
}

.pandora-col-card--offset {
    margin-top: 6rem;
}

.pandora-col-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.88) saturate(0.9);
}

.pandora-col-card:hover .pandora-col-card__bg {
    transform: scale(1.06);
    filter: brightness(0.78) saturate(1);
}

.pandora-col-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 20, 18, 0.90) 0%,
            rgba(26, 20, 18, 0.4) 45%,
            transparent 100%);
    z-index: 1;
}

.pandora-col-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.pandora-col-card__num {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--p-gold);
    margin-bottom: 0.2rem;
}

.pandora-col-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

.pandora-col-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.pandora-col-card:hover .pandora-col-card__cta {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.9);
}

/* â”€â”€â”€ 5. BRAND STORY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-story {
    padding: 8rem 5vw;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.pandora-story__img-col {
    position: relative;
}

.pandora-story__imgwrap {
    height: 650px;
    background-size: cover;
    background-position: center;
    /* Fallback: gradiente cÃ¡lido editorial */
    background-color: #2C2016;
    filter: brightness(0.9) contrast(1.05);
}

.pandora-story__float-tag {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--p-cream);
    padding: 1rem 1.8rem;
    border: 1px solid var(--p-border);
}

.pandora-story__text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pandora-story__text-col .pandora-section-title {
    margin-top: 0.8rem;
    margin-bottom: 2rem;
}

.pandora-story__text-col p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.85;
    color: var(--p-muted);
    margin-bottom: 1.2rem;
}

.pandora-story__text-col .pandora-btn-outline {
    margin-top: 1.5rem;
    align-self: flex-start;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
    .pandora-novedades__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pandora-card--large {
        grid-row: auto;
    }

    .pandora-card--wide {
        grid-column: span 2;
    }

    .pandora-manifesto__inner {
        grid-template-columns: 1fr;
    }

    .pandora-manifesto__headline,
    .pandora-manifesto__body {
        grid-column: 1;
    }

    .pandora-colecciones__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .pandora-col-card--offset {
        margin-top: 3rem;
    }

    .pandora-col-card {
        height: 440px;
    }

    .pandora-story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pandora-story__imgwrap {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .pandora-hero__feature-img {
        display: none;
    }

    .pandora-hero__inner {
        padding: 0 6vw 10vh;
        max-width: 100%;
    }

    .pandora-novedades__grid {
        grid-template-columns: 1fr;
    }

    .pandora-card--wide {
        grid-column: span 1;
    }

    .pandora-novedad-card__imgwrap {
        height: 320px !important;
    }

    .pandora-colecciones__grid {
        grid-template-columns: 1fr;
    }

    .pandora-col-card--offset {
        margin-top: 0;
    }

    .pandora-col-card {
        height: 380px;
    }

    /* Cursor custom desactivado en mÃ³vil */
    .pandora-cursor {
        display: none;
    }

    body {
        cursor: auto !important;
    }

    .pandora-lineart {
        display: none;
    }
}

/* â”€â”€â”€ Asegurar que la secciÃ³n hero no herede max-width de section general â”€â”€ */
.pandora-hero {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

.pandora-manifesto {
    max-width: 100% !important;
}

.pandora-colecciones {
    max-width: 100% !important;
}

/* =========================================================================
   Magic Slider â€” pandora-carousel (Lun Dev Style)
   ========================================================================= */

.pandora-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    /* Dynamic viewport height for mobile browsers */
    overflow: hidden;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* â”€â”€ List items (full-screen slides) â”€â”€ */
.pandora-carousel .list {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.pandora-carousel .list .main-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.pandora-carousel .list .main-item:first-child {
    opacity: 1;
    visibility: visible;
    z-index: 5;
}

.pandora-carousel .list .main-item:nth-child(2) {
    opacity: 0;
    visibility: visible;
}

.pandora-carousel .list .main-item img {
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: scale(1.15) !important;
}

/* =========================================================================
   CART PAGE STYLES (ELEGANT DARK OVERHAUL)
   ========================================================================= */

.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.woocommerce-cart table.shop_table {
    border: none;
    border-collapse: collapse;
    width: 100%;
}

.woocommerce-cart table.shop_table th {
    background: #1a1a1a;
    color: var(--p-gold);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 15px;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.woocommerce-cart table.shop_table td {
    padding: 20px 15px;
    border-top: 1px solid #eee;
    vertical-align: middle;
}

.woocommerce-cart .product-thumbnail img {
    width: 80px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.woocommerce-cart .product-name a {
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.woocommerce-cart .product-name a:hover {
    color: var(--p-gold);
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

.woocommerce-cart .product-remove a.remove {
    color: #dc2626 !important;
    background: transparent !important;
    font-size: 24px !important;
    font-weight: 300;
    transition: transform 0.2s;
}

.woocommerce-cart .product-remove a.remove:hover {
    background: transparent !important;
    transform: scale(1.2);
}

/* Cart Totals Section */
.woocommerce-cart .cart-collaterals .cart_totals {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    padding: 30px;
    border-radius: 6px;
    margin-top: 30px;
}

.woocommerce-cart .cart-collaterals h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #1a1a1a;
    border-bottom: 2px solid var(--p-gold);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.woocommerce-cart .cart_totals table th {
    background: transparent;
    color: #444;
    font-weight: 600;
    text-transform: none;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.woocommerce-cart .cart_totals table td {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    text-align: right;
    color: #1a1a1a;
    font-weight: 700;
}

.woocommerce-cart .checkout-button {
    background: var(--p-gold) !important;
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    padding: 18px 20px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    display: block;
    text-align: center;
    margin-top: 20px;
}

.woocommerce-cart .checkout-button:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.woocommerce-cart .actions .coupon input.input-text {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    font-family: 'Outfit', sans-serif;
}

.woocommerce-cart .actions .button {
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 4px !important;
    padding: 12px 20px !important;
    font-family: 'Outfit', sans-serif !important;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
}

.woocommerce-cart .actions .button:hover {
    background: var(--p-gold) !important;
}

/* Dark gradient overlay for readability (Always on top of image) */
.pandora-carousel .list .main-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.4) 55%,
            transparent 100%);
    z-index: 25;
    pointer-events: none;
}

/* â”€â”€ Slide content â”€â”€ */
.pandora-carousel .list .main-item .content {
    position: absolute;
    left: 5%;
    top: auto;
    bottom: 12%;
    transform: none;
    width: 60%;
    max-width: 640px;
    z-index: 30;
    color: #fff;
}

.pandora-carousel .list .main-item .title-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.pandora-carousel .list .main-item .title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin: 0;
}

.pandora-carousel .list .main-item .price-fav {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pandora-carousel .list .main-item .price-fav .price,
.pandora-carousel .list .main-item .price-fav .woocommerce-Price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.pandora-carousel .list .main-item .des {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin: 1rem 0 1.8rem;
    max-width: 480px;
}

.pandora-carousel .list .main-item .buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* â”€â”€ Slide-in animation for active item (Faster & No Delays) â”€â”€ */
.pandora-carousel .list .main-item:first-child .content>* {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideContentIn 0.45s ease-out forwards;
}

.pandora-carousel .list .main-item:first-child .content .title-wrap {
    animation-delay: 0s;
}

.pandora-carousel .list .main-item:first-child .content .des {
    animation-delay: 0.05s;
}

.pandora-carousel .list .main-item:first-child .content .buttons {
    animation-delay: 0.1s;
}

@keyframes slideContentIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* â”€â”€ .next transition (The "Magic" Effect) â”€â”€ */
.pandora-carousel.next .list .main-item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    border-radius: 12px;
    animation: showImage 0.8s ease-in-out 1 forwards;
    z-index: 20;
}

@keyframes showImage {
    from {
        width: 150px;
        height: 220px;
        bottom: 2.5rem;
        left: 50%;
        border-radius: 12px;
    }

    to {
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}

.pandora-carousel.next .thumbnail .thumb-item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.pandora-carousel.prev .list .main-item:nth-child(2) {
    z-index: 2;
}

.pandora-carousel.prev .list .main-item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    from {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        left: 0;
        border-radius: 0;
    }

    to {
        width: 150px;
        height: 220px;
        bottom: 2.5rem;
        left: 50%;
        border-radius: 12px;
    }
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.pandora-carousel.next .list .main-item:nth-child(2) .content>*,
.pandora-carousel.prev .list .main-item:nth-child(2) .content>* {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideContentIn 0.5s ease forwards;
}

.pandora-carousel.next .list .main-item:nth-child(2) .title-wrap,
.pandora-carousel.prev .list .main-item:nth-child(2) .title-wrap {
    animation-delay: 0s;
}

.pandora-carousel.next .list .main-item:nth-child(2) .des,
.pandora-carousel.prev .list .main-item:nth-child(2) .des {
    animation-delay: 0.05s;
}

.pandora-carousel.next .list .main-item:nth-child(2) .buttons,
.pandora-carousel.prev .list .main-item:nth-child(2) .buttons {
    animation-delay: 0.1s;
}

/* â”€â”€ Thumbnails â”€â”€ */
.pandora-carousel .thumbnail {
    position: absolute;
    bottom: 2.5rem;
    left: 65%;
    width: max-content;
    display: flex;
    gap: 1.2rem;
    z-index: 10;
    transition: transform 0.5s ease;
    padding-right: 5rem;
    /* Space for the infinite feel */
}

.pandora-carousel .thumbnail .thumb-item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: none !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pandora-carousel .thumbnail .thumb-item:first-child {
    transform: scale(1.02);
}

.pandora-carousel .thumbnail .thumb-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    filter: brightness(0.75);
    transition: filter 0.3s ease;
}

.pandora-carousel .thumbnail .thumb-item .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.pandora-carousel .thumbnail .thumb-item .title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

/* â”€â”€ Prev / Next arrows â”€â”€ */
.pandora-carousel .arrows {
    position: absolute;
    bottom: calc(2.5rem + 110px - 22px);
    /* Centrado vertical con las miniaturas en desktop */
    left: calc(65% - 130px);
    /* A la izquierda absoluta de las miniaturas */
    right: auto;
    z-index: 20;
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
}

.pandora-carousel .arrows button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.pandora-carousel .arrows button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* â”€â”€ Time/Progress bar â”€â”€ */
.pandora-carousel .time {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold-accent, #c29b62);
    z-index: 20;
    animation: runningTime 7s linear infinite;
}

@keyframes runningTime {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* â”€â”€ Fixed labels (always visible) â”€â”€ */
.pandora-carousel__fixed-labels {
    position: absolute;
    top: auto;
    bottom: 300px;
    right: 5%;
    transform: none;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    pointer-events: none;
    text-align: right;
    background: radial-gradient(circle at right center, rgba(0, 0, 0, 0.5) 0%, transparent 80%);
    padding: 20px 0;
}

.pandora-carousel__fixed-labels .topic {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.pandora-carousel__fixed-labels .author {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--p-gold);
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 1), 0 4px 20px rgba(0, 0, 0, 0.9);
}

.pandora-carousel__fixed-labels::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--gold-accent, #c29b62);
    margin-top: 1rem;
}

/* â”€â”€ Favourites heart button â”€â”€ */
.pandora-carousel .pandora-fav-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
    color: #fff;
    flex-shrink: 0;
}

.pandora-carousel .pandora-fav-btn svg,
.pandora-carousel .pandora-fav-btn i {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    pointer-events: none;
}

.pandora-carousel .pandora-fav-btn.active {
    background: rgba(220, 60, 60, 0.7);
    border-color: rgba(220, 60, 60, 0.9);
}

.pandora-carousel .pandora-fav-btn.active svg,
.pandora-carousel .pandora-fav-btn.active i {
    fill: #fff;
    stroke: #fff;
}

.pandora-carousel .pandora-fav-btn:hover {
    transform: scale(1.15);
    background: rgba(220, 60, 60, 0.5);
}

/* â”€â”€ Slide buttons (VER DETALLES / AÃ‘ADIR AL CARRITO) â”€â”€ */
.pandora-carousel .pandora-btn-solid {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: #fff;
    color: #1a1a1a !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #fff;
    transition: all 0.25s;
    cursor: pointer;
}

.pandora-carousel .pandora-btn-solid:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.pandora-carousel .pandora-btn-outline {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    background: transparent;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.pandora-carousel .pandora-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* â”€â”€ Responsive Refinements (Mobile-First Fixes) â”€â”€ */
/* â”€â”€ Responsive Refinements (Mobile-First Fixes) â”€â”€ */
@media (max-width: 768px) {
    .pandora-carousel {
        height: 100vh !important;
        height: 100dvh !important;
    }

    .pandora-carousel .list .main-item .content,
    .pandora-carousel .list .item .content {
        top: 48% !important;
        bottom: auto !important;
        /* Espacio dinÃ¡mico encima de los thumbnails + navegadores */
        padding: 0 5% !important;
        width: 100% !important;
        left: 0 !important;
        z-index: 40;
    }

    .pandora-carousel .list .main-item .content::before,
    .pandora-carousel .list .item .content::before {
        display: none !important;
        background: none !important;
        box-shadow: none !important;
    }

    .pandora-carousel .list .main-item::after {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                rgba(0, 0, 0, 0.3) 40%,
                rgba(0, 0, 0, 0.95) 100%) !important;
    }

    .pandora-carousel .list .item .title {
        margin-bottom: 0.3rem;
        font-size: 2.2rem !important;
    }

    .pandora-carousel .list .item .des {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Fixed Labels: Posicionadas inteligentemente en la esquina sup-derecha */
    .pandora-carousel__fixed-labels {
        top: 90px !important;
        bottom: auto !important;
        left: auto !important;
        right: 5% !important;
        transform: none !important;
        align-items: flex-end !important;
        background: transparent !important;
        padding: 0 !important;
    }

    .pandora-carousel__fixed-labels .topic {
        font-size: 0.55rem;
    }

    .pandora-carousel__fixed-labels .author {
        font-size: 1rem;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
    }

    .pandora-carousel__fixed-labels::after {
        display: none !important;
    }

    /* Thumbnails: Bien posicionados en el centro */
    .pandora-carousel .thumbnail {
        top: auto !important;
        bottom: 25px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 170px !important;
        padding-right: 0 !important;
        gap: 10px !important;
        overflow: hidden !important;
        justify-content: flex-start !important;
    }

    .pandora-carousel .thumbnail .thumb-item {
        width: 80px !important;
        height: 110px !important;
    }

    /* Arrows: A cada lado de los thumbnails forzando absoluto */
    .pandora-carousel .arrows {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 80px !important;
        /* Alineado al centro de los thumbnails (25px bottom + 55px medio) */
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 50 !important;
        position: absolute !important;
    }

    .pandora-carousel .arrows button {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        color: #fff !important;
        border-radius: 50% !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        font-weight: 300 !important;
        margin: 0 !important;
    }

    .pandora-carousel .arrows button#prev {
        left: 1rem !important;
        right: auto !important;
    }

    .pandora-carousel .arrows button#next {
        right: 1rem !important;
        left: auto !important;
    }

    @keyframes showImage {
        from {
            width: 80px;
            height: 110px;
            bottom: 25px;
            left: calc(50% - 85px);
            right: auto;
            border-radius: 12px;
        }

        to {
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            border-radius: 0;
        }
    }

    @keyframes outFrame {
        from {
            width: 100vw;
            height: 100vh;
            bottom: 0;
            left: 0;
            border-radius: 0;
        }

        to {
            width: 80px;
            height: 110px;
            bottom: 25px;
            left: calc(50% - 85px);
            right: auto;
            border-radius: 12px;
        }
    }

    /* Colecciones (Categories) adjustments on Mobile */
    .pandora-col-card__name {
        font-size: 1.15rem !important;
        margin-bottom: 0.4rem !important;
    }

    .pandora-col-card__cta {
        font-size: 0.65rem !important;
    }

    /* Ocultar exceso de balas (dots) de la paginaciÃ³n de Minitienda en mÃ³vil por saturaciÃ³n visual */
    .minitienda-pagination {
        display: none !important;
    }
}

/* =========================================================================
   PANDORA INMERSIVE UI â€” Additional Components
   ========================================================================= */


/* â”€â”€ Header Inmersivo â”€â”€ */
.pandora-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pandora-header__left {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.pandora-header__center {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 15px;
    /* Aligns with logo visually */
}

.pandora-header__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
    padding-top: 15px;
    /* Aligns with logo visually */
}

/* Fix for WordPress Admin Bar */
.admin-bar .pandora-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .pandora-header {
        top: 46px;
    }
}

.pandora-header--scrolled {
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.admin-bar .pandora-header--scrolled {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .pandora-header--scrolled {
        top: 46px;
    }
}

.pandora-header__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    text-decoration: none;
}

.pandora-header__logo .brand-text-gold {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 4vw, 5.0rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--p-gold);
    transition: color 0.4s;
    line-height: 1;
    margin: 0;
    text-transform: none;
}

.pandora-header__logo .brand-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.95em;
}

.pandora-header__logo .brand-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.03em;
    font-weight: 300;
    padding-left: 2px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.pandora-header--scrolled .brand-text-gold {
    color: #1a1a1a;
}

.pandora-header--scrolled .brand-tagline {
    color: rgba(0, 0, 0, 0.6);
    text-shadow: none;
}

.pandora-link-nav {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: none;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.pandora-link-nav:hover,
.pandora-header--scrolled .pandora-link-nav:hover {
    color: var(--p-gold);
}

.pandora-header--scrolled .pandora-link-nav {
    color: #1a1a1a;
    text-shadow: none;
}

@media (max-width: 768px) {
    .pandora-header__logo .brand-text-gold {
        font-size: 2rem;
    }

    .pandora-header__logo .brand-tagline {
        font-size: 0.70rem;
    }

    .pandora-header__center,
    .pandora-header__right {
        display: none;
    }
}



.pandora-header__logo img {
    height: 38px;
    width: auto;
    filter: brightness(1);
    transition: all 0.4s;
}

.pandora-header--scrolled .pandora-header__logo img {
    height: 30px;
}

.pandora-link-arrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* â”€â”€ Secciones Generales â”€â”€ */
.pandora-novedades,
.pandora-colecciones,
.pandora-story {
    padding: 10rem 5%;
}

.pandora-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #c29b62;
    display: block;
    margin-bottom: 1.5rem;
}

.pandora-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.pandora-section-title em {
    font-style: italic;
    color: #777;
    font-weight: 400;
}

/* â”€â”€ Mask Animation Utility â”€â”€ */
.gsap-mask {
    display: block;
    overflow: hidden;
}

.gsap-mask span {
    display: block;
    transform: translateY(110%);
}

/* â”€â”€ Novedades Grid (AsimÃ©trico Editorial) â”€â”€ */
.pandora-novedades__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(300px, auto);
    gap: 2.5rem;
}

.pandora-novedad-card {
    grid-column: span 1;
}

.pandora-card--large {
    grid-column: span 2;
    grid-row: span 2;
}

.pandora-card--wide {
    grid-column: span 2;
}

.pandora-novedad-card__imgwrap {
    display: block;
    position: relative;
    aspect-ratio: 4/5;
    background: #f0f0f0;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.pandora-card--wide .pandora-novedad-card__imgwrap {
    aspect-ratio: 16/9;
}

.pandora-novedad-card__bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.15);
}

.pandora-novedad-card:hover .pandora-novedad-card__bg {
    transform: scale(1.21);
}

.pandora-novedad-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s;
}

.pandora-novedad-card:hover .pandora-novedad-card__overlay {
    opacity: 1;
}

.pandora-atc-btn {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pandora-novedad-card:hover .pandora-atc-btn {
    transform: translateY(0);
}

/* â”€â”€ Manifesto Section â”€â”€ */
.pandora-manifesto {
    padding: 12rem 5%;
    background: #fdfcfc;
    text-align: center;
    position: relative;
}

.pandora-manifesto__inner {
    max-width: 900px;
    margin: 0 auto;
}

.pandora-manifesto__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 8vw, 8.5rem);
    line-height: 0.9;
    margin-bottom: 4rem;
}

.pandora-manifesto__body p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #444;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* â”€â”€ Colecciones Grid (Sova-Jewels Style) â”€â”€ */
.pandora-colecciones {
    padding: 0 !important;
    /* Edge to edge */
}

.categorias-swiper {
    width: 100%;
    position: relative;
    padding-bottom: 50px;
    /* Space for dots */
}

.categorias-swiper .swiper-slide {
    height: auto;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0;
}

/* Custom Nav Arrows Sova Style */
.swiper-button-prev-cat,
.swiper-button-next-cat {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.swiper-button-prev-cat:hover,
.swiper-button-next-cat:hover {
    background: var(--p-ink);
    color: #fff;
}

.swiper-button-prev-cat {
    left: 20px;
}

.swiper-button-next-cat {
    right: 20px;
}

/* Subtly animated pagination */
.categorias-swiper .swiper-pagination {
    bottom: 0px !important;
    z-index: 100 !important;
    position: absolute !important;
}

.categorias-swiper .swiper-pagination-bullet {
    transition: all 0.3s;
    background: #000;
    opacity: 0.2;
    width: 6px;
    height: 6px;
    margin: 0 4px !important;
}

.categorias-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.pandora-col-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push content down */
    align-items: center;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    text-decoration: none;
    background: #000;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.pandora-col-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.pandora-col-card:hover .pandora-col-card__bg {
    transform: scale(1.08);
    /* Sophisticated subtle zoom */
}

.pandora-col-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
    z-index: 2;
    pointer-events: none;
}

.pandora-col-card__content {
    position: relative;
    z-index: 3;
    padding: 2rem 1.5rem 3rem;
    text-align: center;
    width: 100%;
}

.pandora-col-card__name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    /* Crisp legibility */
}

.pandora-col-card__cta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.cta-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.pandora-col-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* â”€â”€ Sova Sub-Menu List â”€â”€ */
.pandora-cat-menu-wrapper {
    text-align: center;
    padding: 3rem 5% 2rem;
    font-family: 'Outfit', sans-serif;
}

.pandora-cat-menu-title {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--p-ink);
    text-transform: uppercase;
}

.pandora-cat-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.8rem;
}

.pandora-cat-menu-list a {
    font-size: 0.8rem;
    color: var(--p-ink);
    text-decoration: none;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.pandora-cat-menu-list a:hover,
.pandora-cat-menu-list a.active {
    border-bottom-color: var(--p-ink);
}

/* â”€â”€ Story Section â”€â”€ */
.pandora-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    align-items: center;
}

.pandora-story__imgwrap {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
}

.pandora-story__text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* â”€â”€ Line-art â”€â”€ */
.pandora-lineart {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

@media (max-width: 768px) {

    /* Prevents horizontal scrolling */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Fix for WordPress admin bar gap on mobile */
    html {
        margin-top: 0 !important;
    }

    body.admin-bar {
        background-position: center 46px;
        /* if background is attached to body */
    }

    /* Carousel / Hero Slider Fixes */
    .pandora-carousel .list .main-item,
    .pandora-carousel .list .item {
        padding: 0 5%;
    }

    .pandora-carousel .list .main-item .content,
    .pandora-carousel .list .item .content {
        top: 48% !important;
        /* Move data to exact vertical center */
        bottom: auto !important;
        left: 5% !important;
        right: 5% !important;
        /* Stretch to both sides for centering */
        width: 90% !important;
        max-width: 100% !important;
        transform: translateY(-50%) !important;
        /* Pulls box perfectly balanced to center */
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        /* Centers the inner blocks horizontally */
        text-align: center !important;
        /* Centers text */
    }

    .pandora-carousel .list .main-item .title-wrap,
    .pandora-carousel .list .item .title-wrap {
        align-items: center !important;
    }

    .pandora-carousel .list .main-item .price-fav,
    .pandora-carousel .list .item .price-fav {
        justify-content: center !important;
    }

    .pandora-carousel .list .main-item .title,
    .pandora-carousel .list .item .title {
        font-family: 'Cormorant Garamond', serif !important;
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        font-weight: 300 !important;
        line-height: 1.05 !important;
        text-transform: none !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
        margin-bottom: 8px !important;
    }

    .pandora-carousel .list .main-item .des,
    .pandora-carousel .list .item .des {
        font-size: 0.9rem !important;
        /* Slightly smaller for more room */
        line-height: 1.5 !important;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.9) !important;
        margin-bottom: 1.5rem;
        max-width: 100%;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        line-height: 1.4;
    }

    .pandora-carousel .list .main-item .buttons,
    .pandora-carousel .list .item .buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
        margin-top: 1rem;
        width: 100%;
        max-width: 190px !important;
    }

    .pandora-carousel .list .main-item .buttons a,
    .pandora-carousel .list .item .buttons a {
        width: 100% !important;
        text-align: center;
        padding: 12px 5px !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .pandora-carousel .thumbnail {
        bottom: 10px !important;
        right: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        /* Perfectly centers the thumbnails */
        width: max-content !important;
        max-width: 95% !important;
        justify-content: center !important;
        z-index: 100 !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding: 0 0 10px 0 !important;
    }

    .pandora-carousel .thumbnail .thumb-item {
        width: 80px !important;
        /* Slightly smaller to elegantly fit 3 */
        height: 120px !important;
        flex-shrink: 0;
        border-radius: 10px !important;
        overflow: hidden;
        box-shadow: none !important;
        /* Strip shadow completely as requested */
        background: transparent !important;
        border: none !important;
    }

    /* Thumbnail text styling for mobile */
    .pandora-carousel .thumbnail .thumb-item .content {
        padding: 0 !important;
        bottom: 5px !important;
        left: 3px !important;
        right: 3px !important;
        background: transparent !important;
        display: block !important;
    }

    .pandora-carousel .thumbnail .thumb-item .title {
        font-size: 0.65rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 1), 0 2px 8px rgba(0, 0, 0, 0.9) !important;
        white-space: normal !important;
    }

    /* Show up to 3 thumbnails */
    .pandora-carousel .thumbnail .thumb-item:nth-child(n+4) {
        display: none !important;
    }

    .pandora-carousel .arrows {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: -55px !important;
        /* Bajado adicional para centrar exactamente con miniaturas */
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 150 !important;
        position: absolute !important;
    }

    .pandora-carousel .arrows button {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 32px !important;
        /* MÃ¡s pequeÃ±o para mÃ³vil */
        height: 32px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        color: #fff !important;
        border-radius: 50% !important;
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1rem !important;
        /* Proporcional al botÃ³n mÃ¡s pequeÃ±o */
        font-weight: 300 !important;
        margin: 0 !important;
    }

    .pandora-carousel .arrows button#prev {
        left: 1rem !important;
        right: auto !important;
    }

    .pandora-carousel .arrows button#next {
        right: 1rem !important;
        left: auto !important;
    }

    /* Novedades & Layout Fixes */
    .pandora-novedades,
    .pandora-story {
        padding: 4rem 5% !important;
        width: 100% !important;
        overflow: hidden;
        box-sizing: border-box !important;
    }

    .pandora-section-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem !important;
    }

    .pandora-novedades__grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        width: 100% !important;
    }

    .pandora-novedad-card,
    .pandora-card--large,
    .pandora-card--wide {
        width: 100% !important;
        max-width: 100% !important;
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto !important;
        flex: none !important;
        margin: 0 !important;
    }

    .pandora-novedad-card__imgwrap {
        width: 100% !important;
        height: 450px !important;
        position: relative !important;
        display: block !important;
    }

    .pandora-col-card {
        aspect-ratio: 1 / 1.15 !important;
        height: auto !important;
        width: 100% !important;
    }

    .pandora-story {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
    }

    .pandora-story__imgwrap {
        width: 100% !important;
        height: 400px !important;
    }

    /* Header Fixes for Mobile Admin Bar */
    .pandora-header {
        padding: 1rem 5% !important;
        top: 0 !important;
        transition: none !important;
    }

    body.admin-bar .pandora-header {
        top: 46px !important;
    }

    .pandora-carousel__fixed-labels {
        top: 15% !important;
        left: 5% !important;
        z-index: 105 !important;
    }

    .pandora-carousel__fixed-labels .author {
        font-size: 0.9rem !important;
        letter-spacing: 4px !important;
        opacity: 1 !important;
        white-space: nowrap !important;
        writing-mode: horizontal-tb !important;
        transform: none !important;
        color: var(--p-gold) !important;
    }

    /* Account Login Dropdown Mobile Adjustment */
    .account-login-dropdown {
        right: -20px !important;
        width: 290px !important;
        max-width: 85vw !important;
        top: calc(100% + 10px) !important;
    }

    .account-login-dropdown::before {
        right: 32px !important;
    }
}

/* =========================================================================
   Sova Jewels Minitienda
   ========================================================================= */
.pandora-minitienda-wrapper {
    max-width: 1400px;
    margin: 4rem auto 0;
    padding: 2rem 5%;
    text-align: center;
    position: relative;
}

.pandora-minitienda-title {
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.pandora-minitienda-tabs {
    list-style: none;
    padding: 0;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pandora-minitienda-tabs li {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.pandora-minitienda-tabs li:hover {
    color: #000;
}

.pandora-minitienda-tabs li.active {
    color: #000;
    border-bottom-color: #000;
    font-weight: 500;
}

.pandora-minitienda-slider-container {
    position: relative;
    padding: 0 40px;
    margin-bottom: 3rem;
}

.minitienda-swiper {
    padding-bottom: 40px !important;
}

.minitienda-item {
    display: flex;
    justify-content: center;
}

.sova-card {
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease;
}

.sova-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.1;
    background: #fbfbfb;
    /* Very light grey */
    margin-bottom: 1.2rem;
    text-decoration: none;
}

.sova-card__image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.sova-card__badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    z-index: 2;
}

.sova-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sova-badge--new {
    background: #fcf1eb;
    /* Nude */
    color: #000;
}

.sova-badge--sale {
    background: #000;
    color: #fff;
}

.sova-card .pandora-fav-wrapper {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.sova-card .pandora-fav-btn {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    padding: 0;
}

.sova-card .pandora-fav-btn:hover {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.sova-card .pandora-fav-btn.is-fav {
    color: #000;
}

.sova-card .pandora-fav-btn.is-fav svg {
    fill: #000;
}

.sova-card__info {
    text-align: center;
}

.sova-card__cat {
    font-size: 0.70rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
}

.sova-card__title {
    text-decoration: none;
    color: #000;
    display: block;
    margin-bottom: 0.5rem;
}

.sova-card__title h4 {
    font-size: 0.90rem;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sova-card__price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

/* For swiper navigation right arrow slightly floating out */
.minitienda-next {
    position: absolute;
    top: calc(50% - 40px);
    right: 0;
    width: 40px !important;
    height: 40px !important;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.minitienda-next:hover {
    background: #e0e0e0;
}

.minitienda-next::after {
    display: none;
}

.minitienda-pagination {
    bottom: 0 !important;
}

.minitienda-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: all 0.3s;
    margin: 0 4px !important;
}

.minitienda-pagination .swiper-pagination-bullet-active {
    background: #000;
}

.pandora-minitienda-cta {
    margin-top: 2rem;
}

.sova-btn-ghost {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.sova-btn-ghost:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .pandora-minitienda-tabs {
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .pandora-minitienda-tabs li {
        flex: 0 0 auto;
    }

    .minitienda-next {
        display: none !important;
    }

    .pandora-minitienda-slider-container {
        padding: 0;
    }

    /* Fix add to cart button position on sova cards for mobile screens */
    .sova-card .pandora-minicart-wrapper {
        bottom: 110px !important;
        right: 15px !important;
    }

    .sova-card .pandora-minicart-btn {
        background: rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15) !important;
    }
}

/* =========================================================================
   Minicart Button for floating over Product Images
   ========================================================================= */
.prd-img-wrap {
    position: relative;
    display: block;
}

.pandora-minicart-wrapper {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 5;
}

.pandora-minicart-btn {
    background: rgba(255, 255, 255, 0.4) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    text-decoration: none !important;
}

.pandora-minicart-btn:hover {
    background: #fff !important;
    color: #000 !important;
    transform: scale(1.05) !important;
}

.pandora-minicart-btn.loading svg {
    animation: pandora-spin 1s linear infinite;
    opacity: 0.5;
}

.pandora-minicart-btn.added svg {
    stroke: #2eac4b;
    /* green indicator */
}

/* specific positional override for the main shop catalog cards so it aligns smoothly at the bottom */
ul.products li.product .pandora-minicart-wrapper {
    bottom: 15px;
    right: 15px;
}

/* =========================================================================
   Zarcillos de Animalitos (Sova-style Grid)
   ========================================================================= */
.pandora-animalitos {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.pandora-animalitos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Set rows width to match column width (25vw per column, 2 rows = 50vw total height roughly matching Sova look) */
    grid-template-rows: 25vw 25vw;
    gap: 0;
}

.pa-item {
    position: relative;
    overflow: hidden;
    background: #f7f3ee;
}

.pa-image-layer {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease, opacity 0.6s ease;
}

.pa-item:hover .pa-image-layer {
    transform: scale(1.03);
}

.pa-item-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Text box takes upper left spanning 2 columns */
.pa-text {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: #fdfaf6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
}

.pa-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
}

.pa-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Grid slot assignments */
.pa-item[data-slot="0"] {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.pa-item[data-slot="1"] {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
}

.pa-item[data-slot="2"] {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.pa-item[data-slot="3"] {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.pa-item[data-slot="4"] {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

@media (max-width: 1024px) {
    .pandora-animalitos-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 33.3vw 33.3vw 33.3vw;
    }

    .pa-text {
        grid-column: 1 / 4;
        grid-row: 1 / 2;
        padding: 4rem 2rem;
    }

    .pa-item[data-slot="0"] {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
    }

    .pa-item[data-slot="1"] {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .pa-item[data-slot="2"] {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
    }

    .pa-item[data-slot="3"] {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .pa-item[data-slot="4"] {
        grid-column: 3 / 4;
        grid-row: 3 / 4;
    }
}

@media (max-width: 768px) {
    .pandora-animalitos-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto 100vw 50vw 50vw;
        gap: 0;
    }

    .pa-text {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        padding: 3rem 1.5rem;
    }

    /* Slot 0 becomes a large hero square on mobile */
    .pa-item[data-slot="0"] {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
        height: 100vw;
    }

    .pa-item[data-slot="1"] {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        height: 50vw;
    }

    .pa-item[data-slot="2"] {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        height: 50vw;
    }

    .pa-item[data-slot="3"] {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        height: 50vw;
    }

    .pa-item[data-slot="4"] {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
        height: 50vw;
    }
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* 30 LATEST PRODUCTS GLOBAL "NEW" BADGE */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.custom-global-new-badge {
    position: absolute;
    top: 15px;
    /* Matches usual card padding */
    left: 15px;
    /* Matches usual card padding */
    z-index: 9;
    background: #fcf1eb;
    color: #000;
    pointer-events: none;
}

/* En la pÃ¡gina de producto individual (single) la imagen puede requerir un posicionamiento distinto */
.single-new-badge {
    left: 20px;
    top: 20px;
    z-index: 99;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* HERO SEARCH BAR (DESKTOP & MOBILE) */
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-hero-search {
    position: absolute;
    top: 90px;
    right: 5vw;
    z-index: 1000;
}

.pandora-hero-search-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0px 12px;
    width: 220px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pandora-hero-search-input {
    width: 200px;
    padding: 6px 8px 6px 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pandora-hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.75) !important;
}

.pandora-hero-search-input:focus,
.pandora-hero-search-input:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.pandora-hero-search-submit {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.pandora-hero-search-submit svg {
    width: 15px;
    height: 15px;
}

.pandora-hero-search-submit:hover {
    transform: scale(1.1);
    color: #fff;
}

.pandora-hero-search-inner:focus-within {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Solo para mÃ³viles - se convierte en lupa colapsada */
@media (max-width: 1024px) {
    .pandora-hero-search {
        top: 80px;
        right: 5vw;
    }

    .pandora-hero-search-inner {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        overflow: hidden;
    }

    .pandora-hero-search-input {
        width: 0;
        padding: 0;
        opacity: 0;
        transition: all 0.4s ease;
    }

    .pandora-hero-search-submit {
        position: absolute;
    }

    /* Estado activo al presionar en la lupa */
    .pandora-hero-search.is-active .pandora-hero-search-inner {
        width: 260px;
        padding: 5px 15px;
        justify-content: space-between;
    }

    .pandora-hero-search.is-active .pandora-hero-search-input {
        width: calc(100% - 30px);
        padding: 8px 10px 8px 0;
        opacity: 1;
    }

    .pandora-hero-search.is-active .pandora-hero-search-submit {
        position: relative;
    }
}

/* Cart Shake Animation */
@keyframes cartShake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px) rotate(10deg);
    }

    50% {
        transform: translateX(-5px) rotate(-10deg);
    }

    75% {
        transform: translateX(5px) rotate(10deg);
    }

    100% {
        transform: translateX(0);
    }
}

.cart-animate {
    animation: cartShake 0.5s cubic-bezier(.36, .07, .19, .97) both;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Post-Purchase Success Popup
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#pandora-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#pandora-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

#pandora-success-panel {
    background: white;
    width: 90%;
    max-width: 480px;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}

#pandora-success-overlay.active #pandora-success-panel {
    transform: translateY(0) scale(1);
}

.ps-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.3s;
}

.ps-close:hover {
    color: #333;
}

.ps-register-section,
.ps-login-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.ps-register-section h3,
.ps-login-section h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ps-register-section p,
.ps-login-section p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.ps-input-group {
    margin-bottom: 12px;
    text-align: left;
}

.ps-input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 5px;
}

.ps-input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.ps-input:focus {
    border-color: #000;
}

.ps-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.ps-btn:hover {
    opacity: 0.9;
}

.ps-btn:disabled {
    background: #999;
    cursor: not-allowed;
}

.ps-toggle-text {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

.ps-toggle-link {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

#ps-login-msg {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #dc2626;
}

/* Checkmark Animation */
.success-checkmark {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    border: 4px solid rgba(76, 175, 80, 0.5);
    box-sizing: content-box;
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

#pandora-success-panel h2 {
    font-family: 'Outfit', sans-serif;
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

#pandora-success-panel p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.ps-order-id {
    background: #f8f8f8;
    padding: 10px 15px;
    border-radius: 6px;
    display: inline-block;
    color: var(--p-gold);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
    font-size: 14px;
}

.ps-register-box {
    background: #fcf8f2;
    border: 1px dashed var(--p-gold);
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    text-align: left;
}

.ps-register-box h4 {
    color: #b2803b;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 700;
}

.ps-register-box p {
    font-size: 13px !important;
    margin-bottom: 15px !important;
    color: #6d5e4b !important;
}

.ps-register-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(194, 155, 98, 0.3);
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    background: white;
}

.ps-btn-main {
    width: 100%;
    background: var(--p-gold);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Outfit', sans-serif;
}

.ps-btn-main:hover {
    background: #a68461;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 155, 98, 0.4);
}

.ps-btn-sec {
    background: none;
    border: none;
    color: #888;
    text-decoration: underline;
    font-size: 13px;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Outfit', sans-serif;
    display: block;
    width: 100%;
    text-align: center;
}

@media (max-width: 500px) {
    #pandora-success-panel {
        padding: 30px 20px;
        margin: 15px;
    }
}

/* Feedback & Transitions */
@keyframes pandoraShake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-3px);
    }

    100% {
        transform: translateX(0);
    }
}

.pandora-shake {
    animation: pandoraShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.ajax_add_to_cart.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   Restock Alert Styles
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pandora-restock-wrapper {
    margin: 20px 0;
}

.pandora-restock-btn {
    width: 100%;
    padding: 16px;
    background: transparent !important;
    border: 2px solid #e0e0e0 !important;
    color: #555 !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pandora-restock-btn:hover {
    border-color: var(--p-gold, #c29b62) !important;
    color: var(--p-gold, #c29b62) !important;
    background: rgba(194, 155, 98, 0.05) !important;
}

.restock-text-lines {
    display: flex;
    flex-direction: column;
}

.pandora-restock-subscribed {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    padding: 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

/* Restock Modal Consolidated */
.pandora-restock-modal-box {
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pandora-restock-modal.active .pandora-restock-modal-box {
    transform: translateY(0);
}

/* =========================================================================
   CARRITO DE COMPRAS â€” DiseÃ±o Premium El BaÃºl de Pandora
   ========================================================================= */

/* â”€â”€ Cabecera de pÃ¡gina â”€â”€ */
.woocommerce-cart .entry-header,
.woocommerce-cart .page-header,
.woocommerce-cart h1.entry-title,
.woocommerce-cart h1.page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--text-primary);
    text-align: center;
    padding: 3rem 0 1.5rem;
    margin-bottom: 0.5rem;
}

.woocommerce-cart .entry-header::after,
.woocommerce-cart .page-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--gold-accent);
    margin: 1rem auto 0;
}

/* â”€â”€ Layout general â”€â”€ */
.woocommerce-cart #page {
    background: var(--bg-primary);
}

.woocommerce-cart .woocommerce {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2rem 6rem;
}

/* â”€â”€ Aviso / Notificaciones â”€â”€ */
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-error {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    border-left: 3px solid var(--gold-accent);
    background: rgba(194, 155, 98, 0.06);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: none;
}

.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-cart .woocommerce-notices-wrapper .woocommerce-info::before {
    color: var(--gold-accent);
}

/* â”€â”€ Tabla del carrito â”€â”€ */
.woocommerce-cart table.woocommerce-cart-form__contents,
.woocommerce-cart table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    background: transparent;
    font-family: 'Outfit', sans-serif;
}

.woocommerce-cart table.shop_table thead {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.woocommerce-cart table.shop_table thead th {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    padding: 1rem 1.2rem;
    border: none;
    background: transparent;
    text-align: left;
}

.woocommerce-cart table.shop_table thead th.product-price,
.woocommerce-cart table.shop_table thead th.product-subtotal,
.woocommerce-cart table.shop_table thead th.product-quantity {
    text-align: center;
}

/* â”€â”€ Filas de producto â”€â”€ */
.woocommerce-cart table.shop_table tbody tr.cart_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.25s ease;
}

.woocommerce-cart table.shop_table tbody tr.cart_item:hover {
    background: rgba(194, 155, 98, 0.03);
}

.woocommerce-cart table.shop_table td {
    padding: 1.6rem 1.2rem;
    border: none;
    vertical-align: middle;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* â”€â”€ Imagen del producto â”€â”€ */
.woocommerce-cart table.shop_table td.product-thumbnail {
    width: 100px;
    padding: 1.2rem 1rem;
}

.woocommerce-cart table.shop_table td.product-thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.woocommerce-cart table.shop_table td.product-thumbnail a:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px);
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}

/* â”€â”€ Nombre del producto â”€â”€ */
.woocommerce-cart table.shop_table td.product-name {
    font-family: 'Outfit', sans-serif;
}

.woocommerce-cart table.shop_table td.product-name a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

.woocommerce-cart table.shop_table td.product-name a:hover {
    color: var(--gold-accent);
}

.woocommerce-cart table.shop_table td.product-name .variation {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.woocommerce-cart table.shop_table td.product-name .variation dt,
.woocommerce-cart table.shop_table td.product-name .variation dd {
    display: inline;
    margin: 0;
    font-size: 0.8rem;
}

/* â”€â”€ Precio unitario â”€â”€ */
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-subtotal {
    text-align: center;
    font-weight: 400;
    color: var(--text-primary);
}

.woocommerce-cart table.shop_table td.product-price .woocommerce-Price-amount,
.woocommerce-cart table.shop_table td.product-subtotal .woocommerce-Price-amount {
    font-size: 1rem;
    color: var(--text-primary);
}

.woocommerce-cart table.shop_table td.product-subtotal .woocommerce-Price-amount {
    color: var(--gold-accent);
    font-weight: 500;
    font-size: 1.05rem;
}

/* â”€â”€ Control de cantidad â”€â”€ */
.woocommerce-cart table.shop_table td.product-quantity {
    text-align: center;
}

.woocommerce-cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    overflow: hidden;
    background: white;
}

.woocommerce-cart input.qty,
.woocommerce-cart .qty {
    width: 44px !important;
    height: 38px !important;
    border: none !important;
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.95rem !important;
    color: var(--text-primary) !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.woocommerce-cart input.qty::-webkit-inner-spin-button,
.woocommerce-cart input.qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* â”€â”€ BotÃ³n Eliminar producto â”€â”€ */
.woocommerce-cart table.shop_table td.product-remove {
    text-align: center;
    width: 40px;
}

.woocommerce-cart table.shop_table td.product-remove a.remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text-secondary) !important;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.woocommerce-cart table.shop_table td.product-remove a.remove:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626 !important;
    transform: scale(1.1);
}

/* â”€â”€ Acciones del carrito (cupones + actualizar) â”€â”€ */
.woocommerce-cart .cart-collaterals,
.woocommerce-cart .woocommerce-cart-form__contents {
    width: 100%;
}

.woocommerce-cart table.shop_table tr.cart_item+tr td.actions,
.woocommerce-cart tr.actions td {
    border: none !important;
    padding: 1.5rem 0 !important;
}

.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.woocommerce-cart .coupon label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.woocommerce-cart .coupon #coupon_code,
.woocommerce-cart .coupon input[type="text"] {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 1rem !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    background: white !important;
    color: var(--text-primary) !important;
    outline: none !important;
    transition: border-color 0.25s ease !important;
    min-width: 220px;
    box-shadow: none !important;
}

.woocommerce-cart .coupon #coupon_code:focus,
.woocommerce-cart .coupon input[type="text"]:focus {
    border-color: var(--gold-accent) !important;
}

.woocommerce-cart .coupon .button,
.woocommerce-cart .coupon button[name="apply_coupon"] {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 0.65rem 1.5rem !important;
    background: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    box-shadow: none !important;
}

.woocommerce-cart .coupon .button:hover,
.woocommerce-cart .coupon button[name="apply_coupon"]:hover {
    border-color: var(--gold-accent) !important;
    color: var(--gold-accent) !important;
    background: rgba(194, 155, 98, 0.05) !important;
}

.woocommerce-cart button[name="update_cart"] {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 0.65rem 1.5rem !important;
    background: transparent !important;
    color: var(--text-secondary) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    float: right;
    box-shadow: none !important;
}

.woocommerce-cart button[name="update_cart"]:hover:not(:disabled) {
    color: var(--text-primary) !important;
    border-color: rgba(0, 0, 0, 0.25) !important;
}

.woocommerce-cart button[name="update_cart"]:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* â”€â”€ Totales del carrito â”€â”€ */
.woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.5rem;
}

.woocommerce-cart .cart_totals {
    width: 100%;
    max-width: 420px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.woocommerce-cart .cart_totals h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Outfit', sans-serif;
}

.woocommerce-cart .cart_totals table tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.woocommerce-cart .cart_totals table tr:last-child {
    border-bottom: none;
}

.woocommerce-cart .cart_totals table th {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    padding: 0.85rem 0;
    text-align: left;
    border: none;
    background: transparent;
}

.woocommerce-cart .cart_totals table td {
    font-size: 0.95rem;
    color: var(--text-primary);
    padding: 0.85rem 0;
    text-align: right;
    border: none;
    background: transparent;
}

.woocommerce-cart .cart_totals table tr.order-total th,
.woocommerce-cart .cart_totals table tr.order-total td {
    padding-top: 1.2rem;
    font-size: 1rem;
}

.woocommerce-cart .cart_totals table tr.order-total th {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.15em;
}

.woocommerce-cart .cart_totals table tr.order-total td .woocommerce-Price-amount {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold-accent);
    font-family: 'Playfair Display', serif;
}

.woocommerce-cart .cart_totals table td .woocommerce-Price-amount {
    font-weight: 400;
}

/* Separador antes del total */
.woocommerce-cart .cart_totals table tr.order-total {
    border-top: 1px solid rgba(0, 0, 0, 0.10);
    border-bottom: none;
}

/* â”€â”€ EnvÃ­o â”€â”€ */
.woocommerce-cart .cart_totals .woocommerce-shipping-calculator {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
}

.woocommerce-cart .cart_totals .shipping-calculator-button {
    color: var(--gold-accent);
    text-decoration: none;
    font-size: 0.82rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
    letter-spacing: 0.05em;
}

.woocommerce-cart .cart_totals .shipping-calculator-button:hover {
    border-color: var(--gold-accent);
}

.woocommerce-cart .cart_totals .shipping-calculator-form input,
.woocommerce-cart .cart_totals .shipping-calculator-form select {
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.88rem !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 4px !important;
    padding: 0.5rem 0.8rem !important;
    background: white !important;
    outline: none !important;
    width: 100% !important;
    margin-bottom: 0.5rem !important;
}

/* â”€â”€ BotÃ³n Finalizar Compra â”€â”€ */
.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 1.5rem;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart a.checkout-button {
    display: block;
    width: 100%;
    padding: 1.1rem 2rem;
    background: var(--text-primary) !important;
    color: var(--bg-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    text-align: center !important;
    text-decoration: none !important;
    border: 1px solid var(--text-primary) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart a.checkout-button:hover {
    background: transparent !important;
    color: var(--text-primary) !important;
}

/* â”€â”€ Carrito vacÃ­o â”€â”€ */
.woocommerce-cart .cart-empty {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    padding: 5rem 2rem 2rem;
    letter-spacing: 1px;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    padding-bottom: 4rem;
}

.woocommerce-cart .return-to-shop .wc-backward,
.woocommerce-cart .return-to-shop a {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
    color: var(--text-primary) !important;
    border: 1px solid var(--text-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.woocommerce-cart .return-to-shop .wc-backward:hover,
.woocommerce-cart .return-to-shop a:hover {
    background: var(--text-primary);
    color: var(--bg-primary) !important;
}

/* â”€â”€ Indicador de carga AJAX â”€â”€ */
.woocommerce-cart .blockOverlay {
    background: rgba(253, 252, 252, 0.7) !important;
    opacity: 1 !important;
    backdrop-filter: blur(4px);
    border-radius: 8px;
}

.woocommerce-cart .blockUI.blockOverlay::after {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border: 2px solid transparent;
    border-top-color: var(--gold-accent);
    border-radius: 50%;
    animation: pandoraCartSpin 0.7s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -14px 0 0 -14px;
}

@keyframes pandoraCartSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 768px) {
    .woocommerce-cart table.shop_table thead {
        display: none;
    }

    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td {
        display: block;
        width: 100%;
    }

    .woocommerce-cart table.shop_table tbody tr.cart_item {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        position: relative;
        display: grid;
        grid-template-columns: 80px 1fr auto;
        grid-template-areas:
            "img name remove"
            "img price price"
            "img qty qty";
        gap: 0.5rem 1rem;
        align-items: start;
    }

    .woocommerce-cart table.shop_table td {
        padding: 0 !important;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail {
        grid-area: img;
        width: 80px !important;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail img {
        width: 80px;
        height: 80px;
    }

    .woocommerce-cart table.shop_table td.product-name {
        grid-area: name;
        font-size: 0.95rem;
    }

    .woocommerce-cart table.shop_table td.product-remove {
        grid-area: remove;
        width: auto !important;
        text-align: right;
    }

    .woocommerce-cart table.shop_table td.product-price {
        grid-area: price;
        text-align: left;
    }

    .woocommerce-cart table.shop_table td.product-price::before {
        content: attr(data-title) ': ';
        font-size: 0.75rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-right: 0.25rem;
    }

    .woocommerce-cart table.shop_table td.product-quantity {
        grid-area: qty;
        text-align: left;
    }

    .woocommerce-cart table.shop_table td.product-subtotal {
        display: none;
    }

    .woocommerce-cart tr.actions td {
        padding: 1rem 0 !important;
    }

    .woocommerce-cart .coupon {
        flex-direction: column;
        align-items: flex-start;
    }

    .woocommerce-cart .coupon #coupon_code,
    .woocommerce-cart .coupon input[type="text"] {
        min-width: 100%;
    }

    .woocommerce-cart button[name="update_cart"] {
        float: none;
        width: 100%;
        margin-top: 0.75rem;
    }

    .woocommerce-cart .cart-collaterals {
        justify-content: stretch;
    }

    .woocommerce-cart .cart_totals {
        max-width: 100%;
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .woocommerce-cart table.shop_table tbody tr.cart_item {
        grid-template-columns: 70px 1fr auto;
    }

    .woocommerce-cart table.shop_table td.product-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .woocommerce-cart .cart_totals table tr.order-total td .woocommerce-Price-amount {
        font-size: 1.2rem;
    }
}

/* =========================================================================
   CARRITO DE COMPRAS - REWORK (El Baul de Pandora)
   ========================================================================= */

.woocommerce-cart .woocommerce {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .woocommerce-cart .woocommerce {
        flex-direction: row;
        align-items: flex-start;
    }

    .woocommerce-cart-form {
        flex: 1;
        min-width: 0;
    }

    .cart-collaterals {
        width: 380px;
        position: sticky;
        top: 120px;
        flex-shrink: 0;
    }
}

/* Cart Items Container */
.pandora-cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Individual Cart Item Card */
.pandora-cart-item {
    display: flex;
    flex-wrap: wrap;
    background: var(--glass-bg, #fff);
    border: 1px solid var(--glass-border, #eee);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pandora-cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.pandora-cart-item .product-thumbnail {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1.5rem;
}

.pandora-cart-item .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pandora-cart-item-details {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pandora-cart-item .product-name a {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text-primary, #222);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.pandora-cart-item .product-name a:hover {
    color: var(--gold-accent, #c29b62);
}

.pandora-cart-item .product-price {
    margin-top: 0.5rem;
    color: var(--text-secondary, #666);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.pandora-cart-item-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pandora-cart-item .product-quantity .quantity input.qty {
    border: 1px solid var(--glass-border, #eee);
    border-radius: 30px;
    padding: 8px 15px;
    width: 70px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    background: transparent;
}

.pandora-cart-item .product-subtotal {
    font-weight: 600;
    color: var(--text-primary, #222);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
}

.pandora-cart-item .product-remove {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.pandora-cart-item .product-remove a.remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-secondary, #888) !important;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0;
}

.pandora-cart-item .product-remove a.remove i {
    width: 16px;
    height: 16px;
}

.pandora-cart-item .product-remove a.remove:hover {
    background: #ff4757;
    color: #fff !important;
    transform: rotate(90deg);
}

/* Cart Actions (Coupon & Update) */
.pandora-cart-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    background: var(--glass-bg, #fff);
    border: 1px solid var(--glass-border, #eee);
    padding: 1.5rem;
    border-radius: 12px;
}

.pandora-cart-actions .coupon {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pandora-cart-actions .coupon input {
    border: 1px solid var(--glass-border, #eee);
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.pandora-cart-actions .button {
    background: var(--text-primary, #222);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pandora-cart-actions .button:hover {
    background: var(--gold-accent, #c29b62);
}

/* Sidebar Totals */
.cart-collaterals .cart_totals {
    background: var(--glass-bg, #fff);
    border: 1px solid var(--glass-border, #eee);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.cart_totals h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary, #222);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    margin-top: 0;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart_totals table th,
.cart_totals table td {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Outfit', sans-serif;
}

.cart_totals table th {
    text-align: left;
    color: var(--text-secondary, #666);
    font-weight: 400;
}

.cart_totals table td {
    text-align: right;
    color: var(--text-primary, #222);
    font-weight: 500;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    border-bottom: none;
    font-size: 1.25rem;
    color: var(--gold-accent, #c29b62);
    font-weight: 600;
    padding-top: 1.5rem;
}

.wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--text-primary, #222) !important;
    color: #fff !important;
    padding: 15px !important;
    border-radius: 30px !important;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: var(--gold-accent, #c29b62) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 155, 98, 0.3);
}

/* Trust Signals under Checkout */
.pandora-trust-signals {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
    color: var(--text-secondary, #888);
}

.pandora-trust-signals i {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .pandora-cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pandora-cart-item .product-thumbnail {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 120px;
        height: 120px;
    }

    .pandora-cart-item .product-remove {
        top: 1rem;
        right: 1rem;
    }

    .pandora-cart-item-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .pandora-cart-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .pandora-cart-actions .coupon {
        justify-content: center;
    }
}

/* =========================================================================
   MISSING HOMEPAGE CSS (Categorias, Minitienda, Animalitos)
   ========================================================================= */

/* --- 4. COLECCIONES SWIPER --- */
.pandora-colecciones {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

.categorias-swiper {
    padding-bottom: 4rem !important;
    overflow: hidden;
}

.pandora-col-card {
    position: relative;
    display: block;
    text-decoration: none;
    height: 480px;
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    transition: transform 0.5s ease;
}

.pandora-col-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85);
}

.pandora-col-card:hover .pandora-col-card__bg {
    transform: scale(1.06);
    filter: brightness(0.7);
}

.pandora-col-card__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.pandora-col-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pandora-col-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.pandora-col-card__cta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.pandora-col-card:hover .pandora-col-card__cta {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

.swiper-button-prev-cat,
.swiper-button-next-cat {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s;
}

.swiper-button-prev-cat:hover,
.swiper-button-next-cat:hover {
    background: #222;
    color: #fff;
}

.swiper-button-prev-cat {
    left: 10px;
}

.swiper-button-next-cat {
    right: 10px;
}

@media (max-width: 768px) {
    .pandora-col-card {
        height: 380px;
    }

    .pandora-col-card__name {
        font-size: 1.5rem;
    }
}

/* --- MINITIENDA NOVEDADES --- */
.pandora-minitienda-wrapper {
    margin-top: 6rem;
    text-align: center;
}

.pandora-minitienda-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pandora-minitienda-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.pandora-minitienda-tabs li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    cursor: pointer;
    padding-bottom: 4px;
    position: relative;
    transition: color 0.3s ease;
}

.pandora-minitienda-tabs li.active,
.pandora-minitienda-tabs li:hover {
    color: var(--text-primary);
}

.pandora-minitienda-tabs li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--text-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pandora-minitienda-tabs li.active::after {
    transform: scaleX(1);
}

.pandora-minitienda-slider-container {
    position: relative;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.minitienda-swiper {
    padding-bottom: 3rem !important;
}

.sova-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sova-card__image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 1rem;
}

.sova-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.sova-card:hover .sova-card__image img {
    transform: scale(1.05);
}

.sova-card__badges {
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sova-badge {
    background: #222;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    letter-spacing: 1px;
    border-radius: 2px;
}

.sova-badge--new {
    background: #000;
    color: #fff;
    font-weight: 700;
}

.sova-badge--sale {
    background: #e11d48;
}

.pandora-minicart-wrapper {
    position: absolute;
    bottom: 10px;
    right: 10px;
    transform: none !important;
    opacity: 1 !important;
    z-index: 5;
    transition: none !important;
}

.sova-card .pandora-minicart-wrapper,
.pa-item .pandora-minicart-wrapper,
.prd-img-wrap .pandora-minicart-wrapper {
    transform: none !important;
    opacity: 1 !important;
    display: block !important;
}

.pandora-minicart-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
}

.pandora-minicart-btn:hover {
    background: #222;
    color: #fff;
    transform: scale(1.1);
}

.sova-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.sova-card__cat {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 1px;
}

.sova-card__title h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #222;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sova-card__link-overlay {
    text-decoration: none;
}

.sova-card__price {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: #c29b62;
    font-weight: 500;
}

.minitienda-next {
    position: absolute;
    right: 0;
    top: 40%;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.minitienda-next:hover {
    background: #222;
    color: #fff;
}

.pandora-minitienda-cta {
    margin-top: 1rem;
}

.sova-btn-ghost {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid #222;
    color: #222;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sova-btn-ghost:hover {
    background: #222;
    color: #fff;
}

/* --- ZARCILLOS ANIMALITOS --- */
.pandora-animalitos {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pandora-animalitos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    grid-auto-rows: 300px;
}

.pa-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #f4f4f4;
}

.pa-item[data-slot="0"] {
    grid-column: span 2;
    grid-row: span 2;
}

.pa-item[data-slot="3"] {
    grid-column: span 2;
}

.pa-image-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pa-item:hover .pa-image-layer {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .pandora-animalitos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .pa-item[data-slot="0"] {
        grid-column: span 2;
        grid-row: span 2;
    }

    .pa-item[data-slot="3"] {
        grid-column: span 1;
    }

    .pa-item[data-slot="5"] {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .pandora-animalitos-grid {
        grid-template-columns: 1fr;
    }

    .pa-item[data-slot="0"] {
        grid-column: 1;
        grid-row: span 1;
    }

    .pa-item[data-slot="3"],
    .pa-item[data-slot="5"] {
        grid-column: 1;
    }
}

/* =========================================================================
   PÃ¡gina de Carrito de Compras Premium (/mi-carrito/)
   ========================================================================= */

.cart-page-premium {
    padding-top: 120px; /* Space for fixed header */
    padding-bottom: 6rem;
    min-height: 80vh;
}

.cart-premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.cart-premium-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cart-premium-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cart-premium-subtitle {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-secondary);
    font-weight: 300;
}

.cart-premium-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* Empty Cart */
.cart-empty-premium {
    text-align: center;
    padding: 6rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    backdrop-filter: blur(20px);
}

.cart-empty-premium .empty-icon {
    margin-bottom: 2rem;
    color: var(--gold-accent);
}

.cart-empty-premium .empty-icon i {
    width: 64px;
    height: 64px;
}

.cart-empty-premium h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cart-empty-premium p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.btn-premium-outline {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-premium-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

/* Cart Items */
.premium-items-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.premium-cart-item {
    display: flex;
    gap: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.premium-cart-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.premium-item-image {
    width: 120px;
    flex-shrink: 0;
}

.premium-item-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.premium-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.premium-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.premium-item-name {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.premium-item-name a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.premium-item-name a:hover {
    color: var(--gold-accent);
}

.premium-item-remove a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
    display: flex;
}

.premium-item-remove a:hover {
    color: #dc2626;
}

.premium-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.premium-item-price {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Quantity controls specific to Pandora */
.premium-item-quantity .quantity {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.premium-item-quantity .quantity input[type="number"] {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: 'Outfit';
    -moz-appearance: textfield;
}

.premium-item-quantity .quantity input[type="number"]::-webkit-inner-spin-button, 
.premium-item-quantity .quantity input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

/* Summary Box */
.cart-premium-summary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 3rem 2rem;
    position: sticky;
    top: 120px;
    backdrop-filter: blur(20px);
}

.summary-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart_totals table th, 
.cart_totals table td {
    padding: 1rem 0;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart_totals table th {
    font-weight: 400;
    color: var(--text-secondary);
}

.cart_totals table td {
    text-align: right;
    font-weight: 500;
}

.cart_totals table tr.order-total th, 
.cart_totals table tr.order-total td {
    font-size: 1.4rem;
    border-bottom: none;
    padding-top: 1.5rem;
}

.cart_totals table tr.order-total td {
    color: var(--gold-accent);
}

.btn-checkout-premium {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    padding: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.4s ease;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-checkout-premium:hover {
    background: transparent;
    color: var(--text-primary);
}

.premium-trust-badges {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-badge i {
    width: 20px;
    height: 20px;
    color: var(--gold-accent);
}

/* Native Woo hide */
.woocommerce-shipping-calculator, .shop_table.cart .actions { display: none !important; }

@media (max-width: 900px) {
    .cart-premium-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-premium-summary {
        position: static;
    }
    
    .premium-cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .premium-item-header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
/* Custom Fixes */
.variations select {
    height: auto !important;
    padding: 10px 12px !important;
    min-height: 44px !important;
    line-height: normal !important;
}

/* Hide redundant top-level WooCommerce buttons in shop loop */
li.product > .button {
    display: none !important;
}

/* Restore Product Gallery Thumbnails */
.single-product .flexy-container {
    flex-direction: column !important;
    gap: 20px !important;
}

.single-product .flexy-pills,
.single-product .flex-control-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    gap: 12px !important;
    justify-content: center !important;
    margin: 15px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.single-product .flexy-pills li,
.single-product .flex-control-nav li {
    width: 80px !important;
    height: 80px !important;
    flex: 0 0 80px !important;
    cursor: pointer !important;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.single-product .flexy-pills li.active,
.single-product .flex-control-nav li .flex-active,
.single-product .flexy-pills li:hover {
    border-color: #7d5fff !important;
}

.single-product .flexy-pills img,
.single-product .flex-control-nav img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
}

/* Fine-tune thumbnail framing - remove theme padding */
.single-product .flexy-pills li,
.single-product .flex-control-nav li {
    padding: 0 !important;
}

/* Comprehensive fix for thumbnail framing */
.single-product .flexy-pills li,
.single-product .flex-control-nav li {
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.single-product .flexy-pills li img,
.single-product .flex-control-nav li img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: block !important;
    object-fit: cover !important;
}



/* --- Final Shop & UI Refinements --- */

/* 1. Ocultar CATEGORÍAS en TODAS las tarjetas de producto (Tienda e Inicio) */
/* Usamos selectores ultra-específicos y amplios para cubrir todas las variaciones de Blocksy/Sova */
.blocksy-product-categories,
.sova-card__cat,
.product-category,
.product-categories,
.product-cats,
.product-loop-categories,
.posted_in,
span.posted_in,
li.product [class*="categor"],
li.product [class*="-cat"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. Restaurar COLOR GRIS de los iconos del menú acciones */
.nav-actions a,
.nav-actions button,
.nav-actions svg {
    color: #666 !important;
    stroke: #666 !important;
}

.nav-actions a:hover,
.nav-actions button:hover {
    color: var(--p-gold) !important;
}

/* 2. Ocultar botón de "Seleccionar Opciones" / "Añadir al carrito" en la tienda (MODAL/LARGE) */
/* Solo ocultamos el botón de texto que aparece debajo del precio */
.archive-content ul.products li.product > a.button,
.archive-content ul.products li.product > .button,
.archive-content ul.products li.product .product_type_variable,
.archive-content ul.products li.product .product_type_simple {
    display: none !important;
}

/* REPARACIÓN: Restaurar el icono de añadir al carrito que vive DENTRO del contenedor de la imagen */
.archive-content ul.products li.product .pandora-minicart-wrapper .pandora-minicart-btn,
.archive-content ul.products li.product .pandora-minicart-wrapper a.button {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 3. Barra de Búsqueda sobre las categorías */
.pandora-shop-search-wrapper {
    margin: 1.5rem 0 2rem 0;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0.8rem;
}

.pandora-shop-search-inner {
    flex: 1;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.pandora-shop-search-inner form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pandora-shop-search-inner input[type="search"] {
    border: none !important;
    background: transparent !important;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    flex: 1;
    padding: 0.8rem 0;
    outline: none !important;
    box-shadow: none !important;
}

.pandora-shop-search-inner button[type="submit"] {
    background: transparent !important;
    color: var(--p-gold);
    border: none !important;
    padding: 0.5rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pandora-shop-search-inner button[type="submit"]:hover {
    transform: scale(1.1);
}

/* 4. Solución al solapamiento (Aumento de padding-top para el header fijo) */
.pandora-archive-wrapper {
    padding-top: 100px !important; /* Ajuste para header fijo */
    width: 100%;
}

.archive-header {
    margin-bottom: 2rem !important;
    margin-top: 1rem !important;
}

.archive-title {
    margin-bottom: 1.5rem !important;
    font-size: 2.8rem !important;
    font-weight: 300;
    letter-spacing: -0.02em;
}

/* Reducción de espacios entre navegación de categorías */
.level-1-container, 
.level-2-container {
    margin-bottom: 0.8rem !important;
}

.store-top-nav-wrapper {
    margin-top: 1rem;
}

/* Ensanchar cuadrícula y reducir margenes laterales */
.pandora-shop-layout {
    max-width: 1600px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

@media (max-width: 768px) {
    .pandora-archive-wrapper {
        padding-top: 80px !important;
    }
    .pandora-shop-layout {
        padding-left: 0.8rem !important;
        padding-right: 0.8rem !important;
    }
    .archive-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
}

/* =========================================================================
   PWA & MOBILE OPTIMIZATIONS (Phase 6.2)
   ========================================================================= */

/* 1. Ocultar iconos redundantes en el Header cuando estamos en la App (Standalone) */
body.standalone .nav-actions .nav-account-link,
body.standalone .nav-actions .pandora-account-wrapper,
body.standalone .nav-actions .cart-trigger,
body.standalone .nav-actions .filter-trigger {
    display: none !important;
}

/* 2. Nuevo Botón de Filtrar junto a la barra de búsqueda en la Tienda */
.pandora-shop-search-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pwa-filter-btn {
    display: none; /* Oculto por defecto */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: #666;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

/* Mostrar solo en móvil/PWA */
@media (max-width: 768px) {
    .pwa-filter-btn {
        display: flex;
    }
    
    .pandora-shop-search-inner {
        padding-left: 0.5rem;
    }
}

.pwa-filter-btn:hover {
    color: var(--p-gold, #c29b62);
}

.pwa-filter-btn svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

.pwa-filter-label {
    font-family: 'Outfit', sans-serif;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* 3. Reparación del Popup de Filtro ("Cuadro Gris") y Z-Index */
.pandora-shop-sidebar {
    background: #fdfcfc !important; /* Fondo sólido */
    z-index: 10001 !important; /* Por encima del menú inferior (9999) */
}

.pandora-shop-sidebar-overlay {
    z-index: 10000 !important;
    background: rgba(0, 0, 0, 0.6) !important; /* Un poco más oscuro para mejor contraste */
    backdrop-filter: blur(5px) !important; /* Blur reducido para compatibilidad */
}

/* 4. Optimización de la página de COLECCIONES para Móvil */
@media (max-width: 768px) {
    .collections-hero-content .brand-title {
        font-size: 2.8rem !important; /* Evitar que se corte */
    }
    
    .collections-hero-content .brand-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .collection-name {
        font-size: 1.8rem !important; /* Reducción para móviles */
        margin-bottom: 0.8rem !important;
    }
    
    .collection-overlay {
        padding: 1.5rem !important;
    }
    
    .collection-count {
        font-size: 9px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .collection-item-large, .collection-item-standard {
        height: 350px !important; /* Altura más manejable */
    }
    
    .collections-grid-wrapper {
        padding: 0 1rem 4rem !important;
    }
    
    .collections-manifesto {
        padding: 4rem 1.5rem !important;
    }
    
    .manifesto-content p {
        font-size: 1rem !important;
    }
}
