/* ═══════════════════════════════════════════════════════════════
   PRACTICAL — Single Product Page Template
═══════════════════════════════════════════════════════════════ */

/* ── Outer wrapper ───────────────────────────────────────────── */
.practical-single-product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px 48px;
    font-family: 'Noah Text', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Main grid ───────────────────────────────────────────────── */
.psp-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

/* ── Gallery ─────────────────────────────────────────────────── */
.psp-gallery {
    display: flex;
    gap: 10px;
    position: sticky;
    top: 80px;
    align-items: flex-start;
    max-height: calc(100vh - 120px);
}

.psp-thumbs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 80px;
    flex-shrink: 0;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: y mandatory;
    padding-bottom: 4px;
}

.psp-thumbs::-webkit-scrollbar {
    display: none;
}

.psp-thumb {
    width: 80px;
    height: 80px;
    border-radius: 7px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
    background: #e8e4dc;
    flex-shrink: 0;
    transition: border-color 0.15s;
    scroll-snap-align: start;
}

.psp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.15s;
}

.psp-thumb.active {
    border-color: #111;
}

.psp-thumb.active img {
    opacity: 1;
}

.psp-thumb:hover img {
    opacity: 0.8;
}

.psp-main-img-wrap {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #F2F3F0;
    aspect-ratio: 3 / 4;
    max-height: calc(100vh - 120px);
}

.psp-main-img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.psp-main-img-wrap:hover .psp-main-img {
    transform: scale(1.03);
}


/* ── Info panel ──────────────────────────────────────────────── */
.psp-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.psp-breadcrumb {
    font-size: 14px;
    color: #b0ada8;
    letter-spacing: 0.03em;
}

.psp-breadcrumb a {
    color: rgb(0,0,0,.7);
    text-decoration: none;
    
}

.psp-breadcrumb a:last-child {
    color: #d35228;
}

.psp-breadcrumb a:hover {
    color: #111;
}

.psp-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Price ───────────────────────────────────────────────────── */
.psp-price-wrap {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.psp-price-wrap .woocommerce-Price-amount {
    font-size: 22px;
    font-weight: 700;
}

/* Bundle price override */
.psp-bundle-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.psp-bundle-price-main {
    font-size: 22px;
    font-weight: 500;
    color: #111;
}

.psp-bundle-price-orig {
    font-size: 14px;
    color: #b0ada8;
    text-decoration: line-through;
}

.psp-bundle-price-save {
    font-size: 12px;
    font-weight: 700;
    color: #d35228;
    background: #fff3ef;
    padding: 3px 9px;
    border-radius: 20px;
}

/* ── Bundle strip ────────────────────────────────────────────── */
.psp-bundle-wrap {
    margin-top: 0;
}

.psp-bundle-label {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #747971;
    margin-bottom: 8px;
}

.psp-bundle-label strong { 
    color: #d35228;
    
}

.psp-packs {
    display: flex;
    gap: 15px;
}

.psp-pk {
    flex: 0.25;
    border: 1.5px solid #e0ddd8;
    border-radius: 9px;
    padding: 15px 10px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s, background 0.15s;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    justify-content: center;
}

.psp-pk:hover {
    border-color: #b0ada8;
}

.psp-pk.active {
    border-color: #d35228;
    background: #fff8f5;
}

.psp-pk.featured {
    border-color: #d35228;
}

.psp-best-badge {
    display: inline-block;
    background: #d35228;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 999px;
    margin-bottom: 4px;
}

.psp-pk-qty {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1;
    display: block;
}

.psp-pk-label {
    font-size: 14px;
    color: #747971;
    display: block;
    margin-top: 2px;
    font-weight: 700;
}

.psp-pk-save {
    font-size: 12px;
    color: #d35228;
    font-weight: 700;
    display: block;
    margin-top: 3px;
    min-height: 13px;
}

.psp-packs .psp-pk:first-child .psp-pk-save {
    display: none;
}

.psp-packs .psp-pk:not(:first-child) .psp-pk-qty {
    display: none;
}

/* ── Attribute groups ────────────────────────────────────────── */
.psp-attr-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.psp-attr-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #747971;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-attr-val {
    display: inline-block;
    background: #d35228;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.5;
}

.psp-attr-val:empty,
.psp-attr-val[data-empty="1"] {
    display: none;
}

/* ── Color swatches ──────────────────────────────────────────── */
.psp-swatches {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.psp-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    display: block;
}

.psp-swatch:hover {
    transform: scale(1.1);
}

.psp-swatch.active {
    box-shadow: 0 0 0 2.5px #111;
    transform: scale(1.15);
}

/* ── Size pills ──────────────────────────────────────────────── */
.psp-sizes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.psp-sz {
    padding: 6px 13px;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.12);
    font-size: 14px;
    font-weight: 600;
    background: #fff !important;
    color: #111 !important;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-sz:hover {
    border-color: #111 !important;
}

.psp-sz.active {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
}

.psp-sz.oos {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
    position: relative;
    overflow: hidden;
}

/* ── Cart buttons ────────────────────────────────────────────── */
.psp-cart-form {
    display: block;
}

.psp-btns {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.psp-qty {
    width: 56px;
    height: 46px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    background: #fff;
    padding: 0;
    flex-shrink: 0;
}

.psp-atc {
    flex: 1;
    height: 46px;
    background: #111 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-atc:hover {
    opacity: 0.85;
}

.psp-buy {
    flex: 1;
    height: 46px;
    background: #d35228 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-buy:hover {
    opacity: 0.88;
}



/* ── Build bundle button ─────────────────────────────────────── */
.psp-build-btn {
    width: 100%;
    height: 46px;
    background: #d35228 !important;
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-build-btn:hover {
    opacity: 0.88;
}

/* ── Cart row / Build btn transition ─────────────────────────── */
#psp-cart-row,
.psp-build-btn {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#psp-cart-row.hiding,
.psp-build-btn.hiding {
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
}

#psp-cart-row.showing,
.psp-build-btn.showing {
    opacity: 1;
    transform: translateY(0);
}


/* ── Explore button ──────────────────────────────────────────── */
.psp-explore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5f2ec !important;
    border-radius: 8px;
    padding: 11px 14px;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.15s, box-shadow 0.15s;
    box-shadow: none;
}

.psp-explore:hover {
    background: #eae6de !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.psp-explore-t {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    display: block;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-explore-s {
    font-size: 12px;
    color: #747971;
    display: block;
    margin-top: 2px;
}

.psp-explore-arrow {
    color: #d35228;
    font-size: 18px;
    flex-shrink: 0;
}

/* ── Tags ────────────────────────────────────────────────────── */
.psp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.psp-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f5f2ec;
    color: #747971;
    text-decoration: none;
    transition: background 0.15s;
}

.psp-tag:hover {
    background: #e8e4dc;
    color: #111;
}

/* ── Tabs ────────────────────────────────────────────────────── */
.psp-tabs-wrap {
    background: #fff;
    border-radius: 10px;
    border: 0.5px solid rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 50px;
}

.psp-tab-nav {
    display: flex;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    overflow-x: auto;
    scrollbar-width: none;
}

.psp-tab-nav::-webkit-scrollbar {
    display: none;
}

.psp-tab-btn {
    flex-shrink: 0;
    padding: 13px 18px;
    border: none;
    background: transparent !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b0ada8 !important;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -0.5px;
    transition: color 0.15s, border-color 0.15s, box-shadow 0.2s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
    white-space: nowrap;
    box-shadow: none;
}

.psp-tab-btn.active {
    color: #000 !important;
    border-bottom-color: #d35228 !important;
    box-shadow: inset 0 -3px 8px rgba(211, 82, 40, 0.08);
}

.psp-tab-btn:hover:not(.active) {
    color: #747971 !important;
}

.psp-tab-panels {
    padding: 20px 22px;
}

.psp-tab-panel {
    display: none;
    font-size: 13px;
    color: #747971 !important;
    line-height: 1.75;
}

.psp-tab-panel.active {
    display: block;
    font-size: 14px;
}

.psp-tab-panel p { margin-bottom: 10px; font-size: 16px;}
.psp-tab-panel ul { padding-left: 18px; margin-bottom: 10px; }
.psp-tab-panel li { margin-bottom: 4px; }
.psp-tab-panel strong { color: #111; font-weight: 700; }

/* ── Cross-sells ─────────────────────────────────────────────── */
.psp-cross-wrap {
    margin-bottom: 24px;
}

.psp-cross-head {
    margin-bottom: 14px;
}

.psp-cross-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 4px;
}

.psp-cross-sub {
    font-size: 16px;
    color: #747971;
}

.psp-cross-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.psp-cross-card {
    background: #fff;
    border-radius: 10px;
    border: 0.5px solid rgba(0,0,0,0.08) !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: border-color 0.15s;
}

.psp-cross-card:hover {
    border-color: rgba(0,0,0,0.2);
}

.psp-cross-img {
    aspect-ratio: 1;
    background: #e8e4dc;
    overflow: hidden;
}

.psp-cross-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.psp-cross-card:hover .psp-cross-img img {
    transform: scale(1.04);
}

.psp-cross-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.psp-cross-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-cross-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.psp-cross-swatches {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.psp-cross-sw {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    display: block;
}

.psp-cross-cta {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #111;
    background: transparent;
    border: 0.5px solid rgba(0,0,0,0.18);
    border-radius: 6px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    margin-top: 4px;
    width: 100%;
    text-align: center;
}

.psp-cross-card:hover .psp-cross-cta {
    background: #d35228;
    color: #fff;
    border-color: #d35228;
}

/* ── Bottom sheet ────────────────────────────────────────────── */
.psp-sheet-ov {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    pointer-events: none;
    transition: background 0.3s;
    z-index: 100000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.psp-sheet-ov.open {
    background: rgba(0,0,0,0.5);
    pointer-events: all;
}

.psp-sheet {
    background: #fff;
    width: 100%;
    max-width: 640px;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.psp-sheet-ov.open .psp-sheet {
    transform: translateY(0);
}

.psp-shandle {
    width: 34px;
    height: 4px;
    background: #e0ddd8;
    border-radius: 2px;
    margin: 10px auto 14px;
    flex-shrink: 0;
}

.psp-shead {
    padding: 0 18px 14px;
    flex-shrink: 0;
    border-bottom: 0.5px solid #f0ede7;
}

.psp-stitle {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-ssub {
    font-size: 11px;
    color: #747971;
    margin-bottom: 10px;
}

.psp-sprog {
    display: flex;
    gap: 5px;
    align-items: center;
}

.psp-pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0ddd8;
    transition: background 0.2s, transform 0.2s;
}

.psp-pdot.act  { background: #d35228; transform: scale(1.2); }
.psp-pdot.done { background: #111; }

.psp-sslots {
    flex: 1;
    overflow-y: auto;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Slot header */
.psp-slot {
    border: 0.5px solid #e0ddd8;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.psp-slot.active-slot {
    border-color: #d35228;
}

.psp-slot.done-slot {
    border-color: #111;
}

.psp-sloth {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    user-select: none;
    background: #fff;
}

.psp-snum {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5f2ec;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #747971;
    transition: background 0.2s, color 0.2s;
}

.psp-slot.done-slot .psp-snum {
    background: #111;
    color: #fff;
}

.psp-stxt { flex: 1; }

.psp-sname {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-sstatus {
    font-size: 12px;
    color: #747971;
    margin-top: 1px;
}

.psp-scheck {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
    color: #111;
}

.psp-slot.done-slot .psp-scheck {
    opacity: 1;
}

/* Slot body — expanded picker */
.psp-slotb {
    display: none;
    padding: 0 16px 14px;
    background: #faf9f7;
    border-top: 0.5px solid #f0ede7;
}

.psp-slot.slot-open .psp-slotb {
    display: block;
}

.psp-slot-row-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    margin-bottom: 8px;
}

.psp-slabel {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #747971;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-copy-btn {
    font-size: 10px;
    color: #d35228;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
}

/* Slot color dots */
.psp-slot-cdots {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.psp-slot-cdot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    display: block;
}

.psp-slot-cdot.on {
    box-shadow: 0 0 0 2.5px #111;
    transform: scale(1.15);
}

/* Slot size buttons */
.psp-slot-szrow {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.psp-slot-szb {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e0ddd8;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: #fff !important;
    color: #111 !important;
    transition: all 0.15s;
    font-family: inherit;
}

.psp-slot-szb:hover { border-color: #111; }
.psp-slot-szb.on    { background: #111 !important; color: #fff !important; border-color: #111 !important; }
.psp-slot-szb.oos   { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Sheet footer */
.psp-sfooter {
    padding: 12px 18px 24px;
    border-top: 0.5px solid #f0ede7;
    background: #fff;
    flex-shrink: 0;
}

.psp-stotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.psp-tlabel  { font-size: 14px; color: #747971; }
.psp-tsave   { font-size: 14px; color: #d35228; font-weight: 600; margin-top: 2px; }
.psp-tprice  { font-size: 20px; font-weight: 700; color: #111; }

.psp-sbtn-row { display: flex; gap: 8px; }

.psp-sbtn {
    flex: 1;
    padding: 13px;
    border: none;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-sbtn:disabled { opacity: 0.35; cursor: not-allowed; }
.psp-sbtn-c { background: #111 !important; color: #fff !important; }
.psp-sbtn-c:not(:disabled):hover { opacity: 0.85; }
.psp-sbtn-n { background: #d35228 !important; color: #fff !important; }
.psp-sbtn-n:not(:disabled):hover { opacity: 0.88; }

/* ── Explore modal ───────────────────────────────────────────── */
.psp-explore-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: background 0.3s;
    padding: 20px;
}

.psp-explore-modal.open {
    background: rgba(0,0,0,0.5);
    pointer-events: all;
}

.psp-explore-modal-inner {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 480px;
    padding: 32px 28px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), opacity 0.28s ease;
}

.psp-explore-modal.open .psp-explore-modal-inner {
    transform: translateY(0);
    opacity: 1;
}

.psp-explore-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: #f5f2ec !important;
    color: #111 !important;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.psp-explore-coming-soon {
    text-align: center;
    padding: 20px 0;
}

.psp-explore-icon {
    font-size: 32px;
    color: #d35228;
    margin-bottom: 16px;
}

.psp-explore-coming-soon h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.psp-explore-coming-soon p {
    font-size: 14px;
    color: #747971;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
}


/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .practical-single-product { padding: 12px 12px 40px; }

    .psp-inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .psp-gallery {
        position: static;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .psp-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .psp-thumbs::-webkit-scrollbar { display: none; }

    .psp-thumb {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
    }

    .psp-main-img-wrap {
        aspect-ratio: 4 / 3;
    }

    .psp-title { font-size: 22px; }

    .psp-cross-grid {
        grid-template-columns: 1fr 1fr;
    }

    .psp-tab-btn {
        font-size: 12px;
        padding: 11px 12px;
    }
}

@media (max-width: 480px) {
    .psp-packs { gap: 5px; }
    .psp-pk-qty { font-size: 14px; }
    .psp-btns { flex-wrap: wrap; }
    .psp-qty { width: 100%; }
    .psp-atc, .psp-buy { flex: 1 1 calc(50% - 4px); }
    .psp-cross-grid { grid-template-columns: 1fr 1fr; }
}


@media (max-width: 480px) {
    .psp-explore-modal { align-items: flex-end; padding: 0; }
    .psp-explore-modal-inner {
        border-radius: 16px 16px 0 0;
        max-width: 100%;
        transform: translateY(100%);
    }
    .psp-explore-modal.open .psp-explore-modal-inner {
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   BUNDLE PRODUCT PAGE Template
═══════════════════════════════════════════════════════════════ */
/* ── Outer wrapper ───────────────────────────────────────────── */
.practical-bundle-product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 20px 48px;
    font-family: 'Noah Text', 'Helvetica Neue', Arial, sans-serif;
}


/* ── Bundle summary pill ─────────────────────────────────────── */
.bp-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f5f2ec;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 14px;
    color: #111;
    
}

.bp-summary-pill strong {
    color: #d35228;
    font-weight: 700;
}

/* ── Progress bar ────────────────────────────────────────────── */
.bp-progress-wrap {
    margin-bottom: 4px;
}

.bp-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #111;
    margin-bottom: 5px;
}

.bp-progress-label span:last-child {
    color: #d35228;
    font-weight: 700;
}

.bp-progress-bar {
    height: 3px;
    background: #f0ede7;
    border-radius: 2px;
    overflow: hidden;
}

.bp-progress-fill {
    height: 100%;
    background: #d35228;
    border-radius: 2px;
    transition: width 0.35s ease;
}

/* ── Copy all button ─────────────────────────────────────────── */
.bp-copy-all {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f5f2ec !important;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #111 !important;
    width: 100%;
    text-align: left;
    transition: background 0.15s;
    margin-bottom: 8px;
    font-family: 'Noah Text', 'Helvetica Neue', Arial, sans-serif;
}

.bp-copy-all:hover {
    background: #ece8e0;
}

.bp-copy-all strong {
    color: #111;
    font-weight: 700;
    display: block;
    font-size: 14px;
    margin-bottom: 1px;
}

/* ── Slot list ───────────────────────────────────────────────── */
.bp-slots {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* ── Individual slot ─────────────────────────────────────────── */
.bp-slot {
    border: 0.5px solid #e0ddd8;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.bp-slot.active-slot {
    border-color: #d35228;
}

.bp-slot.done-slot {
    border-color: #111;
}

/* Slot header */
.bp-sloth {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.bp-snum {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f5f2ec;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #747971;
    transition: background 0.2s, color 0.2s;
}

.bp-slot.done-slot .bp-snum {
    background: #111;
    color: #fff;
}

.bp-stxt {
    flex: 1;
}

.bp-sname {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.bp-sstatus {
    font-size: 12px;
    color: #747971;
    margin-top: 1px;
}

.bp-scheck {
    font-size: 13px;
    opacity: 0;
    color: #111;
    transition: opacity 0.2s;
}

.bp-slot.done-slot .bp-scheck {
    opacity: 1;
}

/* Slot body — expanded */
.bp-slotb {
    display: none;
    padding: 10px 14px 14px;
    background: #faf9f7;
    border-top: 0.5px solid #f0ede7;
}

.bp-slot.slot-open .bp-slotb {
    display: block;
}

.bp-slot-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 7px;
}

.bp-slabel {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #b0ada8;
    font-family: 'Noah Head', 'Helvetica Neue', Arial, sans-serif;
}

.bp-copy-btn {
    font-size: 10px;
    color: #d35228;
    font-weight: 700;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
}

/* Colour dots */
.bp-cdots {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.bp-cdot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    display: block;
    flex-shrink: 0;
}

.bp-cdot:hover {
    transform: scale(1.1);
}

.bp-cdot.on {
    box-shadow: 0 0 0 2.5px #111;
    transform: scale(1.15);
}

/* Size buttons */
.bp-szrow {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.bp-szb {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #e0ddd8;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    background: #fff !important;
    color: #111 !important;
    transition: all 0.15s;
    font-family: inherit;
}

.bp-szb:hover {
    border-color: #111 !important;
}

.bp-szb.on {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
}

.bp-szb.oos {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ── Mobile ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .bp-copy-all { font-size: 10px; }
    .bp-sloth    { padding: 10px 12px; }
    .bp-slotb    { padding: 8px 12px 12px; }
}


/* ═══════════════════════════════════════════════════════════════
   UNIFIED CSS For all Templates
═══════════════════════════════════════════════════════════════ */

/* ── Quantity stepper — unified ──────────────────────────────── */
.psp-qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #fff;
    height: 46px;
}

.psp-qty-btn {
    width: 40px;
    height: 46px;
    border: none;
    background: transparent !important;
    font-size: 20px;
    font-weight: 300;
    color: #111 !important;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.psp-qty-btn:hover {
    background: #f5f2ec !important;
}

.psp-qty-display {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    user-select: none;
    border-left: 0.5px solid rgba(0,0,0,0.08);
    border-right: 0.5px solid rgba(0,0,0,0.08);
}

/* WooCommerce native stepper — bundle product page */
.woocommerce .quantity {
    display: flex !important;
    align-items: center !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #fff !important;
    flex-shrink: 0 !important;
    height: 46px !important;
    gap: 0 !important;
}

.woocommerce .quantity .qty {
    width: 36px !important;
    height: 46px !important;
    border: none !important;
    border-left: 0.5px solid rgba(0,0,0,0.08) !important;
    border-right: 0.5px solid rgba(0,0,0,0.08) !important;
    border-radius: 0 !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111 !important;
    background: #fff !important;
    padding: 0 !important;
    -moz-appearance: textfield !important;
    font-family: 'Noah Text', 'Helvetica Neue', Arial, sans-serif !important;
    box-shadow: none !important;
}

.woocommerce .quantity .qty::-webkit-outer-spin-button,
.woocommerce .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.woocommerce .quantity .minus,
.woocommerce .quantity .plus {
    width: 40px !important;
    height: 46px !important;
    border: none !important;
    background: transparent !important;
    font-size: 22px !important;
    font-weight: 300 !important;
    color: #111 !important;
    cursor: pointer !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.15s !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.woocommerce .quantity .minus:hover,
.woocommerce .quantity .plus:hover {
    background: #f5f2ec !important;
    color: #111 !important;
}