/* Cocoa Royale 14 — Luxury PDP (scoped, mobile-first) */
:root {
    --cr14-bg: #1a1512;
    --cr14-card: #231e1a;
    --cr14-gold: #d4af37;
    --cr14-gold-2: #f3d57b;
    --cr14-text: #f0e6d2;
    --cr14-muted: #a89f91;
    --cr14-border: #3e332b;
    --cr14-danger: #c94c4c;
    --cr14-success: #4caf50;
    --cr14-radius: 10px;
    --cr14-radius-sm: 8px;
    --cr14-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    --cr14-header-safe: 70px;
    /* approx; layout has header */
    --cr14-focus: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

/* Mobile-first: touch targets and tap behaviour */
.cr14-wrap button,
.cr14-wrap [role="button"],
.cr14-qbtn,
.cr14-btn-primary,
.cr14-iconbtn,
.cr14-thumb,
.cr14-tipbtn,
.cr14-tabbtn,
.cr14-gift-summary-row,
.cr14-addonTab,
.cr14-addonPicker-tile,
.cr14-addonSheet-close {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
}

@media (max-width: 767px) {
    .cr14-container {
        padding-bottom: max(100px, env(safe-area-inset-bottom, 0px) + 80px);
    }

    .cr14-mobilebar {
        padding-top: max(10px, env(safe-area-inset-top, 0px));
    }

    .cr14-title {
        font-size: clamp(22px, 6vw, 28px);
    }

    .cr14-sub {
        font-size: clamp(13px, 3.5vw, 14px);
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .cr14-grid {
        gap: 24px;
    }

    .cr14-actions {
        gap: 12px;
    }
}

/* Avoid global layout fights — keep minimal overrides */
.cr14-wrap {
    background: var(--cr14-bg);
    color: var(--cr14-text);
}

.cr14-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 14px 14px 110px;
}

@media (min-width: 768px) {
    .cr14-container {
        padding: 22px 22px 60px;
    }
}

.cr14-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cr14-a {
    color: var(--cr14-text);
    text-decoration: none;
}

.cr14-a:hover {
    color: var(--cr14-gold);
}

/* Sticky mobile back */
.cr14-mobilebar {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(26, 21, 18, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--cr14-border);
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .cr14-mobilebar {
        display: none;
    }
}

.cr14-backbtn {
    border: 1px solid var(--cr14-border);
    background: transparent;
    color: var(--cr14-text);
    border-radius: 999px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color .2s, color .2s, transform .2s;
    max-width: 100%;
}

.cr14-backbtn:hover {
    border-color: var(--cr14-gold);
    color: var(--cr14-gold);
    transform: translateY(-1px);
}

.cr14-backbtn:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

/* Breadcrumbs */
.cr14-bc {
    display: none;
    padding: 12px 0 6px;
    color: var(--cr14-muted);
    font-size: 13px;
    overflow-wrap: anywhere;
}

@media (min-width: 768px) {
    .cr14-bc {
        display: block;
    }
}

.cr14-bc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.cr14-bc .sep {
    opacity: .6;
}

/* Layout grid */
.cr14-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .cr14-grid {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 40px;
        margin-top: 14px;
    }
}

/* Gallery */
.cr14-gallery {
    position: relative;
    min-width: 0;
}

.cr14-hero {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.05));
    border: 1px solid var(--cr14-border);
    border-radius: var(--cr14-radius);
    overflow: hidden;
    box-shadow: var(--cr14-shadow);
}

.cr14-hero-rail {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(600px 400px at 30% 10%, rgba(212, 175, 55, 0.12), transparent 55%),
        radial-gradient(500px 380px at 90% 40%, rgba(212, 175, 55, 0.08), transparent 60%);
    opacity: .9;
}

.cr14-hero-imgwrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cr14-card);
}

.cr14-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: opacity .35s ease, transform .45s ease;
    opacity: 1;
    will-change: opacity, transform;
}

.cr14-hero-img.cr14-fade {
    opacity: 0;
}

.cr14-hero-imgwrap:hover .cr14-hero-img {
    transform: scale(1.02);
}

.cr14-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.cr14-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .2px;
    border: 1px solid var(--cr14-border);
    background: rgba(35, 30, 26, 0.65);
    color: var(--cr14-text);
    backdrop-filter: blur(8px);
    max-width: 100%;
}

.cr14-pill strong {
    font-weight: 600;
    color: var(--cr14-gold);
}

.cr14-pill.sale {
    border-color: rgba(201, 76, 76, 0.55);
}

.cr14-pill.sale strong {
    color: #ffd7d7;
}

.cr14-pill.limited {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.32);
    animation: cr14-pulse 2.2s infinite;
}

@keyframes cr14-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.22);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .cr14-pill.limited {
        animation: none;
    }
}

.cr14-play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    pointer-events: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr14-play svg {
    width: 18px;
    height: 18px;
    fill: var(--cr14-gold);
}

.cr14-thumbrow {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 6px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--cr14-gold) rgba(35, 30, 26, 0.8);
}

.cr14-thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    border-radius: var(--cr14-radius-sm);
    border: 1px solid var(--cr14-border);
    overflow: hidden;
    background: var(--cr14-card);
    cursor: pointer;
    opacity: .72;
    transition: transform .2s, opacity .2s, border-color .2s;
    position: relative;
}

.cr14-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr14-thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.cr14-thumb.active {
    opacity: 1;
    border-color: var(--cr14-gold);
}

.cr14-thumb:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-thumb.cr14-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 55% 50%, rgba(212, 175, 55, 0.25), rgba(0, 0, 0, 0.55));
    pointer-events: none;
}

.cr14-thumb.cr14-video .cr14-vidicon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.cr14-thumb.cr14-video .cr14-vidicon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

@media (min-width: 768px) {
    .cr14-gallery {
        padding-left: 96px;
    }

    .cr14-thumbrow {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 80px;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        margin-top: 0;
        padding: 0 0 0 2px;
    }

    .cr14-thumb {
        width: 76px;
        height: 76px;
    }
}

/* Details */
.cr14-details {
    min-width: 0;
}

.cr14-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--cr14-gold);
    font-size: 28px;
    line-height: 1.15;
    margin: 4px 0 8px;
    overflow-wrap: anywhere;
}

@media (min-width: 768px) {
    .cr14-title {
        font-size: 38px;
        margin-top: 0;
    }
}

.cr14-sub {
    color: var(--cr14-muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0 0 14px;
}

@media (min-width: 768px) {
    .cr14-sub {
        font-size: 15px;
    }
}

.cr14-pricebar {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
}

.cr14-price {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--cr14-text);
    letter-spacing: .2px;
}

.cr14-old {
    font-size: 14px;
    color: var(--cr14-muted);
    text-decoration: line-through;
    opacity: .9;
}

.cr14-discount {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--cr14-danger);
    border-radius: 999px;
    padding: 5px 10px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.cr14-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0 16px;
}

.cr14-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--cr14-border);
    background: rgba(35, 30, 26, 0.7);
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--cr14-text);
    font-size: 12px;
    max-width: 100%;
    backdrop-filter: blur(6px);
}

.cr14-chip b {
    color: var(--cr14-gold);
    font-weight: 600;
}

.cr14-chip.low {
    border-color: rgba(201, 76, 76, 0.6);
    color: #ffd7d7;
}

.cr14-chip.ok {
    border-color: rgba(76, 175, 80, 0.45);
    color: #dff7e0;
}

.cr14-chip svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    opacity: .95;
    flex: 0 0 auto;
}

.cr14-notes {
    margin: 14px 0 18px;
    padding: 12px;
    border-radius: var(--cr14-radius);
    border: 1px solid var(--cr14-border);
    background: rgba(35, 30, 26, 0.55);
}

.cr14-notes .k {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--cr14-muted);
}

.cr14-notechips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.cr14-notechip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
    color: var(--cr14-gold-2);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
}

.cr14-notechip::before {
    content: "•";
    opacity: .8;
}

.cr14-diet {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.cr14-tag {
    font-size: 11px;
    color: var(--cr14-muted);
    border: 1px solid var(--cr14-border);
    background: rgba(0, 0, 0, 0.10);
    padding: 6px 9px;
    border-radius: 999px;
    max-width: 100%;
}

.cr14-combo {
    margin: 0 0 16px;
    padding: 12px 14px;
    border: 1px solid var(--cr14-border);
    border-radius: var(--cr14-radius);
    background: rgba(35, 30, 26, 0.55);
}

.cr14-combo-title {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--cr14-gold);
    margin: 0 0 10px;
    font-weight: 400;
}

.cr14-combo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cr14-combo-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(62, 51, 43, 0.5);
    font-size: 13px;
    color: var(--cr14-text);
}

.cr14-combo-item:last-child {
    border-bottom: 0;
}

.cr14-combo-name {
    flex: 1;
    min-width: 0;
}

.cr14-combo-qty {
    color: var(--cr14-muted);
}

.cr14-combo-price {
    color: var(--cr14-gold);
    font-weight: 600;
}

/* Actions */
.cr14-actions {
    display: grid;
    grid-template-columns: 112px 1fr 46px 46px;
    gap: 10px;
    align-items: center;
    margin: 12px 0 18px;
}

@media (max-width: 360px) {
    .cr14-actions {
        grid-template-columns: 106px 1fr 44px 44px;
        gap: 8px;
    }
}

.cr14-qty {
    display: flex;
    border: 1px solid var(--cr14-border);
    border-radius: 999px;
    overflow: hidden;
    height: 46px;
    background: rgba(35, 30, 26, 0.55);
}

.cr14-qbtn {
    width: 40px;
    background: transparent;
    color: var(--cr14-text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background .2s, color .2s;
}

.cr14-qbtn:hover {
    background: rgba(62, 51, 43, 0.45);
    color: var(--cr14-gold);
}

.cr14-qbtn:focus-visible {
    outline: none;
    box-shadow: inset var(--cr14-focus);
}

.cr14-qin {
    width: 32px;
    border: none;
    background: transparent;
    color: var(--cr14-text);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    -moz-appearance: textfield;
}

.cr14-qin::-webkit-outer-spin-button,
.cr14-qin::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cr14-btn-primary {
    height: 46px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(180deg, var(--cr14-gold), #bb9330);
    color: #19130f;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: transform .2s, filter .2s, box-shadow .2s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    min-width: 0;
}

.cr14-btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.cr14-btn-primary:active {
    transform: translateY(0);
}

.cr14-btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.30), 0 10px 20px rgba(0, 0, 0, 0.28);
}

.cr14-iconbtn {
    height: 46px;
    width: 46px;
    border-radius: 999px;
    border: 1px solid var(--cr14-border);
    background: rgba(35, 30, 26, 0.45);
    color: var(--cr14-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, transform .2s, background .2s;
}

.cr14-iconbtn:hover {
    border-color: var(--cr14-gold);
    color: var(--cr14-gold);
    transform: translateY(-1px);
}

.cr14-iconbtn.active {
    border-color: var(--cr14-gold);
    color: var(--cr14-gold);
    background: rgba(212, 175, 55, 0.07);
}

.cr14-iconbtn:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-iconbtn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Shipping */
.cr14-ship {
    border: 1px solid var(--cr14-border);
    border-radius: var(--cr14-radius);
    background: rgba(35, 30, 26, 0.55);
    padding: 12px;
    margin: 0 0 18px;
}

.cr14-shiphead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.cr14-shiphead h3 {
    font-family: 'Playfair Display', serif;
    color: var(--cr14-gold);
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}

.cr14-shipgrid {
    display: grid;
    gap: 10px;
}

.cr14-shiprow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px;
    border-radius: var(--cr14-radius-sm);
    border: 1px solid rgba(62, 51, 43, 0.75);
    background: rgba(0, 0, 0, 0.12);
    position: relative;
}

.cr14-shiprow:hover {
    border-color: rgba(212, 175, 55, 0.45);
}

.cr14-shipleft {
    min-width: 0;
}

.cr14-shiptitle {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.cr14-shiptitle b {
    color: var(--cr14-text);
    font-weight: 700;
}

.cr14-eta {
    font-size: 12px;
    color: var(--cr14-muted);
}

.cr14-shipprice {
    color: var(--cr14-gold);
    font-weight: 800;
    white-space: nowrap;
}

.cr14-tipbtn {
    border: none;
    background: transparent;
    color: var(--cr14-muted);
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cr14-tipbtn:hover {
    color: var(--cr14-gold);
}

.cr14-tipbtn:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
    border-radius: 999px;
}

.cr14-tipbtn svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cr14-tooltip {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    background: rgba(26, 21, 18, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--cr14-radius-sm);
    padding: 10px;
    color: var(--cr14-text);
    font-size: 12px;
    line-height: 1.5;
    box-shadow: var(--cr14-shadow);
    display: none;
    z-index: 5;
}

.cr14-tooltip.open {
    display: block;
}

.cr14-temp {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--cr14-gold-2);
    font-size: 12px;
    line-height: 1.45;
}

.cr14-temp svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    margin-top: 2px;
    flex: 0 0 auto;
}

/* Tabs / Accordion */
.cr14-panels {
    border: 1px solid var(--cr14-border);
    border-radius: var(--cr14-radius);
    background: rgba(35, 30, 26, 0.45);
    overflow: hidden;
    margin: 0 0 18px;
}

.cr14-tablist {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

.cr14-tabbtn {
    width: 100%;
    text-align: left;
    border: 1px solid rgba(62, 51, 43, 0.75);
    background: rgba(0, 0, 0, 0.10);
    color: var(--cr14-text);
    border-radius: var(--cr14-radius-sm);
    padding: 12px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: border-color .2s, color .2s, background .2s;
}

.cr14-tabbtn:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.cr14-tabbtn.active {
    border-color: rgba(212, 175, 55, 0.75);
    color: var(--cr14-gold);
    background: rgba(212, 175, 55, 0.06);
}

.cr14-tabbtn:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-chevron {
    transition: transform .25s ease;
    opacity: .9;
}

.cr14-tabbtn.active .cr14-chevron {
    transform: rotate(180deg);
}

.cr14-panel {
    display: none;
    padding: 0 12px 14px;
    color: var(--cr14-text);
}

.cr14-panel.open {
    display: block;
}

.cr14-panel h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--cr14-gold);
    margin: 12px 0 8px;
    font-size: 16px;
}

.cr14-panel p {
    margin: 8px 0;
    color: var(--cr14-muted);
    line-height: 1.75;
    font-size: 14px;
}

.cr14-panel ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--cr14-muted);
    line-height: 1.7;
    font-size: 14px;
}

.cr14-divider {
    height: 1px;
    background: rgba(62, 51, 43, 0.75);
    margin: 12px 12px 0;
}

@media (min-width: 920px) {
    .cr14-tablist {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 0 12px;
        border-bottom: 1px solid rgba(62, 51, 43, 0.75);
    }

    .cr14-tabbtn {
        border: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        background: transparent;
        padding: 14px 12px;
        width: auto;
    }

    .cr14-tabbtn:hover {
        border-bottom-color: rgba(212, 175, 55, 0.35);
    }

    .cr14-tabbtn.active {
        border-bottom-color: rgba(212, 175, 55, 0.85);
        background: transparent;
    }

    .cr14-chevron {
        display: none;
    }

    .cr14-panel {
        padding: 14px 16px 16px;
    }

    .cr14-divider {
        display: none;
    }
}

/* Reviews */
.cr14-ratingrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.cr14-stars {
    color: var(--cr14-gold);
    letter-spacing: 2px;
    font-size: 14px;
}

.cr14-ratingmeta {
    color: var(--cr14-muted);
    font-size: 13px;
}

.cr14-reviewlist {
    margin-top: 10px;
}

.cr14-review {
    padding: 12px 0;
    border-top: 1px solid rgba(62, 51, 43, 0.65);
}

.cr14-review:first-child {
    border-top: none;
}

.cr14-rhead {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.cr14-rname {
    font-weight: 800;
    color: var(--cr14-text);
}

.cr14-rdate {
    font-size: 12px;
    color: var(--cr14-muted);
}

.cr14-rtext {
    margin-top: 6px;
    color: var(--cr14-muted);
    font-size: 14px;
    line-height: 1.75;
}

.cr14-cta {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cr14-btn-secondary {
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.06);
    color: var(--cr14-gold-2);
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 0 14px;
    transition: transform .2s, border-color .2s, background .2s;
}

.cr14-btn-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 175, 55, 0.7);
    background: rgba(212, 175, 55, 0.09);
}

.cr14-btn-secondary:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

/* Related */
.cr14-related {
    margin-top: 18px;
}

.cr14-related h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: var(--cr14-gold);
    font-size: 20px;
    margin: 0 0 10px;
}

.cr14-slider {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 6px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--cr14-gold) rgba(35, 30, 26, 0.8);
}

.cr14-slide {
    flex: 0 0 78%;
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 520px) {
    .cr14-slide {
        flex-basis: 55%;
    }
}

@media (min-width: 768px) {
    .cr14-slide {
        flex-basis: 320px;
    }
}

/* Sticky mobile bottom bar */
.cr14-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: rgba(26, 21, 18, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.55);
    padding: 10px 12px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: opacity 0.36s ease, filter 0.36s ease;
}

@media (min-width: 768px) {
    .cr14-sticky {
        display: none;
    }
}

.cr14-stickyprice {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cr14-stickyprice .k {
    color: var(--cr14-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cr14-stickyprice .v {
    color: var(--cr14-gold);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

/* Modals */
.cr14-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.cr14-modal.open {
    display: flex;
}

.cr14-modalbox {
    width: min(980px, 100%);
    background: rgba(26, 21, 18, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--cr14-radius);
    overflow: hidden;
    box-shadow: var(--cr14-shadow);
    position: relative;
}

.cr14-modalclose {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(0, 0, 0, 0.35);
    color: var(--cr14-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.cr14-modalclose:hover {
    border-color: rgba(212, 175, 55, 0.7);
    color: var(--cr14-gold);
}

.cr14-modalclose:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-modalclose svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Zoom */
.cr14-zoomstage {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
}

.cr14-zoomimg {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.cr14-zoomhint {
    position: absolute;
    left: 12px;
    bottom: 12px;
    color: rgba(240, 230, 210, 0.85);
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(62, 51, 43, 0.75);
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
}

/* Video */
.cr14-videostage {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cr14-videostage video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
}

/* Prevent accidental horizontal overflow */
.cr14-wrap,
.cr14-container,
.cr14-grid,
.cr14-details,
.cr14-gallery {
    overflow-x: clip;
}

/* Sticky bar: soften when add-on sheet is open (layered under sheet) */
body.cr14-addon-sheet-open .cr14-sticky {
    opacity: 0.36;
    filter: brightness(0.78) saturate(0.88);
    pointer-events: none;
}

/* ----- PDP add-on summary (premium, quiet) ----- */
.cr14-gift-summary {
    margin-top: 16px;
    padding: 14px 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(62, 51, 43, 0.42);
    background: linear-gradient(168deg, rgba(32, 27, 23, 0.42), rgba(22, 18, 15, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.cr14-gift-summary-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cr14-gift-summary-copy {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(62, 51, 43, 0.38);
}

.cr14-gift-summary-kicker {
    margin: 0 0 3px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(168, 159, 145, 0.85);
}

.cr14-gift-summary-title {
    margin: 0 0 4px;
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(16px, 3.4vw, 19px);
    color: rgba(240, 230, 210, 0.96);
    letter-spacing: 0.025em;
    line-height: 1.2;
}

.cr14-gift-summary-sub {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(168, 159, 145, 0.92);
}

.cr14-gift-summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 0;
}

.cr14-gift-summary-chips[hidden] {
    display: none !important;
}

.cr14-gift-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    min-height: 30px;
    padding: 5px 10px 5px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(212, 175, 55, 0.05);
    color: rgba(243, 213, 123, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cr14-gift-chip-mark {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.18);
    color: var(--cr14-gold);
}

.cr14-gift-chip-svg {
    display: block;
    opacity: 0.95;
}

.cr14-gift-chip-text {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Single tappable summary row — entry to add-on sheet */
.cr14-gift-summary-row {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    padding: 11px 12px 11px 10px;
    border-radius: 11px;
    border: 1px solid rgba(62, 51, 43, 0.48);
    background: rgba(20, 17, 14, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
    text-align: left;
    color: inherit;
    font: inherit;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.12);
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.cr14-gift-summary-row:hover {
    border-color: rgba(212, 175, 55, 0.22);
    background: rgba(212, 175, 55, 0.05);
}

.cr14-gift-summary-row:active {
    background: rgba(212, 175, 55, 0.07);
}

.cr14-gift-summary-row:focus {
    outline: none;
}

.cr14-gift-summary-row:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
    border-color: rgba(212, 175, 55, 0.35);
}

.cr14-gift-summary-row-left {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
    flex: 1 1 auto;
}

.cr14-gift-summary-row-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(62, 51, 43, 0.45);
    background: rgba(0, 0, 0, 0.18);
    color: rgba(212, 175, 55, 0.72);
}

.cr14-gift-summary-row-icon svg {
    display: block;
}

.cr14-gift-summary-row-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cr14-gift-summary-row-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(240, 230, 210, 0.94);
    line-height: 1.25;
}

.cr14-gift-summary-row-sub {
    display: block;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(168, 159, 145, 0.95);
    font-variant-numeric: tabular-nums;
}

.cr14-gift-summary-row-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cr14-gift-summary-row-badge {
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
    border: 1px solid rgba(212, 175, 55, 0.28);
    background: rgba(212, 175, 55, 0.1);
    color: rgba(243, 213, 123, 0.95);
    line-height: 1;
}

.cr14-gift-summary-row-badge[hidden] {
    display: none !important;
}

.cr14-gift-summary-row-chevron {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(168, 159, 145, 0.65);
    transition: color 0.2s ease, transform 0.2s ease;
}

.cr14-gift-summary-row:hover .cr14-gift-summary-row-chevron {
    color: rgba(212, 175, 55, 0.55);
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .cr14-gift-summary-row-chevron {
        transition: none;
    }

    .cr14-gift-summary-row:hover .cr14-gift-summary-row-chevron {
        transform: none;
    }
}

/* Add-on sheet: motion + premium layering */
.cr14-addonSheet {
    position: fixed;
    inset: 0;
    z-index: 125;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s linear 0.4s;
}

.cr14-addonSheet.open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s;
}

.cr14-addonSheet-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 80% at 50% 100%, rgba(45, 36, 30, 0.55), transparent 55%),
        linear-gradient(165deg, rgba(32, 26, 22, 0.78), rgba(14, 11, 9, 0.82));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.cr14-addonSheet.open .cr14-addonSheet-scrim {
    opacity: 1;
}

.cr14-addonSheet-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: min(92vh, 900px);
    display: flex;
    flex-direction: column;
    background: linear-gradient(185deg, rgba(42, 36, 31, 0.98) 0%, rgba(24, 20, 17, 0.99) 48%, rgba(18, 15, 13, 1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    box-shadow:
        0 -8px 40px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
    overscroll-behavior: contain;
    transform: translate3d(0, 108%, 0);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.32s ease;
}

.cr14-addonSheet.open .cr14-addonSheet-dialog {
    transform: translate3d(0, 0, 0);
    opacity: 1;
}

@media (min-width: 1024px) {
    .cr14-addonSheet {
        align-items: center;
        padding: 24px;
    }

    .cr14-addonSheet-dialog {
        max-width: 700px;
        border-radius: 18px;
        border: 1px solid rgba(212, 175, 55, 0.18);
        border-bottom: 1px solid rgba(212, 175, 55, 0.12);
        max-height: min(84vh, 800px);
        box-shadow:
            0 24px 64px rgba(0, 0, 0, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
        transform: translate3d(0, 14px, 0) scale(0.96);
        opacity: 0;
    }

    .cr14-addonSheet.open .cr14-addonSheet-dialog {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
        transition:
            transform 0.38s cubic-bezier(0.34, 1.02, 0.32, 1),
            opacity 0.32s ease;
    }
}

@media (prefers-reduced-motion: reduce) {

    .cr14-addonSheet,
    .cr14-addonSheet-scrim,
    .cr14-addonSheet-dialog {
        transition: none !important;
    }

    .cr14-addonSheet:not(.open) .cr14-addonSheet-dialog {
        transform: none !important;
        opacity: 1 !important;
    }

    .cr14-addonSheet:not(.open) .cr14-addonSheet-scrim {
        opacity: 0 !important;
    }

    .cr14-addonSheet.open .cr14-addonSheet-dialog {
        transform: none !important;
        opacity: 1 !important;
    }

    .cr14-addonSheet.open .cr14-addonSheet-scrim {
        opacity: 1 !important;
    }
}

.cr14-addonSheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px 12px;
    flex-shrink: 0;
    background: rgba(22, 18, 15, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(62, 51, 43, 0.35);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.04);
}

.cr14-addonSheet-title {
    margin: 0 0 4px;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(17px, 3.8vw, 21px);
    color: rgba(212, 175, 55, 0.95);
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.cr14-addonSheet-sub {
    margin: 0;
    font-size: 11px;
    line-height: 1.55;
    color: rgba(168, 159, 145, 0.95);
}

.cr14-addonSheet-close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(62, 51, 43, 0.55);
    background: rgba(0, 0, 0, 0.2);
    color: rgba(240, 230, 210, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.cr14-addonSheet-close:hover {
    border-color: rgba(212, 175, 55, 0.35);
    color: var(--cr14-gold);
    background: rgba(212, 175, 55, 0.06);
}

.cr14-addonSheet-close:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-addonSheet-live {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 16px 10px;
    flex-shrink: 0;
    background: rgba(12, 10, 9, 0.45);
    border-bottom: 1px solid rgba(62, 51, 43, 0.32);
}

.cr14-addonSheet-live-k {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(168, 159, 145, 0.88);
}

.cr14-addonSheet-live-v {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.92);
    font-variant-numeric: tabular-nums;
}

/* Premium pill category nav */
.cr14-addonSheet-tabs {
    display: flex;
    gap: 8px;
    padding: 8px 12px 12px;
    overflow-x: auto;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.35) rgba(35, 30, 26, 0.5);
    border-bottom: 1px solid rgba(62, 51, 43, 0.35);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    mask-size: 100% 100%;
}

.cr14-addonTab {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(62, 51, 43, 0.45);
    background: rgba(26, 21, 18, 0.35);
    color: rgba(168, 159, 145, 0.95);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cr14-addonTab:hover {
    border-color: rgba(212, 175, 55, 0.22);
    color: rgba(240, 230, 210, 0.88);
}

.cr14-addonTab[aria-selected="true"] {
    border-color: rgba(212, 175, 55, 0.28);
    color: rgba(243, 213, 123, 0.95);
    background: rgba(212, 175, 55, 0.06);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.cr14-addonTab:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-addonSheet-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 12px 10px;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.08);
}

.cr14-addonPanel {
    display: none;
}

.cr14-addonPanel.is-active {
    display: block;
}

.cr14-addonPicker-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

@media (min-width: 600px) {
    .cr14-addonPicker-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (min-width: 1024px) {
    .cr14-addonPicker-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }
}

.cr14-addonPicker-tile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 7px 7px 8px;
    min-height: 96px;
    border-radius: 10px;
    border: 1px solid rgba(62, 51, 43, 0.38);
    background: rgba(26, 21, 18, 0.4);
    color: var(--cr14-text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.cr14-addonPicker-tile:hover:not(:disabled) {
    border-color: rgba(212, 175, 55, 0.2);
    background: rgba(30, 25, 21, 0.55);
}

.cr14-addonPicker-tile:focus-visible {
    outline: none;
    box-shadow: var(--cr14-focus);
}

.cr14-addonPicker-tile.is-selected {
    border-color: rgba(212, 175, 55, 0.32);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.cr14-addonPicker-tile.is-oss,
.cr14-addonPicker-tile:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

.cr14-addonPicker-media {
    position: relative;
    width: 100%;
    max-width: 48px;
    margin: 0 auto 6px;
}

.cr14-addonPicker-img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 7px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(62, 51, 43, 0.4);
}

.cr14-addonPicker-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr14-addonPicker-check {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.88);
    color: #1a1512;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.22s ease, transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    pointer-events: none;
}

.cr14-addonPicker-checkSvg {
    display: block;
}

.cr14-addonPicker-tile.is-selected .cr14-addonPicker-check {
    opacity: 1;
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .cr14-addonPicker-check {
        transition: none;
    }

    .cr14-addonPicker-tile.is-selected .cr14-addonPicker-check {
        transform: none;
    }
}

.cr14-addonPicker-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    align-items: center;
    text-align: center;
}

.cr14-addonPicker-name {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
    max-width: 100%;
    color: rgba(240, 230, 210, 0.9);
}

.cr14-addonPicker-delta {
    font-size: 10px;
    font-weight: 600;
    color: rgba(243, 213, 123, 0.85);
    font-variant-numeric: tabular-nums;
}

.cr14-addonPicker-oss {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(201, 76, 76, 0.85);
}

.cr14-addonSheet-footer {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(62, 51, 43, 0.4);
    background: rgba(16, 13, 11, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
}

.cr14-addonSheet-footer-meta {
    font-size: 11px;
    color: rgba(168, 159, 145, 0.92);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.cr14-addonSheet-footer-meta span:last-of-type {
    color: rgba(243, 213, 123, 0.9);
    font-weight: 600;
}

.cr14-addonSheet-apply {
    min-width: min(220px, 100%);
    flex: 1 1 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

@media (min-width: 1024px) {
    .cr14-addonSheet-footer {
        flex-wrap: nowrap;
    }

    .cr14-addonSheet-apply {
        flex: 0 0 auto;
        min-width: 196px;
    }
}

.cr14-totalstrip {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 4px;
    padding: 12px 14px;
    border-radius: var(--cr14-radius-sm);
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.06);
}

.cr14-totalstrip-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cr14-muted);
}

.cr14-totalstrip-value {
    font-size: 20px;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--cr14-gold);
    font-variant-numeric: tabular-nums;
}