/* ==========================================================================
   JLS COMPUTERS — SINGLE PRODUCT PAGE (PDP)
   Faithful build of the Claude Design "JLS Product Page" handoff.
   Everything is scoped under .jls-pdp so it cannot leak into the rest of
   the theme. Tokens mirror the design's :root (which match the JLS brand).
   ========================================================================== */

.jls-pdp {
    --navy:   #2C5697;
    --navy-d: #234779;
    --ink:    #15203a;
    --muted:  #5d6781;
    --line:   #e4e8f0;
    --bg:     #f3f6fb;
    --ok:     #1f9d57;
    --sale-bg: #fde7e2;
    --sale-tx: #c23a1c;

    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--ink);
    font-family: var(--jls-font, 'Inter', sans-serif);
}

/* Neutralise GeneratePress's article chrome on the product page so our own
   cards/sections read cleanly (no double border/padding/background). */
.single-product .inside-article {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}
.single-product .entry-content { margin-top: 0; }
.jls-pdp * { box-sizing: border-box; }
.jls-pdp a { color: inherit; text-decoration: none; }

@keyframes jlsPulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ---------- Breadcrumb ---------- */
.jls-pdp__crumbs {
    font-size: 12.5px; color: var(--muted);
    padding: 18px 0 4px; line-height: 1.5;
}
.jls-pdp__crumbs a:hover { color: var(--navy); }
.jls-pdp__crumbs .sep { opacity: .5; margin: 0 6px; }
.jls-pdp__crumbs .current { color: var(--ink); font-weight: 600; }

/* ---------- Product grid: gallery + buy box ---------- */
.jls-pdp__main {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 440px);
    gap: 48px;
    align-items: start;
    padding: 16px 0 8px;
}

/* ---------- Gallery ---------- */
.jls-pdp__gallery { position: relative; }
.jls-pdp__gallery .woocommerce-product-gallery { margin: 0 !important; width: 100% !important; float: none !important; }

/* Main image */
.jls-pdp .woocommerce-product-gallery__wrapper { margin: 0; }
.jls-pdp .woocommerce-product-gallery__image,
.jls-pdp .woocommerce-product-gallery__image a {
    display: block; margin: 0;
}
.jls-pdp .woocommerce-product-gallery__image:first-child {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 1 / 1;
}
.jls-pdp .woocommerce-product-gallery__image img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 24px;
}
/* The flexslider clone slides sit inside __wrapper; constrain the visible one */
.jls-pdp .flex-viewport { border-radius: 14px; }

/* Thumbnails — 5-up grid */
.jls-pdp .flex-control-thumbs {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}
.jls-pdp .flex-control-thumbs li { margin: 0; width: 100%; display: block; }
.jls-pdp .flex-control-thumbs li img {
    width: 100%; height: 68px;
    object-fit: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 6px;
    background: #fff;
    cursor: pointer;
    opacity: 1;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.jls-pdp .flex-control-thumbs li img:hover { border-color: #c7d3e8; }
.jls-pdp .flex-control-thumbs li img.flex-active {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(44,86,151,.12);
}

/* Gallery overlays */
.jls-pdp__chip {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    background: #fff; border: 1px solid var(--line); border-radius: 6px;
    padding: 6px 11px; font-size: 11px; font-weight: 700;
    color: var(--navy); letter-spacing: .03em;
}
.jls-pdp__chip em { color: var(--ok); font-style: normal; }
.jls-pdp__wish {
    position: absolute; top: 14px; right: 14px; z-index: 3;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid var(--line); background: #fff;
    color: #c0c7d4; font-size: 18px; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .15s ease;
}
.jls-pdp__wish:hover { color: #9aa3b5; }
.jls-pdp__wish.is-active { color: var(--navy); border-color: var(--navy); background: #eef3fb; }

/* Move WooCommerce's zoom-trigger icon clear of the wishlist heart */
.jls-pdp .woocommerce-product-gallery__trigger { top: 16px !important; right: 62px !important; z-index: 4; }

/* ---------- Buy box ---------- */
.jls-pdp__buybox { position: sticky; top: 18px; }
.jls-pdp__brandline {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .02em;
}
.jls-pdp__brandline .dot { color: #c3cad8; }
.jls-pdp__title {
    font-family: var(--jls-font-heading, 'Poppins', sans-serif);
    font-size: 24px; line-height: 1.25; font-weight: 800;
    color: var(--ink); margin: 7px 0 10px; text-transform: none;
}
.jls-pdp__sku { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.jls-pdp__sku b { color: var(--navy); font-weight: 600; letter-spacing: .02em; }

.jls-pdp__stock {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; margin-bottom: 16px;
}
.jls-pdp__stock .stock-dot {
    width: 9px; height: 9px; border-radius: 50%;
}
.jls-pdp__stock.in .stock-dot { background: var(--ok); animation: jlsPulse 2s ease-in-out infinite; }
.jls-pdp__stock.in .stock-label { font-weight: 700; color: var(--ok); }
.jls-pdp__stock.out .stock-dot { background: #c0c7d4; }
.jls-pdp__stock.out .stock-label { font-weight: 700; color: var(--muted); }
.jls-pdp__stock .stock-sub { color: var(--muted); }

/* Price card */
.jls-pdp__price-card {
    background: var(--bg); border: 1px solid var(--line);
    border-radius: 12px; padding: 16px 18px;
}
.jls-pdp__price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.jls-pdp__price {
    font-family: var(--jls-font-heading, 'Poppins', sans-serif);
    font-size: 34px; font-weight: 700; color: var(--navy); letter-spacing: -.01em;
    line-height: 1.05;
}
.jls-pdp__price-incl { font-size: 13px; color: var(--muted); font-weight: 600; }
.jls-pdp__price-compare { font-size: 16px; color: #9aa3b5; text-decoration: line-through; }
.jls-pdp__save-badge {
    background: var(--sale-bg); color: var(--sale-tx);
    font-size: 12px; font-weight: 800; padding: 4px 9px; border-radius: 5px; letter-spacing: .02em;
}

/* Qty + CTAs */
.jls-pdp__buy-actions { margin-top: 18px; display: flex; align-items: stretch; gap: 12px; }
.jls-pdp__qty {
    display: flex; align-items: center;
    border: 1px solid var(--line); border-radius: 9px; overflow: hidden;
}
.jls-pdp__qty button {
    width: 42px; height: 50px; border: none; background: #fff;
    color: var(--navy); cursor: pointer; line-height: 1;
}
.jls-pdp__qty button.minus { font-size: 20px; }
.jls-pdp__qty button.plus  { font-size: 18px; }
.jls-pdp__qty input {
    width: 46px; height: 50px; text-align: center;
    font-weight: 700; font-size: 16px; border: none; outline: none;
    -moz-appearance: textfield; color: var(--ink); background: #fff;
}
.jls-pdp__qty input::-webkit-outer-spin-button,
.jls-pdp__qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.jls-pdp__add, .jls-pdp__quote-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    border-radius: 9px; font-size: 14.5px; font-weight: 800; letter-spacing: .02em;
    cursor: pointer; text-transform: uppercase; transition: all .18s ease;
}
.jls-pdp__add {
    flex: 1; background: var(--navy); color: #fff; border: none; min-height: 50px;
}
.jls-pdp__add:hover { background: var(--navy-d); }
.jls-pdp__quote-btn {
    width: 100%; margin-top: 12px; height: 50px;
    background: #fff; color: var(--navy); border: 2px solid var(--navy);
}
.jls-pdp__quote-btn:hover { background: rgba(44,86,151,.05); }
.jls-pdp__quote-hint { text-align: center; margin-top: 9px; font-size: 12px; color: var(--muted); }

/* Variable-product fallback (native variation form, lightly styled) */
.jls-pdp__buybox form.variations_form .single_add_to_cart_button {
    background: var(--navy) !important; color: #fff !important;
    border: none !important; border-radius: 9px !important;
    text-transform: uppercase; font-weight: 800;
}

/* Delivery card */
.jls-pdp__delivery {
    margin-top: 18px; border: 1px solid var(--line);
    border-radius: 12px; overflow: hidden;
}
.jls-pdp__delivery-head {
    padding: 11px 15px; display: flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 700;
}
.jls-pdp__delivery-head.free { background: #eaf6ef; border-bottom: 1px solid #d3ebdc; color: #137a41; }
.jls-pdp__delivery-head.free .tick { color: var(--ok); font-weight: 800; }
.jls-pdp__delivery-head.flat { background: var(--bg); border-bottom: 1px solid var(--line); color: var(--navy); }
.jls-pdp__delivery-body {
    padding: 13px 15px; display: flex; flex-direction: column; gap: 9px;
    font-size: 12.5px; color: var(--muted); line-height: 1.4;
}
.jls-pdp__delivery-body b { color: var(--navy); font-weight: 700; }

/* Trust grid */
.jls-pdp__trust {
    margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px;
}
.jls-pdp__trust div { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink); }
.jls-pdp__trust .tick { color: var(--ok); font-weight: 800; }

/* Payment row */
.jls-pdp__payments {
    margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
    display: flex; align-items: center; gap: 7px; flex-wrap: wrap;
}
.jls-pdp__payments .label { font-size: 11px; color: var(--muted); margin-right: 4px; }
.jls-pay-chip { position: relative; display: inline-flex; }
.jls-pay-chip .chip {
    font-size: 11px; font-weight: 700; padding: 6px 10px; border-radius: 6px;
    border: 1px solid var(--line); letter-spacing: .02em;
}
.jls-pay-chip.active .chip { color: var(--navy); background: #eef3fb; border-color: #cdddf3; }
.jls-pay-chip.soon .chip { color: #c0c7d4; background: #f6f8fb; border-color: #edf0f5; cursor: default; }
.jls-pay-chip .tip {
    position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(0);
    background: var(--ink); color: #fff; font-size: 10.5px; font-weight: 600;
    padding: 4px 8px; border-radius: 5px; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease;
}
.jls-pay-chip.soon:hover .tip { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* ---------- Tabs ---------- */
.jls-pdp__tabs { margin-top: 40px; }
.jls-pdp__tabbar {
    display: flex; gap: 30px; border-bottom: 1px solid var(--line); overflow-x: auto;
}
.jls-pdp__tab {
    appearance: none; background: none; border: none; cursor: pointer;
    padding: 0 0 14px; font-family: var(--jls-font, 'Inter', sans-serif);
    font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em;
    color: var(--muted); white-space: nowrap; border-bottom: 3px solid transparent;
    margin-bottom: -1px; transition: color .15s ease;
}
.jls-pdp__tab:hover { color: var(--ink); }
.jls-pdp__tab.is-active { color: var(--navy); border-bottom-color: var(--navy); }
/* The theme styles bare <button> elements with a grey background that shows on
   hover/active/focus — force the tabs transparent in every state. */
.jls-pdp__tab,
.jls-pdp__tab:hover,
.jls-pdp__tab:focus,
.jls-pdp__tab:active,
.jls-pdp__tab:focus-visible {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
.jls-pdp__panel { display: none; padding: 30px 0 8px; }
.jls-pdp__panel.is-active { display: block; }

/* Overview */
.jls-pdp__overview { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.jls-pdp__overview-copy { font-size: 14.5px; line-height: 1.7; color: #3c465c; }
.jls-pdp__overview-copy p { margin: 0 0 14px; }
.jls-pdp__eyebrow {
    font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    color: var(--ink); margin: 8px 0 12px;
}
.jls-pdp__highlights { display: flex; flex-direction: column; gap: 10px; }
.jls-pdp__highlights div { display: flex; gap: 10px; font-size: 13.5px; color: #3c465c; }
.jls-pdp__highlights .tick { color: var(--ok); font-weight: 800; }
.jls-pdp__feature-cards { display: flex; flex-direction: column; gap: 12px; }
.jls-pdp__feature-card { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--bg); }
.jls-pdp__feature-card .t { font-size: 13px; font-weight: 800; color: var(--navy); margin-bottom: 5px; }
.jls-pdp__feature-card .d { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* Specs */
.jls-pdp__specs { max-width: 880px; display: flex; flex-direction: column; gap: 26px; }
.jls-pdp__spec-group .eyebrow {
    font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 8px;
}
.jls-pdp__spec-table { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.jls-pdp__spec-row {
    display: grid; grid-template-columns: 240px 1fr; font-size: 13.5px;
    border-bottom: 1px solid var(--line);
}
.jls-pdp__spec-row:last-child { border-bottom: none; }
.jls-pdp__spec-row .k { padding: 11px 16px; background: var(--bg); color: var(--muted); }
.jls-pdp__spec-row .v { padding: 11px 16px; color: var(--ink); }

/* Box */
.jls-pdp__box { max-width: 620px; display: flex; flex-direction: column; gap: 12px; }
.jls-pdp__box-item {
    display: flex; gap: 12px; align-items: center;
    border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px;
    font-size: 14px; color: var(--ink);
}
.jls-pdp__box-item .q { color: var(--navy); font-weight: 800; }

/* Warranty & Delivery */
.jls-pdp__warranty { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 960px;
    font-size: 13.5px; line-height: 1.65; color: #3c465c; }
.jls-pdp__warranty p { margin: 0 0 10px; }
.jls-pdp__warranty .eyebrow {
    font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    color: var(--navy); margin-bottom: 10px;
}
.jls-pdp__warranty-deliv { display: flex; flex-direction: column; gap: 9px; }
.jls-pdp__warranty-deliv > div { display: flex; gap: 9px; }
.jls-pdp__warranty-deliv .tick { color: var(--ok); font-weight: 800; }

/* ---------- Related ---------- */
.jls-pdp__related { margin-top: 8px; padding: 36px 0 8px; }
.jls-pdp__related-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.jls-pdp__related-head h2 {
    font-family: var(--jls-font-heading, 'Poppins', sans-serif);
    font-size: 20px; font-weight: 800; color: var(--ink); text-transform: uppercase; letter-spacing: .01em; margin: 0;
}
.jls-pdp__related-head a { font-size: 13px; font-weight: 700; color: var(--navy); }
.jls-pdp__related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.jls-pdp__rel-card {
    border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff;
    transition: box-shadow .2s ease, transform .2s ease; display: block;
}
.jls-pdp__rel-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,.08); transform: translateY(-2px); }
.jls-pdp__rel-img { aspect-ratio: 4 / 3; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.jls-pdp__rel-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.jls-pdp__rel-body { padding: 13px 14px; }
.jls-pdp__rel-brand { font-size: 11px; font-weight: 700; color: var(--navy); }
.jls-pdp__rel-title { font-size: 13px; color: var(--ink); font-weight: 600; line-height: 1.35; margin: 3px 0 8px; min-height: 36px; }
.jls-pdp__rel-price { font-size: 16px; font-weight: 800; color: var(--navy); }
.jls-pdp__rel-price .incl { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ---------- Partner strip ---------- */
/* The partner strip now reuses the homepage [jls_brand_logos] component
   (.jls-home-brands / .jls-brand-logos-*) from the main theme stylesheet,
   so no PDP-specific styles are needed here. */

/* ---------- Sticky buy bar ---------- */
.jls-pdp-sticky {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: #fff; border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(15,23,42,.10);
    transform: translateY(110%); transition: transform .3s ease;
    padding: 12px 0;
}
.jls-pdp-sticky.is-visible { transform: translateY(0); }
.jls-pdp-sticky__inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 18px; }
.jls-pdp-sticky__thumb { width: 48px; height: 48px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg); flex: 0 0 auto; object-fit: contain; }
.jls-pdp-sticky__info { flex: 1; min-width: 0; }
.jls-pdp-sticky__title { font-size: 13.5px; font-weight: 700; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jls-pdp-sticky__sub { font-size: 12px; color: var(--ok); font-weight: 700; }
.jls-pdp-sticky__sub.out { color: var(--muted); }
.jls-pdp-sticky__price { font-size: 22px; font-weight: 800; color: var(--navy); white-space: nowrap; font-family: var(--jls-font-heading, 'Poppins', sans-serif); }
.jls-pdp-sticky__btn {
    height: 44px; padding: 0 20px; border-radius: 8px; font-size: 13px; font-weight: 800;
    text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: all .15s ease;
}
.jls-pdp-sticky__btn.quote { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.jls-pdp-sticky__btn.quote:hover { background: rgba(44,86,151,.05); }
.jls-pdp-sticky__btn.add { background: var(--navy); color: #fff; border: none; }
.jls-pdp-sticky__btn.add:hover { background: var(--navy-d); }

/* ---------- Quote modal ---------- */
.jls-pdp-modal {
    position: fixed; inset: 0; z-index: 300; display: none;
    align-items: center; justify-content: center; padding: 24px;
    background: rgba(11,17,36,.55);
}
.jls-pdp-modal.is-open { display: flex; }
.jls-pdp-modal__card {
    background: #fff; border-radius: 16px; width: 100%; max-width: 480px;
    overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); max-height: 92vh; overflow-y: auto;
}
.jls-pdp-modal__head {
    background: var(--navy); color: #fff; padding: 20px 24px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.jls-pdp-modal__head h3 { font-family: var(--jls-font-heading, 'Poppins', sans-serif); font-size: 17px; font-weight: 800; margin: 0; color: #fff; text-transform: none; }
.jls-pdp-modal__head p { font-size: 12.5px; opacity: .85; margin: 2px 0 0; }
.jls-pdp-modal__close { cursor: pointer; font-size: 22px; line-height: 1; opacity: .85; background: none; border: none; color: #fff; }
.jls-pdp-modal__body { padding: 22px 24px; }
.jls-pdp-modal__product {
    background: var(--bg); border: 1px solid var(--line); border-radius: 9px; padding: 11px 14px;
    margin-bottom: 16px; display: flex; align-items: center; gap: 11px;
}
.jls-pdp-modal__product img { width: 38px; height: 38px; border-radius: 7px; border: 1px solid var(--line); object-fit: contain; background: #fff; }
.jls-pdp-modal__product .t { flex: 1; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.jls-pdp-modal__product .p { font-size: 13px; font-weight: 800; color: var(--navy); }
.jls-pdp-modal__foot { text-align: center; margin-top: 11px; font-size: 11.5px; color: var(--muted); }

/* ---------- Toast ---------- */
.jls-pdp-toast {
    position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
    background: var(--ink); color: #fff; font-size: 13.5px; font-weight: 600;
    padding: 12px 20px; border-radius: 10px; box-shadow: 0 12px 40px rgba(0,0,0,.3);
    display: flex; align-items: center; gap: 8px; z-index: 400;
    opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease;
}
.jls-pdp-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.jls-pdp-toast .tick { color: #5fe39a; font-weight: 800; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .jls-pdp__main { grid-template-columns: 1fr; gap: 28px; }
    .jls-pdp__buybox { position: static; }
    .jls-pdp__overview { grid-template-columns: 1fr; gap: 28px; }
    .jls-pdp__warranty { grid-template-columns: 1fr; gap: 28px; }
    .jls-pdp__related-grid { grid-template-columns: repeat(2, 1fr); }
    .jls-pdp__partners-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
    .jls-pdp { padding: 0 16px; }
    .jls-pdp__spec-row { grid-template-columns: 140px 1fr; }
    .jls-pdp__related-grid { grid-template-columns: 1fr 1fr; }
    .jls-pdp__partners-grid { grid-template-columns: repeat(2, 1fr); }
    .jls-pdp-sticky__info { display: none; }   /* keep the bar usable on small screens */
}

/* ==========================================================================
   OVERRIDES — neutralise the theme's generic single-product rules inside the
   PDP. style.css ships high-specificity rules (e.g.
   `.woocommerce div.product div.images …`) that otherwise fight this template.
   These !important declarations are intentional and scoped to .jls-pdp only.
   ========================================================================== */

/* Kill the old padded/bordered gallery box — we border each image instead. */
.jls-pdp div.images {
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}
/* Thumbnails: 1px frame, 6px pad, fixed height (overrides the 2px/8px theme rule). */
.jls-pdp div.images .flex-control-thumbs li img {
    border: 1px solid var(--line) !important;
    border-radius: 8px !important;
    padding: 6px !important;
    height: 68px !important;
}
.jls-pdp div.images .flex-control-thumbs li img.flex-active {
    border-color: var(--navy) !important;
}
/* Add-to-Cart button geometry (theme sets 6px radius / 14px·30px padding). */
.jls-pdp .single_add_to_cart_button.jls-pdp__add {
    border-radius: 9px !important;
    padding: 0 18px !important;
}
