/* ═══════════════════════════════════════════════════════════════
   Phytallage — Single Product CSS v1.1.2
   Extraído de Claude Design (La Tienda Natural - Producto.html)
   Solo var(--ltn-*) — cero hex hardcoded
   Scope: .single-product-ltn para evitar colisiones WooCommerce
   ═══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ───────────────────────────────────────────────── */

.single-product-ltn .ltn-breadcrumb {
    padding: 20px 0 0;
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
}

.single-product-ltn .ltn-breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.single-product-ltn .ltn-breadcrumb li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-product-ltn .ltn-breadcrumb a:hover {
    color: var(--ltn-green-primary, #506727);
}

.single-product-ltn .ltn-breadcrumb .sep {
    color: var(--ltn-gray-200, #E2E8F0);
    display: inline-flex;
}

.single-product-ltn .ltn-breadcrumb .current {
    color: var(--ltn-gray-700, #334155);
    font-weight: 600;
}

/* ── Contenedor narrow ────────────────────────────────────────── */

.single-product-ltn .ltn-sp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: var(--ltn-gutter, 32px);
}

/* ── Producto · zona superior ─────────────────────────────────── */

.single-product-ltn .product-top {
    padding: 24px 0 72px;
}

.single-product-ltn .product-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Galería ──────────────────────────────────────────────────── */

.single-product-ltn .gallery .main {
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.4), transparent 50%),
        linear-gradient(135deg, var(--ltn-green-light, #BACD70) 0%, var(--ltn-green-primary, #506727) 100%);
    box-shadow: var(--ltn-shadow-lg, 0 30px 60px -30px rgba(80,103,39,0.25));
}

.single-product-ltn .gallery .main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-product-ltn .gallery .badge-trade {
    background: var(--ltn-terra, #D57B4E);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
    white-space: nowrap;
}

.single-product-ltn .gallery .badge-trade:hover {
    background: var(--ltn-green-dark, #3e5120);
}

.single-product-ltn .gallery .zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,0.95);
    color: var(--ltn-green-dark, #3e5120);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px -4px rgba(0,0,0,0.2);
    border: 0;
    cursor: pointer;
    z-index: 2;
}

.single-product-ltn .gallery .thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}

.single-product-ltn .gallery .thumbs::-webkit-scrollbar {
    height: 6px;
}

.single-product-ltn .gallery .thumbs::-webkit-scrollbar-thumb {
    background: var(--ltn-gray-200, #E2E8F0);
    border-radius: 3px;
}

.single-product-ltn .gallery .thumb {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color .15s, transform .15s;
    position: relative;
    background: var(--ltn-green-bg, #F7F9ED);
}

.single-product-ltn .gallery .thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-product-ltn .gallery .thumb:hover {
    transform: translateY(-2px);
}

.single-product-ltn .gallery .thumb.active {
    border-color: var(--ltn-green-primary, #506727);
}

/* ── Columna info ─────────────────────────────────────────────── */

.single-product-ltn .info {
    padding-top: 4px;
}

/* Tarjeta vendedor */
.single-product-ltn .seller-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--ltn-green-bg, #F7F9ED);
    border-radius: 14px;
    margin-bottom: 28px;
    text-decoration: none;
}

.single-product-ltn .seller-card .avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--ltn-green-light, #BACD70);
    color: var(--ltn-green-dark, #3e5120);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--ltn-font-size-md, 15px);
    flex-shrink: 0;
    overflow: hidden;
}

.single-product-ltn .seller-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.single-product-ltn .seller-card .meta {
    flex: 1;
    min-width: 0;
}

.single-product-ltn .seller-card .meta .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ltn-gray-500, #64748B);
    margin-bottom: 2px;
}

.single-product-ltn .seller-card .meta .name {
    font-size: var(--ltn-font-size-md, 15px);
    font-weight: 700;
    color: var(--ltn-green-dark, #3e5120);
    line-height: 1.2;
}

.single-product-ltn .seller-card .go {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--ltn-font-size-sm, 13px);
    font-weight: 600;
    color: var(--ltn-terra, #D57B4E);
    flex-shrink: 0;
}

.single-product-ltn .seller-card .go:hover {
    color: var(--ltn-terra, #D57B4E);
    opacity: 0.8;
}

/* Nombre producto */
.single-product-ltn h1.product-name {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ltn-green-dark, #3e5120);
    margin: 0 0 14px;
    text-wrap: balance;
}

/* Meta (stars + SKU) */
.single-product-ltn .product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.single-product-ltn .product-meta .dot {
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: var(--ltn-gray-200, #E2E8F0);
    flex-shrink: 0;
}

.single-product-ltn .product-meta .ltn-stars {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ltn-terra, #D57B4E);
}

.single-product-ltn .product-meta .ltn-stars .num {
    color: var(--ltn-gray-700, #334155);
    font-weight: 600;
}

.single-product-ltn .product-meta .ltn-stars .reviews-count {
    color: var(--ltn-gray-500, #64748B);
    font-weight: 400;
}

.single-product-ltn .product-meta .sku {
    color: var(--ltn-gray-500, #64748B);
}

/* Precio */
.single-product-ltn .price-block {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 22px;
}

.single-product-ltn .price-block .price {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ltn-green-primary, #506727);
    line-height: 1;
}

.single-product-ltn .price-block .vat {
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
}

/* Anular estilos WC en el precio */
.single-product-ltn .price-block .woocommerce-Price-amount {
    font-size: inherit;
    color: inherit;
    font-weight: inherit;
}

/* Ocultar sufijo de impuestos de WooCommerce */
.single-product-ltn .price-block .woocommerce-price-suffix,
.single-product-ltn .price-block .tax_label,
.single-product-ltn .price-block small {
    display: none !important;
}

/* Descripción corta */
.single-product-ltn .product-desc {
    font-size: var(--ltn-font-size-lg, 16px);
    line-height: 1.65;
    color: var(--ltn-gray-700, #334155);
    margin: 0 0 32px;
    max-width: 540px;
    text-wrap: pretty;
}

/* Acciones: qty + botones */
.single-product-ltn .actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.single-product-ltn .qty {
    display: inline-flex;
    align-items: center;
    height: 56px;
    border-radius: 999px;
    background: #fff;
    box-shadow: inset 0 0 0 1.5px var(--ltn-gray-200, #E2E8F0);
    flex-shrink: 0;
}

.single-product-ltn .qty button {
    width: 48px;
    height: 100%;
    background: transparent;
    color: var(--ltn-green-primary, #506727);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 0;
    cursor: pointer;
}

.single-product-ltn .qty button:hover {
    color: var(--ltn-green-dark, #3e5120);
}

.single-product-ltn .qty input {
    width: 36px;
    height: 100%;
    border: 0;
    text-align: center;
    background: transparent;
    font-family: inherit;
    font-size: var(--ltn-font-size-md, 15px);
    font-weight: 700;
    color: var(--ltn-green-dark, #3e5120);
    -moz-appearance: textfield;
}

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

.single-product-ltn .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-size: var(--ltn-font-size-md, 15px);
    font-weight: 600;
    letter-spacing: 0.005em;
    transition: transform .15s, box-shadow .15s, background .15s, color .15s;
    flex: 1;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
}

.single-product-ltn .btn:hover {
    transform: translateY(-1px);
}

.single-product-ltn .btn.btn-primary {
    background: var(--ltn-green-primary, #506727);
    color: #fff;
    box-shadow: 0 8px 22px -8px rgba(80,103,39,0.55);
}

.single-product-ltn .btn.btn-primary:hover {
    background: var(--ltn-green-dark, #3e5120);
}

/* form.cart WC — flex row; flex: 1 para crecer junto al botón de intercambio */
.single-product-ltn .actions form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
}

.single-product-ltn .actions form.cart .stock {
    flex: 0 0 100%;
    order: -1;
    font-size: 13px;
    color: var(--ltn-gray-500, #64748B);
    margin: 0;
}

/* Quantity control — WooCommerce nativo */
.single-product-ltn .actions .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--ltn-gray-200, #E2E8F0);
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
    background: #fff;
}

.single-product-ltn .actions .quantity label {
    display: none;
}

.single-product-ltn .actions .qty-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 48px;
    font-size: 20px;
    font-weight: 400;
    color: var(--ltn-gray-700, #334155);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    flex-shrink: 0;
}

.single-product-ltn .actions .qty-btn:hover {
    background: var(--ltn-green-bg, #F7F9ED);
}

.single-product-ltn .actions input.qty {
    width: 44px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--ltn-gray-200, #E2E8F0);
    border-right: 1px solid var(--ltn-gray-200, #E2E8F0);
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--ltn-gray-700, #334155);
    -moz-appearance: textfield;
    height: 100%;
}

.single-product-ltn .actions input.qty::-webkit-outer-spin-button,
.single-product-ltn .actions input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Botón Añadir al carrito — WooCommerce nativo */
.single-product-ltn .actions .single_add_to_cart_button {
    background: var(--ltn-green-primary, #506727);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 28px;
    height: 48px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.single-product-ltn .actions .single_add_to_cart_button:hover {
    background: var(--ltn-green-dark, #3e5120);
}

/* Botón "Añadir a la cesta de intercambio" en ficha de producto */
.single-product-ltn .actions .ltn-sp-exchange-btn {
    background: var(--ltn-terra);
    color: var(--ltn-white, #fff);
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    height: 48px;
    font-family: inherit;
    font-size: var(--ltn-font-size-md, 15px);
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: background 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.single-product-ltn .actions .ltn-sp-exchange-btn:hover,
.single-product-ltn .actions .ltn-sp-exchange-btn:focus-visible {
    background: var(--ltn-green-light);
    outline: none;
}

/* Estado "ya en cesta de intercambio" — anillo terracota igual que el orb */
.single-product-ltn .actions .ltn-sp-exchange-btn.is-in-exchange-cart {
    box-shadow: 0 0 0 2px var(--ltn-white, #fff), 0 0 0 4px var(--ltn-terra);
}

.single-product-ltn .actions .ltn-sp-exchange-btn.ltn-exchange--loading {
    opacity: 0.6;
    cursor: wait;
}

.single-product-ltn .actions .ltn-sp-exchange-btn svg {
    flex-shrink: 0;
}

/* Divisor */
.single-product-ltn .divider {
    height: 1px;
    background: var(--ltn-gray-200, #E2E8F0);
    margin: 0 0 28px;
}

/* Pills de siembra */
.single-product-ltn .quick-info-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ltn-gray-500, #64748B);
    margin-bottom: 14px;
}

.single-product-ltn .pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.single-product-ltn .pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 12px;
    background: var(--ltn-green-bg, #F7F9ED);
    border-radius: 12px;
    transition: background .15s;
}

.single-product-ltn .pill:hover {
    background: var(--ltn-green-bg, #F7F9ED);
    filter: brightness(0.96);
}

.single-product-ltn .pill .pill-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    color: var(--ltn-green-primary, #506727);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.single-product-ltn .pill .pill-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ltn-gray-500, #64748B);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}

.single-product-ltn .pill .pill-value {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ltn-green-dark, #3e5120);
    line-height: 1;
}

/* Compartir */
.single-product-ltn .share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
}

.single-product-ltn .share a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--ltn-green-bg, #F7F9ED);
    color: var(--ltn-green-primary, #506727);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s;
}

.single-product-ltn .share a:hover {
    background: var(--ltn-green-primary, #506727);
    color: #fff;
}

/* ── Tabs ─────────────────────────────────────────────────────── */

.single-product-ltn .tabs-wrap {
    background: var(--ltn-green-bg, #F7F9ED);
    padding: 64px 0 88px;
}

.single-product-ltn .tabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--ltn-gray-200, #E2E8F0);
    margin-bottom: 32px;
    scrollbar-width: none;
}

.single-product-ltn .tabs-nav::-webkit-scrollbar {
    display: none;
}

.single-product-ltn .tabs-nav button {
    background: transparent;
    border: 0;
    padding: 16px 24px;
    font-size: var(--ltn-font-size-md, 15px);
    font-weight: 600;
    color: var(--ltn-gray-500, #64748B);
    letter-spacing: -0.005em;
    position: relative;
    white-space: nowrap;
    transition: color .15s;
    cursor: pointer;
    font-family: inherit;
}

.single-product-ltn .tabs-nav button:hover {
    color: var(--ltn-green-dark, #3e5120);
}

.single-product-ltn .tabs-nav button.ltn-tab-active {
    color: var(--ltn-green-primary, #506727);
}

.single-product-ltn .tabs-nav button.ltn-tab-active::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: -1px;
    height: 3px;
    background: var(--ltn-green-primary, #506727);
    border-radius: 2px 2px 0 0;
}

.single-product-ltn .tabs-nav .count {
    display: inline-block;
    margin-left: 8px;
    background: var(--ltn-gray-200, #E2E8F0);
    color: var(--ltn-gray-500, #64748B);
    font-size: var(--ltn-font-size-xs, 11px);
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.single-product-ltn .tabs-nav button.ltn-tab-active .count {
    background: var(--ltn-green-primary, #506727);
    color: #fff;
}

.single-product-ltn .tab-panel {
    background: #fff;
    border-radius: 20px;
    padding: 48px 56px;
}

.single-product-ltn .tab-panel.hidden {
    display: none;
}

/* Descripción */
.single-product-ltn .desc-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
}

.single-product-ltn .desc-body h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ltn-green-dark, #3e5120);
    margin: 0 0 12px;
}

.single-product-ltn .desc-body h3:not(:first-child) {
    margin-top: 32px;
}

.single-product-ltn .desc-body p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ltn-gray-700, #334155);
    margin: 0 0 14px;
    text-wrap: pretty;
}

.single-product-ltn .desc-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-product-ltn .desc-body ul li {
    padding: 8px 0 8px 28px;
    font-size: var(--ltn-font-size-md, 15px);
    color: var(--ltn-gray-700, #334155);
    position: relative;
}

.single-product-ltn .desc-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 8px;
    background: var(--ltn-green-light, #BACD70);
    border-radius: 999px 999px 0 0;
    transform: rotate(-25deg);
}

.single-product-ltn .desc-aside {
    background: var(--ltn-green-bg, #F7F9ED);
    padding: 28px;
    border-radius: 16px;
}

.single-product-ltn .desc-aside h4 {
    font-size: var(--ltn-font-size-md, 14px);
    font-weight: 700;
    color: var(--ltn-green-dark, #3e5120);
    margin: 0 0 16px;
    letter-spacing: 0.01em;
}

.single-product-ltn .desc-aside .quote {
    font-style: italic;
    color: var(--ltn-gray-700, #334155);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0 0 16px;
    text-wrap: pretty;
}

.single-product-ltn .desc-aside .from {
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-product-ltn .desc-aside .from .mini-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--ltn-green-light, #BACD70);
    color: var(--ltn-green-dark, #3e5120);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--ltn-font-size-xs, 11px);
    flex-shrink: 0;
}

/* Ficha técnica */
.single-product-ltn .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 64px;
}

.single-product-ltn .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ltn-green-bg, #F7F9ED);
}

.single-product-ltn .spec-row .k {
    font-size: var(--ltn-font-size-md, 14px);
    color: var(--ltn-gray-500, #64748B);
    font-weight: 500;
}

.single-product-ltn .spec-row .v {
    font-size: 14.5px;
    color: var(--ltn-green-dark, #3e5120);
    font-weight: 700;
    text-align: right;
}

/* Valoraciones */
.single-product-ltn .reviews-head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--ltn-green-bg, #F7F9ED);
    align-items: start;
}

.single-product-ltn .reviews-score .big {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--ltn-green-dark, #3e5120);
    line-height: 1;
    margin-bottom: 10px;
}

.single-product-ltn .reviews-score .ltn-stars {
    color: var(--ltn-terra, #D57B4E);
    display: flex;
    gap: 2px;
    margin-bottom: 6px;
}

.single-product-ltn .reviews-score .total {
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
}

.single-product-ltn .reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-product-ltn .bar-row {
    display: grid;
    grid-template-columns: 56px 1fr 36px;
    gap: 14px;
    align-items: center;
    font-size: var(--ltn-font-size-sm, 13px);
    color: var(--ltn-gray-500, #64748B);
}

.single-product-ltn .bar-row .k {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ltn-gray-700, #334155);
    font-weight: 600;
}

.single-product-ltn .bar-row .track {
    height: 8px;
    border-radius: 999px;
    background: var(--ltn-green-bg, #F7F9ED);
    overflow: hidden;
}

.single-product-ltn .bar-row .fill {
    height: 100%;
    background: var(--ltn-terra, #D57B4E);
    border-radius: 999px;
}

.single-product-ltn .bar-row .n {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Lista reseñas WC — adaptar a estilo CD */
.single-product-ltn .review-list,
.single-product-ltn #reviews #comments ol.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.single-product-ltn #reviews #comments ol.commentlist li {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.single-product-ltn #reviews #comments ol.commentlist li .comment_container {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}

.single-product-ltn #reviews #comments ol.commentlist li img.avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    float: none;
}

/* ── Más del coleccionista ────────────────────────────────────── */

.single-product-ltn .more-block {
    padding-top: 32px;
    padding-bottom: 48px;
}

.single-product-ltn .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.single-product-ltn .section-head .left {
    max-width: 640px;
}

.single-product-ltn .eyebrow {
    font-size: var(--ltn-font-size-xs, 12px);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ltn-terra, #D57B4E);
    margin-bottom: 12px;
}

.single-product-ltn .section-head h2 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin: 0;
    color: var(--ltn-green-dark, #3e5120);
}

.single-product-ltn .section-head .right {
    padding-bottom: 6px;
    flex-shrink: 0;
}

.single-product-ltn .link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ltn-green-primary, #506727);
    padding-bottom: 4px;
    border-bottom: 2px solid var(--ltn-green-light, #BACD70);
    text-decoration: none;
}

.single-product-ltn .link-arrow:hover {
    color: var(--ltn-terra, #D57B4E);
    border-color: var(--ltn-terra, #D57B4E);
}

/* Grid de tarjetas de producto */
.single-product-ltn .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 900px) {
    .single-product-ltn .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-product-ltn .desc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-product-ltn .specs {
        grid-template-columns: 1fr;
    }

    .single-product-ltn .reviews-head {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-product-ltn .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .single-product-ltn .tabs-nav {
        overflow-x: auto;
    }

    .single-product-ltn .tab-panel {
        padding: 32px 24px;
    }

    h1.product-name {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .single-product-ltn .products-grid {
        grid-template-columns: 1fr;
    }

    .single-product-ltn h1.product-name {
        font-size: 28px;
    }

    .single-product-ltn .actions {
        flex-direction: column;
        align-items: stretch;
    }

    .single-product-ltn .actions form.cart {
        flex: none;
        width: 100%;
    }

    .single-product-ltn .actions .ltn-sp-exchange-btn {
        width: 100%;
        justify-content: center;
    }

    .single-product-ltn .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-product-ltn .ltn-breadcrumb {
        padding: 10px 0;
        font-size: 12px;
    }

    .single-product-ltn .ltn-breadcrumb ol {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* ── Tablet: 768px ── */
@media ( max-width: 768px ) {

    /* Hero grid — ya apilado por 900px
       pero ajustamos spacing */
    .single-product-ltn .product-top {
        padding: 24px 0 32px;
    }

    .single-product-ltn .product-grid {
        gap: 24px;
    }

    /* Galería */
    .single-product-ltn .gallery .main {
        border-radius: var(--ltn-border-radius);
    }

    .single-product-ltn .gallery .thumbs {
        gap: 8px;
    }

    /* Info */
    .single-product-ltn h1.product-name {
        font-size: 26px;
    }

    /* Seller card */
    .single-product-ltn .seller-card {
        padding: 12px 14px;
    }

    /* Precio */
    .single-product-ltn .price-block {
        margin: 4px 0;
    }

    /* Pills */
    .single-product-ltn .product-pills-zone {
        margin-top: 8px;
    }

    /* Compartir */
    .single-product-ltn .share {
        margin-top: 8px;
        flex-wrap: wrap;
        gap: 8px;
    }

    /* Tab panels */
    .single-product-ltn .tab-panel {
        padding: 24px 20px;
    }

    /* Misma colección */
    .single-product-ltn .more-block {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .single-product-ltn .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .single-product-ltn .products-grid {
        grid-template-columns: repeat( 2, 1fr );
        gap: 12px;
    }
}

/* ── Móvil: 480px ── */
@media ( max-width: 480px ) {

    .single-product-ltn .product-top {
        padding: 16px 0 24px;
    }

    /* Galería vertical en móvil pequeño */
    .single-product-ltn .gallery .thumbs {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .single-product-ltn .gallery .thumbs .thumb {
        width: calc( 25% - 5px );
    }

    /* Info */
    .single-product-ltn h1.product-name {
        font-size: 22px;
    }

    .single-product-ltn .seller-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .single-product-ltn .seller-card .avatar {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    /* Acciones WC — botones full width */
    .single-product-ltn .actions .quantity {
        width: 100%;
        justify-content: center;
    }

    .single-product-ltn .actions .single_add_to_cart_button {
        width: 100%;
    }

    /* Pills en móvil */
    .single-product-ltn .product-pills-zone .ltn-pills-wrap {
        flex-direction: column;
    }

    .single-product-ltn .product-pills-zone .ltn-pill {
        width: 100%;
    }

    /* Compartir */
    .single-product-ltn .share span {
        width: 100%;
        margin-bottom: 4px;
    }

    /* Tabs */
    .single-product-ltn .tab-panel {
        padding: 16px 14px;
    }

    /* Misma colección */
    .single-product-ltn .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .single-product-ltn .more-block .section-head h2 {
        font-size: 20px;
    }
}
