/* ======================================================================
   Product (PDP) — Cohort 10 (Kiddies Bazar — warm orange)
   Layout: gallery LEFT (5/12) | info + trust RIGHT (7/12)
   Signature: orange discount badge, 100% Original chip, 3-stacked CTAs,
   orange trust ticks, warm orange-tint section backgrounds.
   ====================================================================== */

.product-10-page { background: var(--bs-body-bg); }

/* ---------- Breadcrumb ---------- */
.product-10-breadcrumb .breadcrumb { font-size: 0.85rem; }
.product-10-breadcrumb .breadcrumb a { color: var(--bs-secondary-color); }
.product-10-breadcrumb .breadcrumb a:hover { color: var(--bs-primary); }
.product-10-breadcrumb .breadcrumb-item.active { color: var(--bs-body-color); font-weight: 600; }

/* ---------- Top section ---------- */
.product-10-top { padding: 1rem 0 1.5rem; }

/* ---------- Gallery (clean, no decorative frame — reference has plain bg) ---------- */
.product-10-gallery {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: visible;
}

/* ---------- Gallery thumbnail position variants (admin setting) ---------- */
/* BOTTOM (default) — lightSlider's default: thumbs render below main image. No CSS needed. */

/* TOP — flip thumbs above main image */
.product-10-gallery-thumb-top .lSSlideOuter {
    display: flex;
    flex-direction: column;
}
.product-10-gallery-thumb-top .lSGallery {
    order: -1;
    margin-top: 0 !important;
    margin-bottom: 10px;
}

/* LEFT — vertical thumbs on left of main image (override lightSlider's absolute positioning) */
.product-10-gallery-thumb-left .lSSlideOuter {
    display: flex !important;
    flex-direction: row-reverse !important;   /* visually thumbs-on-left, main-on-right */
    align-items: flex-start;
    gap: 10px;
    position: relative;
}
.product-10-gallery-thumb-left .lSGallery {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 80px !important;
    flex: 0 0 80px;
    margin: 0 !important;
    transform: none !important;
    height: auto !important;
}
.product-10-gallery-thumb-left .lSGallery li {
    width: 80px !important;
    margin: 0 0 8px 0 !important;
    float: none !important;
}
.product-10-gallery-thumb-left .lSSlideWrapper {
    flex: 1 1 auto;
    min-width: 0;
}

/* RIGHT — vertical thumbs on right of main image */
.product-10-gallery-thumb-right .lSSlideOuter {
    display: flex !important;
    flex-direction: row !important;            /* thumbs-on-right, main-on-left */
    align-items: flex-start;
    gap: 10px;
    position: relative;
}
.product-10-gallery-thumb-right .lSGallery {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 80px !important;
    flex: 0 0 80px;
    margin: 0 !important;
    transform: none !important;
    height: auto !important;
}
.product-10-gallery-thumb-right .lSGallery li {
    width: 80px !important;
    margin: 0 0 8px 0 !important;
    float: none !important;
}
.product-10-gallery-thumb-right .lSSlideWrapper {
    flex: 1 1 auto;
    min-width: 0;
}

/* OFF — hide thumb strip entirely (when admin toggle is disabled) */
.product-10-gallery-thumb-off .lSGallery {
    display: none !important;
}
.product-10-gallery-thumb-off .lSSlideOuter {
    padding: 0 !important;
}

/* Mobile (<768px) — force vertical → bottom regardless of admin setting */
@media (max-width: 767px) {
    .product-10-gallery-thumb-left .lSSlideOuter,
    .product-10-gallery-thumb-right .lSSlideOuter {
        padding-left: 0;
        padding-right: 0;
    }
    .product-10-gallery-thumb-left .lSGallery,
    .product-10-gallery-thumb-right .lSGallery {
        position: static;
        width: auto;
    }
}
.product-10-gallery-badge {
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    z-index: 5;
    line-height: 1.2;
}
.product-10-gallery img { border-radius: 0.25rem; }
.product-10-gallery-fallback img { border-radius: 0.25rem; }

/* ---------- Info column ---------- */
.product-10-info { padding: 0.25rem 0; }

/* Subtle meta strip below title (brand · rating · stock · sku) */
.product-10-meta-line {
    font-size: 0.85rem;
    color: var(--bs-secondary-color);
}
.product-10-meta-sep { opacity: 0.45; }
.product-10-brand-inline { color: var(--bs-primary); font-weight: 600; }
.product-10-brand-inline:hover { color: #D95A1A; }
.product-10-rating-inline .product-10-stars-track { width: 80px; height: 14px; }

/* Quantity stepper hidden in template-10 PDP — qty always = 1 (per user spec).
   The qty stepper still exists in DOM (so JS that reads .quantities still works)
   but is visually hidden. Inline checkout has its own quantity input for customers. */
.product-10-info .product-checkout-10-qty{
    display: none !important;
}

/* Stock urgency — reference-style: text + animated gradient progress bar */
.product-10-stock-urgency {
    margin: 0.25rem 0 0.5rem;
}
.product-10-stock-urgency-text {
    font-size: 0.92rem;
    color: var(--bs-body-color);
    margin-bottom: 0.4rem;
}
.product-10-stock-urgency-text strong {
    font-weight: 700;
    color: var(--bs-danger, #E53935);
}
.product-10-stock-urgency-bar {
    position: relative;
    height: 5px;
    background: rgba(0, 0, 0, 0.0);
    border-radius: 10px;
    overflow: hidden;
}
.product-10-stock-urgency-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 0;
    background: linear-gradient(325deg, #FF3484 0%, #F1E04D 100%);
    border-radius: 10px;
    animation: product-10-stock-fill 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}
@keyframes product-10-stock-fill {
    from { width: 100%; }
    to   { width: var(--progress-bar-width, 30%); }
}

/* Inline description in right column (Product Details section) */
.product-10-description-inline {
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--bs-border-color);
}
.product-10-description-inline .product-10-section-heading {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--bs-body-color);
}
.product-10-description-body {
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--bs-body-color);
}
.product-10-description-body p { margin-bottom: 0.6rem; }
.product-10-description-body ul { padding-left: 1.2rem; margin-bottom: 0.6rem; }

.product-10-original-chip {
    background: rgba(34, 197, 94, 0.10);
    color: var(--bs-success);
    padding: 0.25rem 0.6rem;
    border-radius: 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-10-brand {
    color: var(--bs-body-color);
    font-size: 0.85rem;
}
.product-10-brand-eyebrow {
    color: var(--bs-secondary-color);
    font-weight: 500;
}
.product-10-brand-name {
    color: var(--bs-primary);
    font-weight: 700;
    margin-left: 0.25rem;
}
.product-10-brand:hover .product-10-brand-name { color: var(--bs-primary); opacity: 0.8; }

.product-10-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bs-body-color);
    margin: 0;
}

/* ---------- Meta row ---------- */
.product-10-stars-track {
    width: 80px; height: 12px;
    background: var(--bs-border-color);
    border-radius: 6px;
    overflow: hidden;
}
.product-10-stars-fill {
    height: 100%;
    background: var(--bs-warning, #FFBA00);
}
.product-10-rating-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bs-body-color);
}
.product-10-rating-count {
    font-size: 0.82rem;
    color: var(--bs-secondary-color);
}

.product-10-stock {
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-10-stock-in { background: rgba(22, 163, 74, 0.12); color: var(--bs-success); }
.product-10-stock-pre { background: rgba(0, 132, 255, 0.12); color: var(--bs-info); }
.product-10-stock-coming { background: rgba(245, 158, 11, 0.15); color: var(--bs-warning); }
.product-10-stock-out { background: rgba(107, 114, 128, 0.15); color: var(--bs-secondary-color); }

.product-10-sku {
    font-size: 0.82rem;
    color: var(--bs-secondary-color);
}
.product-10-sku strong { color: var(--bs-body-color); }

.product-10-social-proof {
    font-size: 0.82rem;
    color: var(--bs-secondary-color);
    background: var(--bs-tertiary-bg, rgba(0,0,0,0.04));
    padding: 0.3rem 0.6rem;
    border-radius: 0.25rem;
    align-self: flex-start;
}
.product-10-social-proof strong { color: var(--bs-body-color); }
.product-10-social-proof svg { color: var(--bs-primary); }

/* ---------- Short info ---------- */
.product-10-shortinfo {
    background: var(--bs-tertiary-bg, rgba(0,0,0,0.03));
    border-left: 3px solid var(--bs-primary);
    border-radius: 0.25rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    color: var(--bs-body-color);
}

/* ---------- Price ---------- */
.product-10-price-cover {
    padding: 0.75rem 0;
    border-top: 1px dashed var(--bs-border-color);
    border-bottom: 1px dashed var(--bs-border-color);
}
.product-10-price-old {
    color: var(--bs-danger);
    text-decoration: line-through;
    font-size: 1rem;
    font-weight: 500;
}
.product-10-price-current {
    color: var(--bs-body-color);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
}

/* ---------- Tags ---------- */
.product-10-tags-block { border-top: 1px solid var(--bs-border-color); padding-top: 0.6rem; }
.product-10-tags-label {
    color: var(--bs-secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.product-10-tag {
    background: var(--bs-bg-alt, #FFF3EB);
    color: var(--bs-body-color);
    border: 1px solid var(--bs-border-color);
    padding: 0.25rem 0.55rem;
    border-radius: 0.25rem;
    font-size: 0.78rem;
    font-weight: 500;
    transition: background 0.10s ease, color 0.10s ease;
}
.product-10-tag:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* ---------- Inline trust block (below CTAs) ---------- */
.product-10-trust-inline {
    background: var(--bs-bg-alt, #FFF3EB);
    border: 1px solid var(--bs-border-color);
    border-radius: 0.5rem;
    padding: 0.85rem 1rem;
}
.product-10-trust-row {
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--bs-border-color);
    margin-bottom: 0.75rem;
}
.product-10-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1 1 0;
    min-width: 0;
}
.product-10-trust-icon {
    width: 38px;
    height: 38px;
    background: var(--bs-light-primary, #FFF3EB);
    color: var(--bs-primary);
    border-radius: 50%;
}
.product-10-trust-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bs-body-color);
    text-align: center;
    letter-spacing: 0.02em;
}
.product-10-trust-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem 0.85rem;
}
.product-10-trust-bullets li { font-size: 0.82rem; line-height: 1.35; }
.product-10-trust-tick {
    width: 16px;
    height: 16px;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    margin-top: 2px;
    flex-shrink: 0;
}
.product-10-trust-bullet-text { color: var(--bs-body-color); }

@media (max-width: 575.98px) {
    .product-10-trust-bullets { grid-template-columns: 1fr; }
}

/* ---------- Middle (tabs + sub-sections) ---------- */
.product-10-middle {
    background: var(--bs-bg-alt, #FFF3EB);
    border-top: 1px solid var(--bs-border-color);
}

.product-10-tabs {
    border-bottom: 2px solid var(--bs-primary, #F26522);
    padding-bottom: 0.25rem;
}
.product-10-tab {
    background: transparent;
    color: var(--bs-body-color);
    padding: 0.5rem 0.85rem;
    border-radius: 0.25rem 0.25rem 0 0;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.10s ease, color 0.10s ease;
}
.product-10-tab:hover { background: var(--bs-light-primary, #FFF3EB); color: var(--bs-primary); }
.product-10-tab-count {
    color: var(--bs-secondary-color);
    font-weight: 400;
}

/* ---------- Section headings (inside middle) ---------- */
.product-10-section-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bs-body-color);
    border-bottom: 2px solid var(--bs-primary, #F26522);
    padding-bottom: 0.35rem;
    display: inline-block;
    margin: 1.5rem 0 1rem;
}
.product-10-description {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
.product-10-description-body {
    color: var(--bs-body-color);
    line-height: 1.65;
}
.product-10-latest-price {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 0.25rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
.product-10-latest-price-text { color: var(--bs-body-color); line-height: 1.55; }
.product-10-latest-price-amount { color: var(--bs-primary); }

/* ---------- Related sidebar ---------- */
.product-10-related-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-body-color);
    border-bottom: 2px solid var(--bs-primary, #F26522);
    padding-bottom: 0.35rem;
    display: inline-block;
    margin-bottom: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .product-10-title { font-size: 1.3rem; }
    .product-10-price-current { font-size: 1.5rem; }
    .product-10-trust { margin-top: 1rem; }
}
