/* ============================================
   PREMIUM SINGLE PRODUCT - REFINED
   ============================================ */

:root {
    --sp-bg-deep: #F8FAFC;
    --sp-bg-surface: #FFFFFF;
    --sp-bg-elevated: #F8FAFC;
    --sp-bg-card: #FFFFFF;
    --sp-border: #EEF4F7;
    --sp-border-subtle: #D6E2EA;
    --sp-border-accent: #C7D6DF;
    --sp-gold: #81D8D0;
    --sp-gold-light: #81D8D0;
    --sp-gold-dim: #69C9C1;
    --sp-cream: #0F172A;
    --sp-text-primary: #0F172A;
    --sp-text-secondary: #475569;
    --sp-text-muted: #64748B;
    --sp-text-dim: #94A3B8;
    --sp-success: #22C55E;
    --sp-warning: #F59E0B;
    --sp-danger: #EF4444;
    --sp-star: #81D8D0;
}

/* Reset & Base */
html, body { 
    background: var(--sp-bg-deep) !important; 
    overflow-x: clip !important;
}
.ast-woocommerce-container, .entry-header { display: none !important; }
#page, .site-content { 
    margin: 0 !important; 
    padding: 0 !important; 
    max-width: 100% !important;
    overflow-x: clip !important;
}

/* Animations */
@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
@keyframes subtle-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(129, 216, 208, 0.05); }
    50% { box-shadow: 0 0 50px rgba(129, 216, 208, 0.1); }
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Typography */
.sp-font-display { font-family: 'Playfair Display', 'Didot', Georgia, serif; }
.sp-font-mono { font-family: 'Space Mono', 'Courier New', monospace; }
.sp-font-body { font-family: 'Inter', -apple-system, sans-serif; }
.sp-font-bodoni { font-family: 'Bodoni Moda', 'Didot', Georgia, serif; }

/* Layout Container */
.sp-container {
    min-height: 100vh;
    padding: 100px 0 40px;
    background: var(--sp-bg-deep);
    overflow-x: hidden;
}

@media (min-width: 1024px) {
    .sp-container {
        padding-top: 160px;
    }
}

.sp-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.sp-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (min-width: 1024px) {
    .sp-hero {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }
}

/* Image Gallery */
.sp-gallery {
    position: relative;
}

.sp-main-image-container {
    position: relative;
    aspect-ratio: 1;
    background: var(--sp-bg-surface);
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    overflow: hidden;
    animation: subtle-glow 4s ease-in-out infinite;
}

.sp-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 32px;
    transition: transform 0.5s ease;
}

.sp-main-image-container:hover .sp-main-image {
    transform: scale(1.03);
}

/* Live Status Indicator */
.sp-live-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    border: 1px solid var(--sp-border);
    border-radius: 20px;
    z-index: 10;
}

.sp-live-dot {
    width: 6px;
    height: 6px;
    background: var(--sp-success);
    border-radius: 50%;
    animation: pulse-live 2s ease-in-out infinite;
}

.sp-live-text {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--sp-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-live-text span {
    color: var(--sp-text-primary);
    font-weight: 600;
}

/* Low Stock Badge */
.sp-low-stock-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 4px;
    z-index: 10;
}

.sp-low-stock-dot {
    width: 6px;
    height: 6px;
    background: #EF4444;
    border-radius: 50%;
}

.sp-low-stock-text {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    color: #EF4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   PRODUCT INFO PANEL
   ============================================ */
.sp-info {
    display: flex;
    flex-direction: column;
}

/* Breadcrumb */
.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sp-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sp-breadcrumb a {
    color: var(--sp-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.sp-breadcrumb a:hover { color: var(--sp-gold); }
.sp-breadcrumb-sep { color: var(--sp-text-dim); }

/* Title */
.sp-title {
    font-family: 'Playfair Display', 'Didot', Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    color: var(--sp-cream);
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    .sp-title { font-size: 42px; }
}

/* Price */
.sp-price-block {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--sp-border);
}

.sp-price {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--sp-text-primary);
}

.sp-price-original {
    font-size: 18px;
    color: var(--sp-text-muted);
    text-decoration: line-through;
    margin-left: 12px;
}

.sp-price-badge {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 10px;
    background: var(--sp-danger);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Scarcity Indicator */
.sp-scarcity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 10px;
    margin-bottom: 24px;
}

.sp-scarcity-icon {
    width: 18px;
    height: 18px;
    color: var(--sp-warning);
}

.sp-scarcity-text {
    font-size: 13px;
    color: var(--sp-warning);
    font-weight: 500;
}

.sp-scarcity-bar {
    flex: 1;
    height: 3px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.sp-scarcity-fill {
    height: 100%;
    background: var(--sp-warning);
    border-radius: 2px;
}

/* CTA Area */
.sp-cta-area { margin-bottom: 20px; }

.sp-quantity-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.sp-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--sp-border-accent);
    border-radius: 10px;
    overflow: hidden;
    background: var(--sp-bg-elevated);
}

.sp-qty-btn {
    width: 44px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--sp-text-secondary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.sp-qty-btn:hover {
    background: var(--sp-border);
    color: var(--sp-gold);
}

.sp-qty-input {
    width: 44px;
    height: 48px;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--sp-text-primary);
    -moz-appearance: textfield;
}

.sp-qty-input::-webkit-inner-spin-button,
.sp-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sp-add-btn {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--sp-gold);
    border: none;
    border-radius: 10px;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sp-add-btn:hover {
    background: var(--sp-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(129, 216, 208, 0.25);
}

.sp-add-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.sp-add-btn svg {
    width: 16px;
    height: 16px;
}

.sp-buy-btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--sp-border-accent);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--sp-text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.sp-buy-btn:hover {
    border-color: var(--sp-gold);
    color: var(--sp-gold);
}

/* VINORA PDP recovery pass */
.sp-gallery-zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 12;
    min-height: 38px;
    padding: 0 1rem;
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sp-text-primary);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sp-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.sp-gallery-thumb {
    aspect-ratio: 1 / 1;
    border: 1px solid var(--sp-border-subtle);
    border-radius: 16px;
    background: #FFFFFF;
    overflow: hidden;
    padding: 0;
}

.sp-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-gallery-thumb.is-active {
    border-color: var(--sp-gold);
    box-shadow: 0 10px 24px rgba(129, 216, 208, 0.2);
}

.sp-variation-panel {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid var(--sp-border-subtle);
    border-radius: 16px;
    background: #FFFFFF;
}

.sp-variation-panel__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sp-text-primary);
}

.sp-variation-panel__note {
    color: #B45309;
    letter-spacing: 0.06em;
    text-transform: none;
}

.sp-variation-group + .sp-variation-group {
    margin-top: 12px;
}

.sp-variation-group__label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sp-text-muted);
}

.sp-variation-group__options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-variation-option {
    min-height: 36px;
    padding: 0.55rem 0.85rem;
    border: 1px solid var(--sp-border-accent);
    border-radius: 999px;
    background: #FFFFFF;
    color: var(--sp-text-primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sp-variation-option.is-active {
    border-color: var(--sp-gold);
    background: rgba(129, 216, 208, 0.15);
}

.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.88);
}

.sp-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    min-height: 42px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sp-lightbox__image {
    width: min(92vw, 980px);
    max-height: 86vh;
    object-fit: contain;
}

body.vinora-lightbox-open {
    overflow: hidden;
}

.sp-related-scroll {
    gap: 14px;
}

.sp-product-card {
    flex: 0 0 270px;
    overflow: hidden;
    border: 1px solid var(--sp-border-subtle);
    border-radius: 22px;
    background: #FFFFFF;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.sp-product-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #F8FCFD 0%, #E9F5F8 100%);
}

.sp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-product-info {
    padding: 1rem;
}

.sp-product-name {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.2rem;
    line-height: 1.08;
    color: var(--sp-text-primary);
}

.sp-product-price {
    color: var(--sp-text-primary);
}

.sp-mobile-bar {
    box-shadow: 0 -16px 42px rgba(15, 23, 42, 0.12);
}

@media (max-width: 768px) {
    .sp-container {
        padding-top: 88px;
        padding-bottom: 120px;
    }

    .sp-wrapper {
        padding-inline: 16px;
    }

    .sp-main-image {
        padding: 18px;
    }

    .sp-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sp-social-card {
        flex: 0 0 278px;
        max-width: 278px;
    }

    .sp-product-card {
        flex-basis: 230px;
    }
}

/* Trust Signals */
.sp-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    padding: 16px 0;
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
    margin-bottom: 20px;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--sp-text-secondary);
}

.sp-trust-item svg {
    width: 14px;
    height: 14px;
    color: var(--sp-success);
}

/* Accordion */
.sp-accordion {
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--sp-bg-card);
}

.sp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.sp-accordion-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.sp-accordion-title {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--sp-text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sp-accordion-icon {
    width: 18px;
    height: 18px;
    color: var(--sp-text-muted);
    transition: transform 0.3s ease;
}

.sp-accordion-header.open .sp-accordion-icon {
    transform: rotate(180deg);
}

.sp-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sp-accordion-content.open { max-height: 400px; }

.sp-accordion-body {
    padding: 0 18px 18px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--sp-text-secondary);
}

.sp-accordion-body a {
    color: var(--sp-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sp-accordion-body a:hover {
    color: var(--sp-gold-light);
}

/* ============================================
   SOCIAL PROOF SECTION (THE VERDICT)
   ============================================ */
.sp-social-proof {
    padding: 40px 0;
    background: var(--sp-bg-surface);
    border-top: 1px solid var(--sp-border);
    border-bottom: 1px solid var(--sp-border);
}

.sp-section-header {
    text-align: center;
    margin-bottom: 32px;
}

.sp-section-prefix {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sp-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.sp-section-title {
    font-family: 'Playfair Display', 'Didot', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--sp-cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.sp-section-subtitle {
    font-family: 'Bodoni Moda', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--sp-text-secondary);
}

/* Social Proof Cards Grid */
.sp-social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .sp-social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        border: 1px solid rgba(129, 216, 208, 0.2);
    }
}

.sp-social-card {
    background: var(--sp-bg-card);
    border: 1px solid rgba(129, 216, 208, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .sp-social-card {
        border: none;
        border-radius: 0;
        border-right: 1px solid rgba(129, 216, 208, 0.2);
    }
    .sp-social-card:last-child { border-right: none; }
}

.sp-social-card:hover {
    background: rgba(129, 216, 208, 0.03);
}

.sp-social-media {
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--sp-bg-elevated);
}

@media (min-width: 768px) {
    .sp-social-media { 
        height: 180px; 
        aspect-ratio: auto;
    }
}

.sp-social-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(30%);
    opacity: 0.85;
    transition: all 0.4s ease;
}

.sp-social-card:hover .sp-social-media img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

.sp-social-content {
    padding: 20px 16px 24px;
    text-align: center;
}

.sp-social-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 12px;
}

.sp-social-stars svg {
    width: 12px;
    height: 12px;
    color: var(--sp-gold);
}

.sp-social-quote {
    font-family: 'Bodoni Moda', serif;
    font-size: 13px;
    font-style: italic;
    line-height: 1.6;
    color: var(--sp-cream);
    margin-bottom: 12px;
}

.sp-social-author {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--sp-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.sp-social-badge {
    display: inline-block;
    padding: 4px 10px;
    border: 0.5px solid var(--sp-gold);
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 700;
    color: var(--sp-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   YOU MAY ALSO LIKE SECTION
   ============================================ */
.sp-related {
    padding: 40px 0 20px;
}

.sp-related-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sp-border);
}

.sp-related-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--sp-cream);
}

.sp-related-link {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--sp-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s;
}

.sp-related-link:hover { color: var(--sp-gold-light); }

/* Horizontal Scroll Container */
.sp-related-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 16px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
}

.sp-related-scroll::-webkit-scrollbar { display: none; }

.sp-product-card {
    flex-shrink: 0;
    width: 200px;
    background: var(--sp-bg-card);
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    scroll-snap-align: start;
}

@media (min-width: 768px) {
    .sp-product-card { width: 220px; }
}

.sp-product-card:hover {
    border-color: var(--sp-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.sp-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: var(--sp-gold);
    color: #0F172A;
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 5;
}

.sp-product-image {
    aspect-ratio: 1;
    background: var(--sp-bg-surface);
    overflow: hidden;
}

.sp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.3s ease;
}

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

.sp-product-info {
    padding: 12px 14px 16px;
}

.sp-product-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--sp-text-primary);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--sp-gold-light);
}

.sp-product-badge--sale {
    left: auto;
    right: 10px;
    background: rgba(34, 197, 94, 0.16);
    color: #8ef0ae;
    border: 1px solid rgba(34, 197, 94, 0.22);
}

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

@media (max-width: 768px) {
    .sp-mobile-bar {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(76px + env(safe-area-inset-bottom, 0px));
        z-index: 9992;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 14px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(129, 216, 208, 0.2);
        border-radius: 16px;
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(10px);
    }

    .sp-mobile-bar__price {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .sp-mobile-bar__label {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(129, 216, 208, 0.88);
    }

    .sp-mobile-bar__value {
        margin-top: 4px;
        font-size: 14px;
        font-weight: 700;
        color: var(--sp-text-primary);
    }

    .sp-mobile-bar__value del {
        opacity: 0.5;
        margin-right: 8px;
    }

    .sp-mobile-bar__btn {
        border: 1px solid var(--sp-gold-light);
        background: var(--sp-gold-light);
        color: #0F172A;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        border-radius: 999px;
        min-height: 44px;
        padding: 0 18px;
        flex-shrink: 0;
    }
}

@media (hover: none), (pointer: coarse) {
    .sp-live-indicator,
    .sp-mobile-bar {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }
}

@keyframes sp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.sp-spin { animation: sp-spin 1s linear infinite; }

/* ============================================
   WOOCOMMERCE BREADCRUMBS
   ============================================ */
.product-breadcrumbs {
    font-size: 11px;
    color: #666;
    margin-bottom: 16px;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}
.product-breadcrumbs a:hover {
    color: #81D8D0;
}

/* ============================================
   TRUST SIGNALS (NEW)
   ============================================ */
.product-trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}
.trust-signal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #64748B;
}

/* ============================================
   PAYMENT METHOD ICONS
   ============================================ */
.product-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.product-payment-icons .payment-label {
    font-size: 10px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.product-payment-icons .payment-chip {
    font-size: 9px;
    color: #64748B;
    background: #FFFFFF;
    border: 1px solid #D6E2EA;
    padding: 3px 8px;
    border-radius: 2px;
    font-family: monospace;
}

/* ============================================
   YOU MIGHT ALSO LIKE (GRID)
   ============================================ */
.related-products-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}
.related-products-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 24px;
    color: #0F172A;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .related-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.related-product-card {
    position: relative;
}
.related-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.related-product-image {
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid #EEF4F7;
    border-radius: 4px;
    margin-bottom: 8px;
    background: #FFFFFF;
}
.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.related-product-link:hover .related-product-image img {
    transform: scale(1.05);
}
.related-product-cat {
    font-size: 9px;
    color: #81D8D0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: monospace;
}
.related-product-name {
    font-size: 13px;
    color: #0F172A;
    margin: 4px 0;
    line-height: 1.3;
}
.related-product-price {
    font-size: 14px;
    color: #81D8D0;
    font-weight: 600;
}
.related-product-add {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: 1px solid #81D8D0;
    color: #81D8D0;
    font-size: 10px;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 2px;
    transition: all 0.2s;
}
.related-product-add:hover {
    background: #81D8D0;
    color: #0F172A;
}

/* ELUREYA product-page readability and jewelry dossier polish. */
.single-product,
.single-product .site-main {
    color: #0F172A;
}

.sp-dossier {
    background: #FFFFFF !important;
    border-color: #D6E2EA !important;
    color: #0F172A !important;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.sp-dossier span,
.sp-dossier div,
.sp-dossier p {
    color: #0F172A !important;
}

.sp-dossier .text-\[\#64748B\],
.sp-dossier [class*="text-[#64748B]"] {
    color: #334155 !important;
}

.sp-social-card {
    background: #FFFFFF !important;
    border-color: #D6E2EA !important;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.sp-social-media {
    aspect-ratio: 1 !important;
    height: auto !important;
    background: linear-gradient(135deg, #EEF8F8 0%, #FFFFFF 70%) !important;
}

.sp-social-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    filter: none !important;
    opacity: 1 !important;
}

.sp-social-quote,
.sp-social-author {
    color: #0F172A !important;
}

.sp-social-badge {
    color: #008C95 !important;
}

/* ============================================
   VINORA PDP RECOVERY PASS
   ============================================ */

.sp-dossier {
    border-color: #D6E4EA !important;
    border-radius: 0 !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.05);
}

.sp-dossier .flex {
    gap: 0.75rem;
}

.sp-dossier span {
    opacity: 1 !important;
    color: #0F172A !important;
}

.sp-accordion-title,
.sp-section-title,
.sp-related-title {
    color: #0F172A !important;
}

.sp-accordion-body,
.sp-accordion-body p,
.sp-section-subtitle,
.sp-social-author {
    color: #475569 !important;
}

.sp-social-carousel {
    padding-bottom: 8px;
}

.sp-social-card {
    background: #FFFFFF !important;
    border: 1px solid #D6E4EA !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.sp-social-media {
    aspect-ratio: 1 / 1 !important;
    background: linear-gradient(180deg, #F8FCFD 0%, #E6F4F7 100%) !important;
}

.sp-social-media img {
    object-fit: cover !important;
    padding: 0 !important;
    filter: none !important;
    opacity: 1 !important;
}

.sp-social-content {
    padding: 0 18px 22px !important;
}

.sp-social-quote {
    color: #0F172A !important;
}

.sp-social-badge {
    border-color: rgba(129, 216, 208, 0.5) !important;
    color: #0F172A !important;
    background: #F3FCFB !important;
}

.sp-related-scroll {
    gap: 18px;
    margin: 0;
    padding: 0 0 16px;
}

.sp-product-card {
    width: 250px !important;
    border-radius: 0 !important;
    border-color: #D6E4EA !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
}

.sp-product-card:hover {
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.sp-product-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(180deg, #FAFCFD 0%, #ECF6F8 100%);
}

.sp-product-image img {
    object-fit: cover !important;
    padding: 0 !important;
}

.sp-product-info {
    padding: 16px 16px 18px !important;
}

.sp-product-name {
    font-family: 'Bodoni Moda', serif;
    font-size: 18px !important;
    line-height: 1.15 !important;
    color: #0F172A !important;
}

.sp-product-price {
    font-size: 20px !important;
    color: #0F172A !important;
}

.sp-mobile-bar {
    border-color: rgba(129, 216, 208, 0.24) !important;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.14) !important;
}

.sp-mobile-bar__label {
    color: rgba(76, 189, 179, 0.94) !important;
}

@media (max-width: 768px) {
    .sp-product-card {
        width: 76vw !important;
    }

    .sp-social-card {
        flex-basis: 82vw !important;
        max-width: 82vw !important;
    }

    .sp-mobile-bar {
        left: 10px !important;
        right: 10px !important;
        bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
        padding: 10px 12px !important;
    }
}

/* ============================================
   VINORA PDP RECOVERY PASS V2
   ============================================ */

.sp-main-image-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #D6E4EA;
    background: linear-gradient(180deg, #FBFDFD 0%, #EAF5F8 100%);
}

.sp-main-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: transparent;
}

.sp-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.sp-gallery-thumb {
    border: 1px solid #D6E4EA;
    background: #FFFFFF;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.sp-gallery-thumb.is-active {
    border-color: #81D8D0;
    transform: translateY(-2px);
}

.sp-gallery-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.sp-gallery-zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    min-height: 38px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: rgba(255, 255, 255, 0.88);
    color: #0F172A;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sp-variation-panel {
    margin-bottom: 1.1rem;
    padding: 1rem;
    border: 1px solid #D6E4EA;
    background: #FFFFFF;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.sp-variation-panel__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.sp-variation-panel__header span:first-child,
.sp-variation-group__label {
    color: #0F172A;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.sp-variation-panel__note {
    color: #64748B;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    text-transform: none;
    letter-spacing: 0.02em;
}

.sp-variation-group {
    margin-top: 0.85rem;
}

.sp-variation-group__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.45rem;
}

.sp-variation-option {
    min-height: 36px;
    padding: 0.5rem 0.85rem;
    border: 1px solid #D6E4EA;
    border-radius: 999px;
    background: #FFFFFF;
    color: #0F172A;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sp-variation-option.is-active {
    border-color: #81D8D0;
    background: rgba(129, 216, 208, 0.16);
}

.sp-buy-btn[aria-disabled="true"],
#sp-ajax-add-btn[disabled],
#sp-sticky-add-btn[disabled] {
    opacity: 0.5;
    pointer-events: none;
}

.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.88);
}

.sp-lightbox__image {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    object-fit: contain;
    border-radius: 20px;
    background: #FFFFFF;
}

.sp-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sp-related-scroll {
    scroll-padding-inline: 20px;
}

.sp-product-card {
    overflow: hidden;
}

.sp-product-image {
    aspect-ratio: 1 / 1;
}

.sp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .sp-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        margin-top: 10px;
    }

    .sp-gallery-zoom {
        right: 10px;
        bottom: 10px;
        min-height: 34px;
        font-size: 0.62rem;
    }

    .sp-variation-panel {
        padding: 0.9rem;
    }

    .sp-variation-option {
        min-height: 34px;
        padding: 0.45rem 0.7rem;
        font-size: 0.62rem;
    }

    .sp-product-card {
        width: 72vw !important;
    }

    .sp-social-card {
        flex-basis: 76vw !important;
        max-width: 76vw !important;
    }
}
