        /* ============================================
           ONIKIX — Producto Individual
           Styles exclusive to single-product.php
           ============================================ */

        /* ── BASE ── */
        body {
            background: var(--bg-main, #0a0a0c);
            color: #fff;
            font-family: var(--font-body, 'Space Grotesk', sans-serif);
            -webkit-font-smoothing: antialiased;
        }

        /* ── HERO DEL PRODUCTO ── */
        .prod-hero {
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 3rem 4rem;
            gap: 4rem;
            align-items: center;
        }

        /* ── COLUMNA IMAGEN ── */
        .prod-img-col {
            position: relative;
        }

        .prod-img-glow {
            position: absolute;
            inset: -10%;
            background: radial-gradient(circle at center,
                rgba(0, 240, 255, 0.07) 0%,
                transparent 70%);
            filter: blur(40px);
            pointer-events: none;
            z-index: 0;
        }

        .prod-img-main {
            position: relative;
            z-index: 1;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .prod-img-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            transition: transform 0.3s ease;
            will-change: transform;
            backface-visibility: hidden;
        }

        .prod-img-main {
            cursor: zoom-in;
        }

        @media (hover: hover) and (pointer: fine) {
            .prod-img-main.is-zooming img {
                transform: scale(1.32);
            }
        }

        .prod-img-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg,
                rgba(0, 240, 255, 0.04),
                rgba(168, 85, 247, 0.04));
        }

        .prod-img-placeholder svg {
            width: 80px;
            height: 80px;
            opacity: 0.15;
        }

        /* Galería de miniaturas */
        .prod-img-gallery {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }

        .prod-img-thumb {
            width: 72px;
            height: 72px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            transition: border-color 0.2s ease;
            flex-shrink: 0;
        }

        .prod-img-thumb:hover,
        .prod-img-thumb.active {
            border-color: var(--accent-2, #00F0FF);
        }

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

        /* ── COLUMNA INFO ── */
        .prod-info-col {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Breadcrumb */
        .prod-breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .prod-breadcrumb a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .prod-breadcrumb a:hover {
            color: var(--accent-2, #00F0FF);
        }

        .prod-breadcrumb span {
            opacity: 0.4;
        }

        /* Badge de personaje */
        .prod-char-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 16px;
            border-radius: 100px;
            border: 1px solid rgba(0, 240, 255, 0.3);
            color: var(--accent-2, #00F0FF);
            background: rgba(0, 240, 255, 0.06);
            text-decoration: none;
            transition: all 0.2s ease;
            width: fit-content;
        }

        .prod-char-badge:hover {
            background: rgba(0, 240, 255, 0.12);
            color: var(--accent-2, #00F0FF);
        }

        /* Nombre del producto */
        .prod-name {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: clamp(2rem, 3.5vw, 3rem);
            line-height: 0.95;
            text-transform: uppercase;
            color: #fff;
        }

        /* Precio */
        .prod-price {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 700;
            font-size: 2rem;
            color: #fff;
        }

        /* Eliminar wrapper de precio de WooCommerce */
        .prod-price .woocommerce-Price-amount,
        .prod-price .woocommerce-Price-currencySymbol,
        .prod-price bdi {
            font: inherit;
            color: inherit;
        }

        /* Descripción corta */
        .prod-short-desc {
            font-size: 1rem;
            color: var(--text-gray, #8ca0b0);
            line-height: 1.7;
            border-left: 2px solid rgba(0, 240, 255, 0.25);
            padding-left: 1.25rem;
        }

        /* ── FORMULARIO DE COMPRA (WooCommerce) ── */
        .prod-cart-wrapper {
            margin-top: 0.5rem;
        }

        /* Reestilizar el form del carrito de WooCommerce */
        .prod-cart-wrapper .cart {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ── Variaciones (talla/color) ───────────────────────────── */
        .prod-cart-wrapper .variations_form {
            width: 100%;
        }

        .prod-cart-wrapper .variations {
            width: 100%;
            border: 0;
            margin: 0 0 1rem;
            border-collapse: separate;
            border-spacing: 0 0.65rem;
        }

        .prod-cart-wrapper .variations tbody,
        .prod-cart-wrapper .variations tr {
            width: 100%;
        }

        .prod-cart-wrapper .variations th,
        .prod-cart-wrapper .variations td {
            display: block;
            width: 100%;
            padding: 0;
            border: 0;
            text-align: left;
        }

        .prod-cart-wrapper .variations th.label {
            margin-bottom: 0.45rem;
        }

        .prod-cart-wrapper .variations th.label label {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.2px;
            color: #fff;
            line-height: 1.1;
            margin: 0;
        }

        .prod-cart-wrapper .variations td.value {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .prod-cart-wrapper .variations select {
            width: 100%;
            min-height: 52px;
            padding: 0.9rem 2.8rem 0.9rem 1rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            font-family: var(--font-body, 'Space Grotesk', sans-serif);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.25;
            outline: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: linear-gradient(45deg, transparent 50%, #9fb3c7 50%), linear-gradient(135deg, #9fb3c7 50%, transparent 50%);
            background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
            background-size: 6px 6px, 6px 6px;
            background-repeat: no-repeat;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .prod-cart-wrapper .variations select:focus {
            border-color: rgba(0, 240, 255, 0.45);
            box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.14);
            background-color: rgba(255, 255, 255, 0.09);
        }

        .prod-cart-wrapper .variations .reset_variations {
            display: inline-flex;
            align-items: center;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--accent-2, #00F0FF);
            text-decoration: none;
            opacity: 0.9;
            white-space: nowrap;
        }

        .prod-cart-wrapper .variations .reset_variations:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .prod-cart-wrapper .single_variation_wrap {
            width: 100%;
        }

        .prod-cart-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart {
            display: flex;
            align-items: center;
            gap: 1rem;
            width: 100%;
            flex-wrap: nowrap;
        }

        .prod-cart-wrapper .woocommerce-variation-price {
            margin: 0.35rem 0 0.9rem;
            color: #fff;
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 800;
            font-size: 1.1rem;
        }

        /* Input de cantidad */
        .prod-cart-wrapper .quantity {
            display: flex;
            align-items: center;
        }

        .prod-cart-wrapper .quantity .qty {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-size: 1rem;
            font-weight: 600;
            width: 70px;
            padding: 0.85rem 1rem;
            border-radius: 8px;
            text-align: center;
            outline: none;
            -moz-appearance: textfield;
            transition: border-color 0.2s ease;
        }

        .prod-cart-wrapper .quantity .qty::-webkit-outer-spin-button,
        .prod-cart-wrapper .quantity .qty::-webkit-inner-spin-button {
            -webkit-appearance: none;
        }

        .prod-cart-wrapper .quantity .qty:focus {
            border-color: rgba(0, 240, 255, 0.45);
        }

        /* Botón Añadir al carrito */
        .prod-cart-wrapper .single_add_to_cart_button {
            background: var(--gradient-action, linear-gradient(135deg, #00F0FF, #a855f7)) !important;
            color: #fff !important;
            font-family: var(--font-head, 'Outfit', sans-serif) !important;
            font-weight: 800 !important;
            font-size: 0.9rem !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            padding: 1rem 2.5rem !important;
            border: none !important;
            border-radius: 100px !important;
            cursor: pointer !important;
            transition: transform 0.25s ease, box-shadow 0.25s ease !important;
            flex: 1;
            min-width: 200px;
        }

        .prod-cart-wrapper .single_variation_wrap .single_add_to_cart_button {
            flex: 1 1 auto;
            min-width: 0;
        }

        .prod-cart-wrapper .single_add_to_cart_button:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 30px rgba(0, 240, 255, 0.3) !important;
        }

        .prod-cart-wrapper .single_add_to_cart_button:disabled {
            opacity: 0.5 !important;
            cursor: not-allowed !important;
            transform: none !important;
        }

        /* Notificación añadido al carrito */
        .woocommerce-message,
        .woocommerce-error,
        .woocommerce-info {
            background: rgba(255, 255, 255, 0.04) !important;
            border-left: 3px solid var(--accent-2, #00F0FF) !important;
            color: #fff !important;
            padding: 1rem 1.5rem !important;
            border-radius: 0 8px 8px 0 !important;
            font-family: var(--font-body, 'Space Grotesk', sans-serif) !important;
        }

        /* ── EXPRESS CHECKOUT (Apple Pay / Google Pay) — inyectado por Stripe ── */
        #wc-stripe-express-checkout-wrapper,
        .wc-stripe-express-checkout-element-wrapper,
        #wc-stripe-payment-request-wrapper,
        .wc-stripe-payment-request-wrapper {
            margin-top: 1.25rem;
        }

        #wc-stripe-express-checkout-element,
        .wc-stripe-express-checkout-element,
        #wc-stripe-payment-request-button,
        .wc-stripe-payment-request-button {
            border-radius: 10px;
            overflow: hidden;
            min-height: 44px;
        }

        #wc-stripe-express-checkout-button-separator,
        .wc-stripe-express-checkout-button-separator,
        #wc-stripe-payment-request-button-separator,
        .wc-stripe-payment-request-button-separator {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1rem 0;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--text-gray, #8ca0b0);
        }

        #wc-stripe-express-checkout-button-separator::before,
        #wc-stripe-express-checkout-button-separator::after,
        .wc-stripe-express-checkout-button-separator::before,
        .wc-stripe-express-checkout-button-separator::after,
        #wc-stripe-payment-request-button-separator::before,
        #wc-stripe-payment-request-button-separator::after,
        .wc-stripe-payment-request-button-separator::before,
        .wc-stripe-payment-request-button-separator::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.08);
        }

        /* ── DIVIDER ── */
        .prod-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.07);
            border: none;
        }

        /* ── SECCIÓN DESCRIPCIÓN COMPLETA ── */
        .prod-description-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .prod-section-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent-2, #00F0FF);
            margin-bottom: 1.5rem;
            display: block;
        }

        .prod-description-content {
            font-size: 1rem;
            color: var(--text-gray, #8ca0b0);
            line-height: 1.8;
            max-width: 700px;
        }

        .prod-description-content p {
            margin-bottom: 1rem;
        }

        /* ── PRODUCTOS RELACIONADOS ── */
        .prod-related-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .prod-related-title {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 900;
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            text-transform: uppercase;
            margin-bottom: 2rem;
            color: #fff;
        }

        .prod-related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1.25rem;
        }

        .prod-related-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .prod-related-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0, 240, 255, 0.2);
        }

        .prod-related-img {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.02);
        }

        .prod-related-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .prod-related-card:hover .prod-related-img img {
            transform: scale(1.05);
        }

        .prod-related-info {
            padding: 1rem;
        }

        .prod-related-info h4 {
            font-family: var(--font-head, 'Outfit', sans-serif);
            font-weight: 800;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 0.25rem;
        }

        .prod-related-price {
            font-size: 0.9rem;
            color: var(--accent-2, #00F0FF);
            font-weight: 600;
        }

        .prod-related-price .woocommerce-Price-amount,
        .prod-related-price bdi {
            font: inherit;
            color: inherit;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .prod-hero {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                padding: 100px 2rem 4rem;
                min-height: auto;
            }

            .prod-img-col {
                max-width: 500px;
                margin: 0 auto;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .prod-hero {
                padding: 90px 1.5rem 3rem;
            }

            .prod-description-section,
            .prod-related-section {
                padding: 2.5rem 1.5rem;
            }

            .prod-cart-wrapper .cart {
                flex-direction: column;
                align-items: stretch;
            }

            .prod-cart-wrapper .variations {
                border-spacing: 0 0.55rem;
                margin-bottom: 0.85rem;
            }

            .prod-cart-wrapper .variations th.label label {
                font-size: 1.2rem;
            }

            .prod-cart-wrapper .variations td.value {
                gap: 0.45rem;
                flex-wrap: wrap;
            }

            .prod-cart-wrapper .variations select {
                min-height: 50px;
                font-size: 0.98rem;
            }

            .prod-cart-wrapper .single_variation_wrap .woocommerce-variation-add-to-cart {
                flex-wrap: nowrap;
                align-items: stretch;
                gap: 0.65rem;
            }

            .prod-cart-wrapper .quantity {
                flex: 0 0 auto;
            }

            .prod-cart-wrapper .quantity .qty {
                width: 64px;
                min-width: 64px;
                padding: 0.8rem 0.4rem;
                border-radius: 10px;
                font-size: 0.95rem;
            }

            .prod-cart-wrapper .single_add_to_cart_button {
                width: auto !important;
                text-align: center !important;
                flex: 1 1 auto !important;
                min-width: 0 !important;
                padding: 0.92rem 1rem !important;
                font-size: 0.82rem !important;
                letter-spacing: 0.6px !important;
            }

            .prod-img-main {
                cursor: default;
            }
        }
