/* ══════════════════════════════════
   PRODUCT PAGE STYLES
══════════════════════════════════ */

/* BREADCRUMB */
.breadcrumb-sec {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
}

.breadcrumb-trail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--mid-grey);
    letter-spacing: 0.06em;
    flex-wrap: wrap;
}

.breadcrumb-trail a {
    transition: color var(--ease);
}

.breadcrumb-trail a:hover {
    color: var(--gold);
}

.breadcrumb-trail i {
    font-size: 9px;
    color: var(--light-grey);
}

.breadcrumb-trail span {
    color: var(--charcoal);
    font-weight: 500;
}

/* PRODUCT LAYOUT */
.product-sec {
    padding: 40px 0 72px;
    background: var(--white);
}

/* Ensure global right slide panels are truly full-width on mobile for product pages */
@media (max-width: 991px) {
    .r-panel {
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
}

/* LEFT: Gallery */
.gallery-col {
    position: sticky;
    top: calc(var(--sticky-d) + 20px);
}

@media (max-width: 991px) {
    .gallery-col {
        position: static;
    }
}

.gallery-main {
    position: relative;
    overflow: hidden;
    background: var(--white);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.gallery-img-fit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.gallery-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 38%, rgba(201, 168, 76, 0.25) 0%, transparent 58%);
}

.gallery-deco-bottle {
    position: absolute;
    right: -4%;
    bottom: -2%;
    width: 54%;
    opacity: 0.09;
    pointer-events: none;
}

.gallery-emoji {
    font-size: clamp(96px, 20vw, 160px);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.3));
    transition: transform .6s cubic-bezier(0.34, 1.2, 0.64, 1);
    user-select: none;
}

.gallery-main:hover .gallery-emoji {
    transform: scale(1.06) translateY(-4px);
}

/* Badges overlay */
.gallery-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3;
}

.g-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 10px;
}

.g-badge.new {
    background: var(--charcoal);
    color: #fff;
}

.g-badge.sold {
    background: var(--error);
    color: #fff;
}

.g-badge.limited {
    background: var(--gold);
    color: #fff;
}

.g-badge.award {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

/* Zoom icon */
.gallery-zoom {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 3;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    cursor: zoom-in;
    transition: all var(--ease);
}

.gallery-zoom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Wishlist overlay */
.gallery-wl {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    cursor: pointer;
    transition: all var(--ease);
}

.gallery-wl:hover {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.4);
}

.gallery-wl.active,
.gallery-wl.liked {
    background: transparent;
    border-color: transparent;
    color: var(--error);
}

/* Thumbnails */
.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.g-thumb {
    width: calc(25% - 6px);
    aspect-ratio: 1/1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: all var(--ease);
    position: relative;
    overflow: hidden;
}

.g-thumb::before {
    content: none;
}

.g-thumb.active,
.g-thumb:hover {
    border-color: var(--gold);
}

.g-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.g-thumb span {
    position: relative;
    z-index: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    font-size: clamp(160px, 30vw, 280px);
    animation: lbIn .3s ease;
}

@keyframes lbIn {
    from {
        transform: scale(.85);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
    z-index: 1;
    border-radius: 50%;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* RIGHT: Product info */
.product-info {
    padding-left: 0;
}

@media (min-width: 992px) {
    .product-info {
        padding-left: 12px;
    }
}

.prod-brand {
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.prod-name {
    font-family: var(--fd);
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 6px;
}

.prod-name em {
    color: var(--gold);
    font-style: italic;
}

.prod-tagline {
    font-family: var(--fd);
    font-size: clamp(15px, 2vw, 19px);
    font-weight: 300;
    font-style: italic;
    color: var(--mid-grey);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

/* Ratings row */
.ratings-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    font-size: 12px;
    color: var(--gold);
}

.stars i.half {
    color: var(--gold-light);
}

.rating-score {
    font-family: var(--fd);
    font-size: 16px;
    font-weight: 500;
}

.rating-count {
    font-size: 12px;
    color: var(--mid-grey);
}

.rating-count a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold-light);
    transition: border-color var(--ease);
}

.rating-count a:hover {
    border-color: var(--gold);
}

.rating-divider {
    width: 1px;
    height: 14px;
    background: var(--border);
}

/* Price block */
.price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}

.prod-price {
    font-family: var(--fd);
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.prod-was {
    font-family: var(--fd);
    font-size: 20px;
    color: var(--mid-grey);
    text-decoration: line-through;
}

.prod-saving {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--error);
    background: rgba(192, 57, 43, 0.08);
    padding: 2px 8px;
}

.price-note {
    font-size: 11px;
    color: var(--mid-grey);
    margin-bottom: 20px;
}

/* Scent profile strip */
.scent-strip {
    display: flex;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.scent-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 56px;
}

.scent-node-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-grey);
}

.scent-node-val {
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-align: center;
}

.scent-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

/* Size selector */
.option-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-label em {
    font-style: normal;
    font-weight: 400;
    color: var(--mid-grey);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.size-opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.size-opt {
    padding: 10px 18px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--ease);
    position: relative;
}

.size-opt:hover {
    border-color: var(--charcoal);
}

.size-opt.active {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: #fff;
}

.size-opt.sold-out {
    opacity: 0.45;
    cursor: not-allowed;
}

.size-opt.sold-out::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25'%3E%3Cline x1='0' y1='100%25' x2='100%25' y2='0' stroke='%23e2ddd7' stroke-width='1'/%3E%3C/svg%3E");
}

.size-price {
    display: block;
    font-size: 11px;
    font-weight: 300;
    margin-top: 2px;
    opacity: 0.75;
}

/* Concentration selector */
.conc-opts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.conc-opt {
    padding: 8px 14px;
    border: 1px solid var(--border);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--ease);
}

.conc-opt:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.conc-opt.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
    color: var(--gold-dark);
}

/* Add to bag row */
.atb-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.qty-btn {
    width: 40px;
    height: 50px;
    border: none;
    background: none;
    font-size: 17px;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--ease);
}

.qty-btn:hover {
    background: var(--cream);
    color: var(--gold);
}

.qty-val {
    width: 42px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    line-height: 50px;
}

.btn-atb {
    flex: 1;
    background: var(--charcoal);
    color: #fff;
    border: 1px solid var(--charcoal);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 24px;
    height: 50px;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-atb:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-atb i {
    transition: transform var(--ease);
}

.btn-atb:hover i {
    transform: translateX(4px);
}

.btn-atb.loading .btn-text {
    opacity: 0;
}

.btn-atb.loading::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-atb.added {
    background: var(--success);
    border-color: var(--success);
}

.btn-wl {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
    flex-shrink: 0;
}

.btn-wl:hover,
.btn-wl.active,
.btn-wl.liked {
    border-color: var(--error);
    color: var(--error);
    background: rgba(192, 57, 43, 0.04);
}

.btn-wl.active,
.btn-wl.liked {
    border-color: transparent;
    background: transparent;
}

.btn-wl.active i,
.btn-wl.liked i {
    font-variation-settings: 'FILL' 1;
}

.btn-secondary {
    width: 100%;
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--border);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 13px;
    cursor: pointer;
    transition: all var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.btn-secondary:hover {
    border-color: var(--charcoal);
    background: var(--cream);
}

/* Stock status */
.stock-status {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12px;
    margin-bottom: 18px;
}

.stock-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stock-primary {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.stock-primary.in {
    color: var(--success);
}

.stock-primary.low {
    color: #e67e22;
}

.stock-primary.out {
    color: var(--error);
}

.stock-secondary {
    font-size: 11px;
    color: var(--mid-grey);
    line-height: 1.2;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stock-dot.in {
    background: var(--success);
    box-shadow: 0 0 0 3px rgba(39, 115, 74, 0.15);
}

.stock-dot.low {
    background: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
}

.stock-dot.out {
    background: var(--error);
    box-shadow: 0 0 0 3px rgba(196, 57, 43, 0.15);
}

.bis-panel {
    border: 1px solid var(--border);
    background: var(--cream);
    padding: 10px 12px;
    margin: -8px 0 14px;
}

.bis-title {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 8px;
}

.bis-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.bis-input,
.bis-auth-email {
    border: 1px solid var(--border);
    background: var(--white);
    min-height: 38px;
    font-size: 12px;
    color: var(--charcoal);
    padding: 8px 10px;
}

.bis-auth-email {
    display: flex;
    align-items: center;
    letter-spacing: .02em;
}

.bis-input:focus {
    outline: none;
    border-color: var(--gold);
}

.bis-btn {
    border: 1px solid var(--gold);
    background: var(--gold);
    color: #fff;
    min-height: 38px;
    padding: 0 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--ease);
}

.bis-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.bis-btn:disabled {
    opacity: .6;
    cursor: default;
}

.bis-msg {
    min-height: 16px;
    margin-top: 6px;
    font-size: 11px;
    color: var(--mid-grey);
}

@media (max-width: 768px) {
    .bis-row {
        grid-template-columns: 1fr;
    }
}

/* Delivery teaser */
.delivery-teaser {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 12px 14px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dt-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.dt-row i {
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* INFO ACCORDION TABS */
.info-tabs {
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.info-tab-item {
    border-bottom: 1px solid var(--border);
}

.info-tab-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
}

.info-tab-head span {
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color var(--ease);
}

.info-tab-head:hover span {
    color: var(--gold);
}

.info-tab-head i {
    font-size: 14px;
    color: var(--mid-grey);
    transition: transform var(--ease);
    flex-shrink: 0;
}

.info-tab-item.open .info-tab-head i {
    transform: rotate(45deg);
}

.info-tab-item.open .info-tab-head span {
    color: var(--gold);
}

.info-tab-body {
    display: none;
    padding-bottom: 18px;
}

.info-tab-item.open .info-tab-body {
    display: block;
}

/* SCENT PYRAMID */
.pyramid-wrap {
    margin: 8px 0 4px;
}

.pyramid-tier {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.pyramid-tier-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid-grey);
    width: 54px;
    flex-shrink: 0;
    padding-top: 2px;
}

.pyramid-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.p-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--border);
    padding: 5px 11px;
    font-size: 12px;
    letter-spacing: 0.04em;
    background: var(--cream);
    transition: all var(--ease);
    cursor: default;
}

.p-note:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

.p-note em {
    font-size: 14px;
    font-style: normal;
}

.ingredients-text {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.85;
}

.conc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 4px;
}

.conc-table th {
    font-family: var(--fb);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid-grey);
    text-align: left;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.conc-table td {
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--mid-grey);
    vertical-align: top;
}

.conc-table td:first-child {
    color: var(--charcoal);
    font-weight: 500;
    width: 38%;
}

.conc-table tr:last-child td {
    border-bottom: none;
}

/* FRAGRANCE WHEEL */
.frag-wheel-sec {
    background: var(--cream);
    padding: 60px 0;
    border-top: 1px solid var(--border);
}

.fw-canvas {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.fw-svg {
    width: 100%;
    height: 100%;
}

.fw-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.fw-center-label {
    font-family: var(--fd);
    font-size: 13px;
    color: var(--mid-grey);
    font-style: italic;
}

.intensity-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ib-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ib-label {
    font-size: 11px;
    color: var(--mid-grey);
    width: 80px;
    flex-shrink: 0;
    text-align: right;
}

.ib-bg {
    flex: 1;
    height: 4px;
    background: var(--light-grey);
    border-radius: 2px;
    overflow: hidden;
}

.ib-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    transform-origin: left;
    animation: barGrow 1s ease both;
}

@keyframes barGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.ib-fill:nth-child(1) {
    animation-delay: .1s;
}

.ib-val {
    font-size: 11px;
    font-weight: 600;
    color: var(--charcoal);
    width: 28px;
    text-align: right;
}

/* REVIEWS */
.reviews-sec {
    background: var(--white);
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.reviews-head {
    margin-bottom: 44px;
}

.reviews-head h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.reviews-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.review-summary {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 28px;
    text-align: center;
}

.rs-score {
    font-family: var(--fd);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
    color: var(--charcoal);
}

.rs-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin: 8px 0;
}

.rs-stars i {
    font-size: 15px;
    color: var(--gold);
}

.rs-count {
    font-size: 12px;
    color: var(--mid-grey);
    margin-bottom: 20px;
}

.rs-bars {
    text-align: left;
}

.rs-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    font-size: 11px;
    cursor: pointer;
}

.rs-bar-row:hover .rsb-fill {
    opacity: 0.8;
}

.rs-bar-row span:first-child {
    width: 14px;
    color: var(--mid-grey);
    flex-shrink: 0;
}

.rsb-bg {
    flex: 1;
    height: 6px;
    background: var(--light-grey);
    border-radius: 3px;
    overflow: hidden;
}

.rsb-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width .8s ease .2s;
}

.rs-bar-row span:last-child {
    width: 28px;
    text-align: right;
    color: var(--mid-grey);
    font-size: 10px;
    flex-shrink: 0;
}

.review-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.rf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--fb);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid-grey);
    cursor: pointer;
    transition: all var(--ease);
}

.rf-btn:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.rf-btn.active {
    background: var(--charcoal);
    color: #fff;
    border-color: var(--charcoal);
}

.review-card {
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.review-card:first-child {
    border-top: 1px solid var(--border);
}

.rc-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 11px;
}

.rc-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fd);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    flex-shrink: 0;
}

.rc-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.rc-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--mid-grey);
    flex-wrap: wrap;
}

.rc-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--success);
    font-weight: 500;
}

.rc-date {
    color: var(--light-grey);
}

.rc-stars {
    display: flex;
    gap: 2px;
}

.rc-stars i {
    font-size: 11px;
    color: var(--gold);
}

.rc-title {
    font-family: var(--fd);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}

.rc-body {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.8;
    margin-bottom: 12px;
}

.rc-attrs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.rc-attr {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid-grey);
}

.rc-helpful {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 11px;
    color: var(--mid-grey);
}

.rc-helpful button {
    background: none;
    border: 1px solid var(--border);
    padding: 4px 10px;
    font-size: 11px;
    cursor: pointer;
    transition: all var(--ease);
    color: var(--mid-grey);
    font-family: var(--fb);
}

.rc-helpful button:hover {
    border-color: var(--charcoal);
    color: var(--charcoal);
}

.rc-helpful button.voted {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: all var(--ease);
    color: var(--charcoal);
    margin-top: 28px;
}

.write-review-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* TOAST */
.toast-wrap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-item {
    background: var(--charcoal);
    color: #fff;
    padding: 14px 18px 14px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    min-width: 260px;
    max-width: 340px;
    animation: toastIn .35s ease;
}

@keyframes toastIn {
    from {
        transform: translateX(110%);
        opacity: 0
    }

    to {
        transform: translateX(0);
        opacity: 1
    }
}

.toast-item.out {
    animation: toastOut .3s ease forwards;
}

@keyframes toastOut {
    to {
        transform: translateX(110%);
        opacity: 0
    }
}

.toast-emoji {
    font-size: 22px;
    flex-shrink: 0;
}

.toast-text strong {
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.toast-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.toast-check {
    color: var(--gold-light);
    font-size: 18px;
    flex-shrink: 0;
}

/* MOBILE STICKY ATB BAR */
.mob-atb-bar {
    display: none;
}

@media (max-width: 991px) {
    .mob-atb-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 990;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 10px 16px;
        gap: 10px;
        align-items: center;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }
}

.mob-atb-price {
    font-family: var(--fd);
    font-size: 22px;
    flex-shrink: 0;
}

.mob-atb-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.mob-atb-variant {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mid-grey);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mob-btn-atb {
    flex: 1;
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: var(--fb);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px;
    cursor: pointer;
    transition: background var(--ease);
}

.mob-btn-atb:hover {
    background: var(--gold);
}

.mob-btn-atb:disabled {
    background: var(--light-grey);
    color: var(--mid-grey);
    cursor: not-allowed;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 72px;
    }
}

/* ══ RELATED PRODUCTS ══ */
.related-sec {
    background: var(--cream);
    padding: 72px 0;
    border-top: 1px solid var(--border);
}

.section-head {
    text-align: center;
    margin-bottom: 44px;
}

.section-head h2 {
    font-family: var(--fd);
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 300;
    letter-spacing: 0.04em;
}

.section-head h2 em {
    color: var(--gold);
    font-style: italic;
}

.related-sec .prod-card {
    background: var(--white);
    overflow: hidden;
    transition: box-shadow var(--ease);
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-sec .prod-card:hover {
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.09);
}

.related-sec .prod-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-sec .prod-img-bg {
    position: absolute;
    inset: 0;
}

.related-sec .prod-img-emoji {
    font-size: clamp(52px, 10vw, 80px);
    position: relative;
    z-index: 1;
    transition: transform .5s ease;
    user-select: none;
}

.related-sec .prod-card:hover .prod-img-emoji {
    transform: scale(1.08) translateY(-3px);
}

.related-sec .prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 3px 8px;
    background: var(--charcoal);
    color: #fff;
}

.related-sec .prod-body {
    padding: 14px;
}

.pb-brand {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}

.pb-name {
    font-family: var(--fd);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
    transition: color var(--ease);
}

.related-sec .prod-card:hover .pb-name {
    color: var(--gold);
}

.pb-notes {
    font-size: 11px;
    color: var(--mid-grey);
    font-style: italic;
    margin-bottom: 10px;
}

.related-sec .pb-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pb-price {
    font-family: var(--fd);
    font-size: 18px;
}

.pb-stars {
    display: flex;
    gap: 1px;
}

.pb-stars i {
    font-size: 10px;
    color: var(--gold);
}
