@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.7);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pdp-bc {
    max-width: 1300px;
    margin: 0 auto;
    padding: 18px 40px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: fadeUp 0.4s ease both;
}

.pdp-bc a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.18s;
}

.pdp-bc a:hover {
    color: var(--text-dark);
}

.pdp-bc .cur {
    color: var(--text-dark);
    font-weight: 600;
}

.pdp-bc .sep {
    opacity: 0.35;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 80px 1fr 440px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 40px 80px;
    align-items: start;
    gap: 0;
}

.thumb-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-right: 12px;
    position: sticky;
    top: 72px;
}

.thumb {
    height: 82px;
    border: 2px solid transparent;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    background: #edeae3;
    transition:
        border-color 0.22s,
        opacity 0.22s,
        box-shadow 0.22s;
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.38s;
}

.thumb:hover img {
    transform: scale(1.08);
}

.thumb.active {
    border-color: var(--text-dark);
    box-shadow: 0 0 0 1px var(--text-dark);
}

.thumb:not(.active) {
    opacity: 0.5;
}

.thumb:not(.active):hover {
    opacity: 0.82;
}

.thumb-video-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.thumb-video-icon svg {
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
}

.thumb-video img {
    filter: brightness(0.55);
}

.thumb-video.active img {
    filter: brightness(0.7);
}

.main-img-col {
    position: sticky;
    top: 72px;
    padding-right: 40px;
    animation: fadeUp 0.5s 0.04s ease both;
}

.img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #edeae3;
    cursor: zoom-in;
    aspect-ratio: 3/4;
}

.img-wrap.zoomed {
    cursor: zoom-out;
}

.img-wrap img#mainImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.14s;
    transform-origin: center center;
    will-change: transform;
}

.img-wrap.zoomed img#mainImg {
    transform: scale(1.65);
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    position: relative;
    inset: 0;
    z-index: 3;
    background: #000;
}

.zoom-cue {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(43, 43, 43, 0.72);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.59rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 2px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px);
    transition:
        opacity 0.22s,
        transform 0.22s;
    font-family: var(--font-body);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.img-wrap:hover .zoom-cue {
    opacity: 1;
    transform: translateY(0);
}

.img-wrap.zoomed .zoom-cue {
    opacity: 0;
}

.img-wrap.video-active .zoom-cue {
    display: none;
}

.img-wrap.video-active {
    cursor: default;
}

.badge-row {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    font-family: var(--font-body);
}

.badge-new {
    background: var(--text-dark);
    color: #fff;
}

.badge-seller {
    background: var(--btn-primary-bg);
    color: #fff;
}

.img-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.img-dot {
    height: 5px;
    width: 5px;
    border-radius: 3px;
    background: var(--border-dark);
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.img-dot.active {
    background: var(--text-dark);
    width: 22px;
}

.img-dot-video {
    height: 5px;
    width: 5px;
    border-radius: 3px;
    background: var(--border-dark);
    cursor: pointer;
    transition:
        background 0.2s,
        width 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
}

.img-dot-video.active {
    background: var(--primary-maroon);
    width: 22px;
}

.img-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 0 2px;
}

.img-act-btn {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.18s;
}

.img-act-btn:hover {
    color: var(--text-dark);
}

.img-act-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
}

.info-col {
    padding-left: 6px;
    animation: fadeUp 0.55s 0.1s ease both;
}

.brand-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-maroon);
    font-weight: 700;
    margin-bottom: 10px;
}

.brand-tag::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.product-name {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    font-weight: 200;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.08;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-name em {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 400;
    font-size: 0.87em;
    letter-spacing: 0.04em;
}

.product-tagline {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 20px;
    line-height: 1.55;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.price-now {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}

.price-was {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-save {
    font-size: 0.69rem;
    font-weight: 700;
    color: var(--sale-red);
    background: #fdf0f0;
    padding: 3px 10px;
    border-radius: 30px;
    letter-spacing: 0.04em;
}

.tax-note {
    font-size: 0.69rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.sec-lbl {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 11px;
}

.sec-lbl .val {
    font-weight: 400;
    color: var(--text-muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.8rem;
}

.swatch-row {
    display: flex;
    gap: 11px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    position: relative;
    transition:
        transform 0.18s,
        border-color 0.18s;
}

.swatch::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.swatch:hover {
    transform: scale(1.14);
}

.swatch.active {
    border-color: var(--text-dark);
}

.sw-midnight {
    background: #2c3e6b;
}

.sw-rust {
    background: #b5511a;
}

.sw-sage {
    background: #7a8f6a;
}

.sw-blush {
    background: #d4937a;
}

.sw-ivory {
    background: #f0ebe0;
    border: 1.5px solid var(--border-dark);
}

.sz-hdr {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 11px;
}

.sz-guide {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: var(--primary-maroon);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: opacity 0.15s;
}

.sz-guide:hover {
    opacity: 0.65;
}

.sz-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.sz-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 10px;
    border: 1.5px solid var(--border-dark);
    background: transparent;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: all 0.18s;
    position: relative;
}

.sz-btn:hover {
    border-color: var(--text-dark);
    background: var(--bg-light);
}

.sz-btn.active {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.sz-btn.oos {
    color: var(--border-dark);
    cursor: not-allowed;
    pointer-events: none;
    overflow: hidden;
}

.sz-btn.oos::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-dark);
    transform: rotate(-20deg);
}

.stock-note {
    font-size: 0.71rem;
    color: var(--primary-maroon);
    font-weight: 500;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-maroon);
    animation: pulseDot 2.2s infinite;
    flex-shrink: 0;
}

.atc-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.atc-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-dark);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.qty-btn {
    width: 42px;
    height: 56px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.15s;
    font-family: var(--font-body);
}

.qty-btn:hover {
    background: var(--bg-light);
}

.qty-val {
    width: 40px;
    text-align: center;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--text-dark);
    border: none;
    background: none;
    font-family: var(--font-body);
    pointer-events: none;
}

.btn-atc {
    flex: 1;
    height: 56px;
    background: var(--btn-primary-bg);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition:
        background 0.22s,
        box-shadow 0.22s,
        transform 0.1s;
    box-shadow: 0 5px 20px rgba(140, 29, 24, 0.32);
}

.btn-atc::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);
    transition: left 0.52s ease;
}

.btn-atc:hover::before {
    left: 160%;
}

.btn-atc:hover {
    background: #6e150f;
    box-shadow: 0 8px 28px rgba(140, 29, 24, 0.42);
}

.btn-atc:active {
    transform: scale(0.982);
}

.btn-atc.ok {
    background: var(--text-dark);
    box-shadow: 0 5px 18px rgba(107, 124, 62, 0.3);
}

.btn-atc.ok::before {
    display: none;
}

.btn-wish {
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--border-dark);
    background: none;
    border-radius: 3px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        border-color 0.2s,
        background 0.2s,
        transform 0.12s;
}

.btn-wish:hover {
    border-color: var(--primary-maroon);
    background: #fdf5f5;
}

.btn-wish:active {
    transform: scale(0.88);
}

.wish-svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.6;
    transition:
        stroke 0.2s,
        fill 0.2s,
        transform 0.22s;
}

.btn-wish.on .wish-svg {
    stroke: var(--primary-maroon);
    fill: var(--primary-maroon);
    transform: scale(1.16);
}

.btn-returns {
    width: 100%;
    height: 50px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-dark);
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-returns:hover {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.btn-returns svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 26px;
}

.trust-item {
    text-align: center;
    padding: 13px 8px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    background: var(--bg-white);
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
}

.trust-item:hover {
    border-color: var(--border-dark);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.trust-ico {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.trust-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    line-height: 1.4;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin-bottom: 20px;
}

.d-key {
    font-size: 0.63rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.d-val {
    font-size: 0.86rem;
    color: var(--text-dark);
    font-weight: 500;
}

.model-note {
    font-size: 0.73rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 11px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 22px;
}

.accordion {
    margin-bottom: 0;
}

.acc-item {
    border-bottom: 1px solid var(--border-light);
}

.acc-hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    user-select: none;
}

.acc-hdr:hover .acc-hdr-txt {
    color: var(--primary-maroon);
}

.acc-hdr-txt {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.15s;
}

.acc-ico {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: transform 0.28s;
    line-height: 1;
    font-weight: 300;
}

.acc-item.open .acc-ico {
    transform: rotate(45deg);
    color: var(--primary-maroon);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.acc-item.open .acc-body {
    max-height: 600px;
}

.acc-inner {
    padding-bottom: 18px;
}

.acc-inner p,
.acc-inner li {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.82;
}

.acc-inner ul {
    padding-left: 18px;
}

.acc-inner li {
    margin-bottom: 2px;
}

.ctl-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 56px 40px;
}

.sec-head {
    text-align: center;
    margin-bottom: 38px;
}

.sec-eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--primary-maroon);
    font-weight: 700;
    margin-bottom: 7px;
}

.sec-title {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    font-weight: 200;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.sec-sub {
    font-family: var(--font-editorial);
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    max-width: 1300px;
    margin: 0 auto;
}

.prod-card {
    cursor: pointer;
}

.prod-card-img {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 12px;
    background: #edeae4;
}

.prod-card-img img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: transform 0.48s ease;
}

.prod-card:hover .prod-card-img img {
    transform: scale(1.06);
}

.prod-quick {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(43, 43, 43, 0.9);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(100%);
    transition:
        opacity 0.28s,
        transform 0.28s;
    font-family: var(--font-body);
}

.prod-card:hover .prod-quick {
    opacity: 1;
    transform: translateY(0);
}

.prod-badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--btn-primary-bg);
    color: #fff;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
}

.prod-name {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.prod-price {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.prod-price s {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-left: 5px;
}

.popup-ov {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s;
}

.popup-ov.open {
    opacity: 1;
    pointer-events: all;
}

.popup-box {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    width: 560px;
    max-width: 95vw;
    position: relative;
    transform: scale(0.93) translateY(22px);
    transition: transform 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.popup-ov.open .popup-box {
    transform: scale(1) translateY(0);
}

.popup-img {
    width: 210px;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.popup-body {
    padding: 36px 30px;
    flex: 1;
}

.popup-x {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.popup-x:hover {
    background: rgba(0, 0, 0, 0.18);
}

.popup-eye {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-maroon);
    font-weight: 700;
    margin-bottom: 9px;
}

.popup-hl {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.22;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.popup-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.68;
    margin-bottom: 20px;
}

.popup-email {
    width: 100%;
    height: 44px;
    padding: 0 13px;
    border: 1.5px solid var(--border-dark);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    margin-bottom: 10px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.popup-email:focus {
    border-color: var(--primary-brown);
}

.popup-cta {
    width: 100%;
    height: 46px;
    background: var(--btn-primary-bg);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.popup-cta:hover {
    background: #6e150f;
}

.popup-skip {
    text-align: center;
    margin-top: 12px;
    font-size: 0.69rem;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.popup-skip:hover {
    color: var(--text-dark);
}

.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease both;
}

.mob-bar-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mob-price-blk {
    flex: 0 0 auto;
}

.mob-price-now {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.mob-price-was {
    font-size: 0.78rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.mob-btn-atc {
    flex: 1;
    height: 50px;
    background: var(--btn-primary-bg);
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: background 0.2s;
    box-shadow: 0 4px 14px rgba(140, 29, 24, 0.28);
}

.mob-btn-atc:hover {
    background: #6e150f;
}

.mob-btn-wish {
    width: 50px;
    height: 50px;
    border: 1.5px solid var(--border-dark);
    background: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.mob-btn-wish:hover {
    border-color: var(--primary-maroon);
}

.mob-wish-ico {
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    fill: none;
    stroke-width: 1.6;
}

.mob-btn-wish.on .mob-wish-ico {
    stroke: var(--primary-maroon);
    fill: var(--primary-maroon);
}

.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--text-dark);
    color: #fff;
    padding: 11px 22px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.28s,
        transform 0.28s;
    z-index: 1100;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    white-space: normal;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sg-ov {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.sg-ov.open {
    opacity: 1;
    pointer-events: all;
}

.sg-box {
    background: var(--bg-white);
    border-radius: 6px;
    width: 100%;
    max-width: 680px;
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.3s ease;
    font-family: var(--font-body);
}

.sg-ov.open .sg-box {
    transform: translateY(0) scale(1);
}

.sg-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.sg-close:hover {
    background: var(--border-light);
    color: var(--text-dark);
}

.sg-layout {
    display: flex;
    min-height: 440px;
}

.sg-tabs {
    display: flex;
    flex-direction: column;
    width: 130px;
    flex-shrink: 0;
    background: var(--bg-light);
    border-right: 1px solid var(--border-light);
    padding-top: 14px;
}

.sg-tab {
    width: 100%;
    padding: 16px 14px;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    line-height: 1.5;
    transition:
        color 0.16s,
        border-color 0.16s,
        background 0.16s;
}

.sg-tab:hover {
    color: var(--text-dark);
    background: var(--border-light);
}

.sg-tab.active {
    color: var(--primary-maroon);
    border-left-color: var(--primary-maroon);
    background: var(--bg-white);
}

.sg-panels {
    flex: 1;
    min-width: 0;
}

.sg-panel {
    display: none;
    padding: 28px 28px 28px 24px;
}

.sg-panel.active {
    display: block;
}

.sg-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-right: 36px;
}

.sg-unit-row {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    margin-bottom: 16px;
}

.sg-unit-btn {
    padding: 5px 16px;
    border: 1px solid var(--border-dark);
    background: var(--bg-white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
}

.sg-unit-btn:first-child {
    border-radius: 3px 0 0 3px;
    border-right: none;
}

.sg-unit-btn:last-child {
    border-radius: 0 3px 3px 0;
}

.sg-unit-btn.active {
    background: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
}

.sg-meas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    margin-bottom: 18px;
}

.sg-meas-table th {
    text-align: left;
    padding: 9px 13px;
    background: var(--bg-light);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.sg-meas-table th.hip-col {
    color: var(--primary-maroon);
}

.sg-meas-table td {
    padding: 9px 13px;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
}

.sg-meas-table tbody tr:hover td {
    background: var(--bg-light);
}

.sg-meas-table tbody tr td:first-child {
    font-weight: 700;
    color: var(--text-dark);
}

.sg-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.sg-guide-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    background: var(--bg-light);
}

.sg-guide-img {
    width: 100%;
    display: block;
    height: 100%;
}

@media (max-width: 1050px) {
    .pdp-grid {
        grid-template-columns: 72px 1fr 380px;
        padding: 20px 28px 80px;
    }
}

@media (max-width: 860px) {
    .pdp-grid {
        grid-template-columns: 68px 1fr;
        padding: 16px 24px 100px;
    }

    .main-img-col {
        grid-column: 2;
        padding-right: 0;
        position: static;
    }

    .thumb-col {
        position: static;
    }

    .info-col {
        grid-column: 1/-1;
        padding-left: 0;
        padding-top: 28px;
    }

    .mob-bar {
        display: block;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .sg-box {
        margin-top: 20px;
    }
}

@media (max-width: 580px) {
    .pdp-grid {
        grid-template-columns: 1fr;
        padding: 12px 16px 100px;
    }

    .pdp-bc {
        padding: 12px 16px 0;
        display: none;
    }

    .thumb-col {
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        gap: 8px;
        padding: 0 0 10px;
        position: static;
    }

    .thumb-col::-webkit-scrollbar {
        display: none;
    }

    .thumb {
        height: 76px;
        flex-shrink: 0;
    }

    .main-img-col {
        grid-column: 1;
        position: static;
    }

    .info-col {
        padding-left: 0;
    }

    .product-name {
        font-size: 1.7rem;
    }

    .trust-row {
        grid-template-columns: 1fr 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
        gap: 10px 0;
    }

    .products-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .popup-img {
        display: none;
    }

    .sg-box {
        padding: 20px 16px 24px;
        margin-top: 10px;
    }

    .sg-tabs {
        width: 100px;
    }

    .sg-tab {
        font-size: 0.58rem;
        padding: 14px 10px;
    }

    .sg-panel {
        padding: 20px 16px;
    }

    .sg-meas-table th,
    .sg-meas-table td {
        padding: 7px 8px;
        font-size: 0.75rem;
    }
}

@media (min-width: 861px) {
    .mob-bar {
        display: none !important;
    }
}

.bag-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: inline-block;
}

@media (max-width: 768px) {
    .thumb {
        min-width: unset !important;
    }
}