/* ==========================================================================
   Carley Connection — Single Product Page (Figma 36:2726 exact)
   ========================================================================== */

/* ---------- Product Hero — 7/5 Grid ---------- */
.cc-pdp {
    padding-top: 128px;
    background: #f9f9f7;
}

.cc-pdp__layout {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 96px;
    max-width: 1920px;
    padding: 0 64px;
    margin: 0 auto;
}

/* ---- Gallery Column ---- */
.cc-pdp__gallery {
    display: flex;
    flex-direction: column;
}

/* Main product image — thumbnails are OVERLAID inside its bottom-left
   corner as small square chips. Position: relative is the anchor for
   the absolute thumbs-overlay below. */
.cc-pdp__main-image {
    background: #f0f0ee;
    overflow: hidden;
    box-shadow: 40px 40px 0px 0px rgba(32, 63, 67, 0.05);
    height: 790px;
    position: relative;
}

/* Two stacked image layers — bottom is the "current" image, top fades in
   over it when an incoming image is shown. Crossfade means the background
   #f0f0ee never peeks through, so no white flash. */
.cc-pdp__main-layer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.cc-pdp__main-layer--bottom { z-index: 1; }
.cc-pdp__main-layer--top    { z-index: 2; opacity: 0; pointer-events: none; }

.cc-pdp__main-image:hover .cc-pdp__main-layer--bottom {
    transform: scale(1.03);
}

/* ---- Thumbnail squares overlaid inside the main image ---- */
.cc-pdp__thumbs-overlay {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    gap: 10px;
    z-index: 3;
    padding: 8px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(32, 63, 67, 0.18);
}

.cc-pdp__thumb-square {
    width: 64px;
    height: 64px;
    border: 0;
    padding: 0;
    margin: 0;
    background: #f0f0ee;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    opacity: 0.72;
    transition: opacity 0.25s ease, transform 0.25s ease, outline-offset 0.2s ease;
    outline: 2px solid transparent;
    outline-offset: 0;
}

.cc-pdp__thumb-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cc-pdp__thumb-square:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.cc-pdp__thumb-square.is-active {
    opacity: 1;
    outline-color: var(--color-accent, #facb58);
    outline-offset: 2px;
}

.cc-pdp__thumb-square:focus-visible {
    outline-color: var(--color-primary, #203f43);
    outline-offset: 2px;
}

/* Mobile: smaller squares + centered along bottom */
@media (max-width: 768px) {
    .cc-pdp__thumbs-overlay {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
    }
    .cc-pdp__thumb-square {
        width: 48px;
        height: 48px;
    }
}

.cc-pdp__thumb-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
}

/* ---- Info Column ---- */
.cc-pdp__info {
    padding-top: 16px;
}

.cc-pdp__info-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Header with gold left border */
.cc-pdp__header {
    border-left: 4px solid #facb58;
    padding-left: 36px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-pdp__archive-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
}

.cc-pdp__title {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: 200;
    color: #203f43;
    line-height: 96px;
    letter-spacing: -1px;
}

.cc-pdp__title em {
    font-style: italic;
}

.cc-pdp__price-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.cc-pdp__price {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 200;
    color: rgba(32, 63, 67, 0.8);
    line-height: 40px;
}

.cc-pdp__status-badge {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #facb58;
    background: #203f43;
    padding: 4px 12px;
    line-height: 15px;
}

.cc-pdp__short-desc {
    margin-top: 16px;
    max-width: 46ch;
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(32, 63, 67, 0.72);
}

.cc-pdp__short-desc p {
    margin: 0;
}

/* ---- Tabs ---- */
.cc-pdp__tabs {
    display: flex;
    border-bottom: 1px solid rgba(32, 63, 67, 0.1);
}

.cc-pdp__tab {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.55);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 16px 32px 18px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.cc-pdp__tab.is-active {
    color: #203f43;
    border-bottom-color: #203f43;
}

.cc-pdp__tab:hover {
    color: #203f43;
}

/* ---- Configurator Form ---- */
.cc-pdp__form {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cc-pdp__fields {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cc-pdp__field-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-pdp__field-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-pdp__field-divider {
    width: 32px;
    height: 1px;
    background: rgba(32, 63, 67, 0.2);
}

.cc-pdp__field-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.7);
}

.cc-pdp__field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

/* Swatches */
.cc-pdp__swatches {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cc-pdp__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cc-pdp__swatch-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: box-shadow 0.3s ease;
}

.cc-pdp__swatch.is-active .cc-pdp__swatch-dot {
    box-shadow: 0 0 0 4px white, 0 0 0 6px #203f43;
}

.cc-pdp__swatch-name {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 200;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
    text-align: center;
    transition: color 0.3s ease;
}

.cc-pdp__swatch.is-active .cc-pdp__swatch-name {
    color: #203f43;
}

/* Size grid */
.cc-pdp__size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.cc-pdp__size-btn {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    color: #1a1c1b;
    text-align: center;
    padding: 13px;
    border: 1px solid rgba(32, 63, 67, 0.1);
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cc-pdp__size-btn.is-active {
    background: #203f43;
    border-color: #203f43;
    color: white;
}

.cc-pdp__size-btn:hover:not(.is-active) {
    border-color: #203f43;
}

/* Length options */
.cc-pdp__length-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-pdp__length-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 17px;
    border: 1px solid rgba(32, 63, 67, 0.1);
    background: none;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    color: #1a1c1b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cc-pdp__length-btn.is-active {
    background: rgba(32, 63, 67, 0.05);
    border-color: #203f43;
}

.cc-pdp__length-btn svg {
    color: rgba(32, 63, 67, 0.3);
}

/* Generic form inputs */
.cc-pdp__select,
.cc-pdp__input {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 200;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(32, 63, 67, 0.1);
    background: transparent;
    color: #1a1c1b;
    transition: border-color 0.3s ease;
}

.cc-pdp__select:focus,
.cc-pdp__input:focus {
    border-bottom-color: #203f43;
    outline: none;
}

/* ---- Purchase Logic ---- */
.cc-pdp__purchase {
    border-top: 1px solid rgba(32, 63, 67, 0.05);
    padding-top: 13px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cc-pdp__qty-delivery {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cc-pdp__qty {
    display: flex;
    border: 1px solid rgba(32, 63, 67, 0.1);
}

.cc-pdp__qty-btn {
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: #203f43;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.cc-pdp__qty-btn:hover {
    background: rgba(32, 63, 67, 0.05);
}

.cc-pdp__qty-input {
    width: 48px;
    height: 48px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 200;
    color: #203f43;
    border: 1px solid rgba(32, 63, 67, 0.1);
    border-top: none;
    border-bottom: none;
    background: none;
    -moz-appearance: textfield;
}

.cc-pdp__qty-input::-webkit-inner-spin-button,
.cc-pdp__qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.cc-pdp__delivery {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
    line-height: 15px;
}

.cc-pdp__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cc-pdp__add-btn {
    background: #203f43;
    color: white;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.cc-pdp__add-btn:hover {
    background: #152a2d;
}

.cc-pdp__buy-btn {
    background: #facb58;
    color: #203f43;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 24px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.cc-pdp__buy-btn:hover {
    background: #e6b647;
}

/* ==========================================================================
   IMMERSIVE STORYTELLING — "The Living Fabric" (Figma 36:2877)
   ========================================================================== */
.cc-pdp-story {
    background: #203f43;
    padding: 256px 64px;
    position: relative;
    overflow: hidden;
}

/* Diagonal accent */
.cc-pdp-story__accent {
    position: absolute;
    top: 0;
    right: -5%;
    bottom: 0;
    width: 30%;
    background: rgba(250, 203, 88, 0.05);
    transform: skewX(-12deg);
    pointer-events: none;
}

.cc-pdp-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 128px;
    max-width: 1920px;
    margin: 0 auto;
    align-items: center;
}

/* Media column */
.cc-pdp-story__media {
    position: relative;
}

.cc-pdp-story__video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-width: 410px;
}

.cc-pdp-story__video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0);
}

.cc-pdp-story__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(32, 63, 67, 0.4);
}

.cc-pdp-story__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.4s ease;
}

.cc-pdp-story__play:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.cc-pdp-story__play svg {
    margin-left: 3px;
}

.cc-pdp-story__video-label {
    position: absolute;
    bottom: 32px;
    left: 32px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #facb58;
    z-index: 2;
}

/* Detail image — overlapping */
.cc-pdp-story__detail {
    position: absolute;
    right: -12.5%;
    bottom: -64px;
    width: 47.5%;
    aspect-ratio: 1 / 1;
    border: 20px solid #203f43;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.cc-pdp-story__detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content column */
.cc-pdp-story__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cc-pdp-story__eyebrow {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(250, 203, 88, 0.6);
    margin-bottom: 24px;
}

.cc-pdp-story__title {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: 200;
    font-style: italic;
    color: #facb58;
    line-height: 96px;
    margin-bottom: 48px;
}

.cc-pdp-story__quote {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 41px;
    padding-top: 16px;
    padding-bottom: 16px;
    margin-bottom: 48px;
}

.cc-pdp-story__quote p {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 200;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 40px;
    max-width: 465px;
    margin: 0;
}

.cc-pdp-story__body {
    max-width: 512px;
    margin-bottom: 48px;
}

.cc-pdp-story__body p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.6);
    line-height: 29.25px;
    margin: 0;
}

.cc-pdp-story__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 49px;
}

.cc-pdp-story__stat {
    display: flex;
    flex-direction: column;
    gap: 7.5px;
}

.cc-pdp-story__stat-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 200;
    color: #facb58;
    line-height: 48px;
}

.cc-pdp-story__stat-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 200;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   MASTER TAILOR PROFILE CARD (Figma 36:2910)
   ========================================================================== */
.cc-pdp-tailor {
    display: flex;
    justify-content: center;
    padding: 0 64px;
    margin: -64px auto 0;
    position: relative;
    z-index: 1;
}

.cc-pdp-tailor__card {
    display: flex;
    max-width: 1152px;
    width: 100%;
    background: #ffffff;
    /* Editorial "stacked card" shadow — tightened to 24px and given a
       touch of blur so it reads as an intentional accent rather than a
       phantom rectangle on the right/bottom edge. */
    box-shadow: 24px 24px 0 0 rgba(32, 63, 67, 0.06),
                0 1px 0 0 rgba(32, 63, 67, 0.04);
    border-radius: 2px;
    overflow: hidden;
}

.cc-pdp-tailor__portrait {
    width: 384px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.cc-pdp-tailor__portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    mix-blend-mode: saturation;
    background: white;
    pointer-events: none;
}

.cc-pdp-tailor__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-pdp-tailor__content {
    padding: 96px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.cc-pdp-tailor__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cc-pdp-tailor__name {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 200;
    font-style: italic;
    color: #203f43;
    line-height: 48px;
}

.cc-pdp-tailor__role {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
}

.cc-pdp-tailor__quote p {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 200;
    font-style: italic;
    color: rgba(32, 63, 67, 0.8);
    line-height: 39px;
    max-width: 576px;
    margin: 0;
}

.cc-pdp-tailor__link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.cc-pdp-tailor__link span {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #203f43;
}

.cc-pdp-tailor__link svg {
    color: #203f43;
}

/* ==========================================================================
   FURTHER CURATION — Related Products (Figma 36:2925)
   ========================================================================== */
.cc-pdp-curation {
    background: white;
    padding: 128px 64px;
}

.cc-pdp-curation__inner {
    display: flex;
    flex-direction: column;
    gap: 96px;
    max-width: 1920px;
    margin: 0 auto;
}

.cc-pdp-curation__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cc-pdp-curation__eyebrow {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
    display: block;
    margin-bottom: 16px;
}

.cc-pdp-curation__title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 200;
    color: #203f43;
    line-height: 60px;
}

.cc-pdp-curation__title em {
    font-style: italic;
}

.cc-pdp-curation__nav {
    display: flex;
    gap: 16px;
}

.cc-pdp-curation__nav-btn {
    width: 64px;
    height: 64px;
    border: 1px solid rgba(32, 63, 67, 0.1);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #203f43;
    transition: all 0.3s ease;
}

.cc-pdp-curation__nav-btn:hover {
    border-color: #203f43;
    background: rgba(32, 63, 67, 0.03);
}

.cc-pdp-curation__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.cc-pdp-curation__image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f0f0ee;
    position: relative;
    margin-bottom: 24px;
}

.cc-pdp-curation__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cc-pdp-curation__item:hover .cc-pdp-curation__image img {
    transform: scale(1.05);
}

.cc-pdp-curation__badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 200;
    letter-spacing: 2.7px;
    text-transform: uppercase;
    color: #203f43;
    padding: 4px 12px;
}

.cc-pdp-curation__name {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 200;
    color: #203f43;
    line-height: 36px;
    margin-bottom: 4px;
}

.cc-pdp-curation__material {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.65);
    display: block;
    margin-bottom: 16px;
}

.cc-pdp-curation__price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 200;
    font-style: italic;
    color: rgba(32, 63, 67, 0.8);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
    .cc-pdp__layout { grid-template-columns: 1fr 1fr; gap: 48px; padding: 0 32px; }
    .cc-pdp__title { font-size: 64px; line-height: 64px; }
    .cc-pdp__main-image { height: 500px; box-shadow: none; }
    .cc-pdp-story { padding: 128px 32px; }
    .cc-pdp-story__title { font-size: 64px; line-height: 64px; }
    .cc-pdp-story__quote p { font-size: 24px; line-height: 32px; }
}

@media (max-width: 1024px) {
    .cc-pdp__layout { grid-template-columns: 1fr; gap: 64px; }
    .cc-pdp__main-image { height: 60vh; }
    .cc-pdp-story__grid { grid-template-columns: 1fr; gap: 64px; }
    .cc-pdp-story__media { order: 2; }
    .cc-pdp-story__content { order: 1; }
    .cc-pdp-story__detail { position: relative; right: 0; bottom: 0; width: 60%; margin-top: -32px; }
    .cc-pdp-tailor__card { flex-direction: column; }
    .cc-pdp-tailor__portrait { width: 100%; height: 300px; }
    .cc-pdp-tailor__content { padding: 48px; }
    .cc-pdp-curation__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cc-pdp { padding-top: 96px; }
    .cc-pdp__layout { padding: 0 16px; }
    .cc-pdp__title { font-size: 48px; line-height: 48px; }
    .cc-pdp__price { font-size: 24px; }
    /* (cc-pdp__thumbs-grid + cc-pdp__thumb-item--right removed — replaced
       by .cc-pdp__thumbs-overlay above) */
    .cc-pdp__field-grid { grid-template-columns: 1fr; }
    .cc-pdp__actions { grid-template-columns: 1fr; }
    .cc-pdp-story { padding: 96px 16px; }
    .cc-pdp-story__title { font-size: 48px; line-height: 48px; }
    .cc-pdp-story__stats { grid-template-columns: 1fr; gap: 32px; }
    .cc-pdp-tailor { padding: 0 16px; }
    .cc-pdp-tailor__content { padding: 32px; }
    .cc-pdp-tailor__name { font-size: 32px; line-height: 32px; }
    .cc-pdp-curation { padding: 64px 16px; }
    .cc-pdp-curation__grid { grid-template-columns: 1fr; gap: 32px; }
    .cc-pdp-curation__title { font-size: 36px; line-height: 36px; }
    .cc-pdp-curation__nav-btn { width: 48px; height: 48px; }
}

/* ---------- Section Spacing ---------- */
.cc-pdp__story-gap {
    /* Was 192px with the same bg as the first story block — it visually merged
       into the block and made its heading look pushed down (~280px above vs
       86px below). Now a small transparent separator; the block's own
       symmetric padding provides the balance. */
    height: 48px;
    background: transparent;
}

/* Gap between hero and storytelling — regular product only */
.cc-pdp + .cc-storytelling {
    margin-top: 96px;
}

/* Gap between storytelling and tailor card */
.cc-storytelling + .cc-pdp-tailor {
    margin-top: 64px;
}

/* Gap between hero and tailor card (no storytelling blocks) */
.cc-pdp + .cc-pdp-tailor {
    margin-top: 96px;
}

/* Auction page — no extra gap, sections flow tight */
.cc-auction-pdp + .cc-storytelling {
    margin-top: 0;
}

.cc-auction-pdp + .cc-auction-artisan,
.cc-storytelling + .cc-auction-artisan {
    margin-top: 0;
}

.cc-auction-artisan + .cc-auction-pairings {
    margin-top: 0;
}

/* Override .cc-section spacing for tight auction flow */
.cc-auction-artisan.cc-section {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(3rem, 5vw, 5rem);
}

.cc-auction-pairings.cc-section {
    padding-top: clamp(3rem, 5vw, 5rem);
    padding-bottom: clamp(4rem, 6vw, 6rem);
}

/* Gap between storytelling sections */
.cc-pdp-story + .cc-pdp-tailor {
    margin-top: 0;
    padding-top: 96px;
}

.cc-pdp-tailor + .cc-pdp-curation {
    margin-top: 96px;
}

/* Tailor's collection on product/auction pages */
.cc-tp-products--on-pdp {
    padding: 96px 64px 128px;
    background: #f0f0ee;
}

.cc-tp-products--on-pdp .cc-tp-products__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.cc-tp-products--on-pdp .cc-tp-products__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.cc-tp-products--on-pdp .cc-tp-products__eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 200;
    letter-spacing: 4.8px;
    color: #7a5900;
    display: block;
    margin-bottom: 16px;
}

.cc-tp-products--on-pdp .cc-tp-products__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #152a2d;
}

.cc-tp-products--on-pdp .cc-tp-products__shopall {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 200;
    letter-spacing: 1.4px;
    color: #152a2d;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 54, 54, 0.2);
    padding-bottom: 9px;
}

.cc-tp-products--on-pdp .cc-tp-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.cc-tp-products--on-pdp .cc-tp-products__image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}

.cc-tp-products--on-pdp .cc-tp-products__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cc-tp-products--on-pdp .cc-tp-products__item:hover .cc-tp-products__image img {
    transform: scale(1.05);
}

.cc-tp-products--on-pdp .cc-tp-products__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 200;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    padding: 4px 12px;
}

.cc-tp-products--on-pdp .cc-tp-products__badge--auction {
    background: #facb58;
    color: #745400;
}

.cc-tp-products--on-pdp .cc-tp-products__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #1a1c1b;
    margin-bottom: 4px;
}

.cc-tp-products--on-pdp .cc-tp-products__material {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 200;
    color: #3f4848;
    margin-bottom: 16px;
}

.cc-tp-products--on-pdp .cc-tp-products__price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 200;
    color: #152a2d;
}

@media (max-width: 1024px) {
    .cc-tp-products--on-pdp .cc-tp-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cc-tp-products--on-pdp {
        padding: 64px 16px 96px;
    }
    .cc-tp-products--on-pdp .cc-tp-products__grid {
        grid-template-columns: 1fr;
    }
    .cc-tp-products--on-pdp .cc-tp-products__header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

.cc-storytelling + .cc-pdp-story {
    margin-top: 0;
}

/* ---------- MTM Fields ---------- */
.cc-pdp__mtm-fields {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(32, 63, 67, 0.05);
}

.cc-pdp__measurement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cc-pdp__measurement-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cc-pdp__measurement-help {
    display: block;
    font-size: 11px;
    line-height: 1.5;
    color: rgba(32, 63, 67, 0.55);
}

.cc-pdp__mtm-profile-row { margin: 14px 0 18px; }
.cc-pdp__mtm-profile-row .cc-pdp__select { margin-top: 6px; }

.cc-pdp__measurement-guide-link { margin: 14px 0 0; }
.cc-pdp__measurement-guide-link a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary, #203f43);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.cc-pdp__measurement-guide-link a:hover { color: var(--color-accent, #b38600); }

.cc-pdp__measurement-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(32, 63, 67, 0.7);
}

.cc-pdp__textarea {
    resize: vertical;
    min-height: 60px;
    border: 1px solid rgba(32, 63, 67, 0.1);
    padding: 12px 16px;
}

/* Upload field */
.cc-pdp__upload {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 1px dashed rgba(32, 63, 67, 0.15);
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.cc-pdp__upload:hover {
    border-color: #203f43;
    background: rgba(32, 63, 67, 0.02);
}

.cc-pdp__upload-input {
    display: none;
}

.cc-pdp__upload-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 200;
    color: rgba(32, 63, 67, 0.5);
    letter-spacing: 0.5px;
}

.cc-pdp__upload svg {
    color: rgba(32, 63, 67, 0.3);
    flex-shrink: 0;
}

/* ---------- Storytelling wrapper spacing ---------- */
.cc-storytelling {
    margin-top: 0;
}

/* Storytelling blocks spacing — no gap between them for seamless flow */
.cc-storytelling .cc-story-block {
    margin-bottom: 0;
}

/* But if you want a subtle separator between blocks, add a thin line */
.cc-storytelling .cc-story-block + .cc-story-block {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}


/* ---------- Auction Product Page (Figma-exact) ---------- */
.cc-auction-pdp__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    min-height: auto;
    background-color: #f4f4f2;
}

.cc-auction-pdp__gallery {
    position: relative;
    overflow: hidden;
}

.cc-auction-pdp__main-image {
    height: 100%;
}

.cc-auction-pdp__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Live Auction Badge — gold, top-right */
.cc-auction-pdp__live-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    background-color: #facb58;
    padding: 10px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    z-index: 2;
}

.cc-auction-pdp__live-badge-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cc-auction-pdp__live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #203f43;
    animation: cc-pulse 1.5s ease-in-out infinite;
}

.cc-auction-pdp__live-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #203f43;
}

.cc-auction-pdp__live-timer {
    border-top: 1px solid rgba(32,63,67,0.1);
    padding-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cc-auction-pdp__live-timer-label {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(32,63,67,0.7);
}

.cc-auction-pdp__live-timer-value {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: #203f43;
    font-variant-numeric: tabular-nums;
}

/* Ended Badge — on image when auction is over */
.cc-auction-pdp__ended-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    background: rgba(26, 28, 27, 0.85);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    color: #f9f9f7;
}

.cc-auction-pdp__ended-icon {
    color: rgba(250, 203, 88, 0.6);
    flex-shrink: 0;
}

.cc-auction-pdp__ended-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cc-auction-pdp__ended-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #facb58;
}

.cc-auction-pdp__ended-date {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(249, 249, 247, 0.5);
}

.cc-auction-pdp__ended-final {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #facb58;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 16px;
}

/* Upcoming Badge */
.cc-auction-pdp__upcoming-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    background: rgba(32, 63, 67, 0.9);
    backdrop-filter: blur(8px);
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.cc-auction-pdp__upcoming-text {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #facb58;
}

.cc-auction-pdp__upcoming-date {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

/* Gallery Thumbs */
.cc-auction-pdp__thumbs {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    gap: 16px;
}

.cc-auction-pdp__thumb {
    width: 80px;
    height: 96px;
    border: 2px solid rgba(255,255,255,0.5);
    background: none;
    padding: 2px;
    cursor: pointer;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

.cc-auction-pdp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Panel */
.cc-auction-pdp__info {
    padding: 48px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
}

/* Lot Number + Watchlist row */
.cc-auction-pdp__lot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cc-auction-pdp__lot {
    border-bottom: 1px solid rgba(32,63,67,0.2);
    padding-bottom: 5px;
    display: inline-block;
}

.cc-auction-pdp__lot span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.6px;
    color: #203f43;
}

/* Watchlist toggle button */
.cc-watchlist-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: transparent;
    border: 1px solid rgba(32,63,67,0.25);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #203f43;
    cursor: pointer;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
}

.cc-watchlist-toggle:hover {
    background: rgba(32,63,67,0.06);
    border-color: rgba(32,63,67,0.5);
}

.cc-watchlist-toggle__icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.25s ease, stroke 0.25s ease;
}

.cc-watchlist-toggle.is-watching {
    background: rgba(186,26,26,0.08);
    border-color: rgba(186,26,26,0.4);
    color: #ba1a1a;
}

.cc-watchlist-toggle.is-watching .cc-watchlist-toggle__icon {
    fill: #ba1a1a;
    stroke: #ba1a1a;
}

.cc-watchlist-toggle.is-pulsing .cc-watchlist-toggle__icon {
    transform: scale(1.25);
}

.cc-watchlist-toggle__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(32,63,67,0.08);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #203f43;
}

.cc-watchlist-toggle.is-watching .cc-watchlist-toggle__count {
    background: rgba(186,26,26,0.15);
    color: #ba1a1a;
}

.cc-watchlist-toggle:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* Toast feedback */
.cc-watchlist-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    padding: 12px 20px;
    background: #203f43;
    color: #fff;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.cc-watchlist-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cc-watchlist-toast--error {
    background: #ba1a1a;
}

@media (max-width: 768px) {
    .cc-watchlist-toggle {
        padding: 8px 13px;
        font-size: 10px;
        letter-spacing: 1.2px;
    }
}

/* Title — italic serif */
.cc-auction-pdp__title {
    font-family: var(--font-heading);
    font-size: 96px;
    font-weight: 400;
    font-style: italic;
    color: #203f43;
    line-height: 96px;
    letter-spacing: -4.8px;
}

/* Description */
.cc-auction-pdp__desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: #3f4848;
    line-height: 29.25px;
    max-width: 384px;
}

/* Bid Configuration Card */
.cc-auction-pdp__bid-card {
    background: #f9f9f7;
    border-left: 2px solid #facb58;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(26,28,27,0.06);
}

.cc-auction-pdp__config-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cc-auction-pdp__config-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #707978;
}

.cc-auction-pdp__config-value {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #203f43;
}

/* Color Swatches */
.cc-auction-pdp__swatches {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.cc-auction-pdp__swatch {
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    padding: 3px;
    cursor: pointer;
    position: relative;
}

.cc-auction-pdp__swatch.is-active {
    border-color: #203f43;
}

.cc-auction-pdp__swatch.is-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #203f43;
}

/* Size Selector */
.cc-auction-pdp__sizes {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.cc-auction-pdp__size {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: rgba(32,63,67,0.4);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cc-auction-pdp__size.is-active {
    font-weight: 600;
    color: #203f43;
    text-decoration: underline;
}

.cc-auction-pdp__bid-separator {
    height: 1px;
    background: rgba(32,63,67,0.1);
    margin: 16px 0;
}
/* When no swatch/size rows render before it, the separator is the card's first
   child and floats as an orphan line above the price — hide it in that case. */
.cc-auction-pdp__bid-card .cc-auction-pdp__bid-separator:first-child {
    display: none;
}

/* Current Bid */
.cc-auction-pdp__current-bid {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.cc-auction-pdp__bid-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #707978;
}

.cc-auction-pdp__bid-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: #203f43;
    line-height: 48px;
}

/* Enter Bidding Room CTA */
.cc-auction-pdp__bid-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px;
    background-color: #203f43;
    color: white;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: background var(--transition-fast);
}

.cc-auction-pdp__bid-btn:hover {
    background-color: #2c555b;
    color: white;
}

/* Notify-me capture — starts as a single button; clicking reveals the form */
.cc-auction-pdp__notify-form {
    display: none;
    margin-top: 14px;
}
.cc-auction-pdp__notify.is-open .cc-auction-pdp__notify-trigger { display: none; }
.cc-auction-pdp__notify.is-open .cc-auction-pdp__notify-form    { display: block; }

.cc-auction-pdp__notify-label {
    display: block;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    color: rgba(32, 63, 67, 0.55);
    margin-bottom: 8px;
}
.cc-auction-pdp__notify-row {
    display: flex;
    gap: 0;
}
.cc-auction-pdp__notify-input {
    flex: 1;
    min-width: 0;
    height: 56px;
    padding: 0 18px;
    border: 1px solid var(--color-primary, #203f43);
    background: #fff;
    color: var(--color-primary, #203f43);
    font-family: var(--font-body, 'Manrope', sans-serif);
    font-size: 14px;
    letter-spacing: 0.04em;
    border-right: 0;
}
.cc-auction-pdp__notify-input:focus {
    outline: 2px solid var(--color-accent, #facb58);
    outline-offset: -1px;
}
.cc-auction-pdp__notify-submit {
    width: 160px;
    flex-shrink: 0;
}

.cc-auction-pdp__notify-hint {
    font-size: 12.5px;
    line-height: 1.55;
    margin: 12px 0 0;
    color: rgba(32, 63, 67, 0.7);
}
.cc-auction-pdp__notify-hint strong {
    color: var(--color-primary, #203f43);
    font-weight: 600;
}

.cc-auction-pdp__notify-message {
    font-size: 12px;
    line-height: 1.5;
    margin: 12px 0 0;
    color: var(--color-primary, #203f43);
    min-height: 1.5em;
}
.cc-auction-pdp__notify-message.is-success {
    color: #15724b;
}
.cc-auction-pdp__notify-message.is-error {
    color: #b3261e;
}

@media (max-width: 560px) {
    .cc-auction-pdp__notify-row { flex-direction: column; gap: 12px; }
    .cc-auction-pdp__notify-input { border-right: 1px solid var(--color-primary, #203f43); }
    .cc-auction-pdp__notify-submit { width: 100%; }
}

.cc-auction-pdp__ended {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: #707978;
    text-align: center;
    padding: 24px 0;
}

/* ---------- Artisan Section ---------- */
.cc-auction-artisan {
    background-color: var(--color-sky, #CAE6EF);
}

.cc-auction-artisan__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
/* Stack the artisan portrait above the bio on tablet/mobile — the 2-col grid
   had no responsive override, so on phones the bio was crushed into a ~150px
   column and the portrait shrank to a sliver. */
@media (max-width: 1024px) {
    .cc-auction-artisan__grid { gap: 48px; }
}
@media (max-width: 768px) {
    .cc-auction-artisan__grid { grid-template-columns: 1fr; gap: 32px; }
}

.cc-auction-artisan__portrait {
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26,28,27,0.06);
}

.cc-auction-artisan__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-auction-artisan__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.6px;
    color: var(--color-primary, #57a5b1);
    display: block;
    margin-bottom: 16px;
}

.cc-auction-artisan__name {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: #203f43;
    margin-bottom: 24px;
}

.cc-auction-artisan__bio {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: #3f4848;
    line-height: 29.25px;
    margin-bottom: 32px;
}

.cc-auction-artisan__link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.2px;
    color: #203f43;
    text-decoration: none;
    border-bottom: 1px solid rgba(32,63,67,0.2);
    padding-bottom: 9px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Signature Pairings ---------- */
.cc-auction-pairings__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
}

.cc-auction-pairings__title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    color: #203f43;
    margin-bottom: 16px;
}

.cc-auction-pairings__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: #3f4848;
}

.cc-auction-pairings__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cc-auction-pairings__image {
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #eeeeec;
    margin-bottom: 24px;
}

.cc-auction-pairings__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-auction-pairings__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cc-auction-pairings__cat {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #707978;
    display: block;
    margin-bottom: 4px;
}

.cc-auction-pairings__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

.cc-auction-pairings__name a {
    color: #203f43;
    text-decoration: none;
}

.cc-auction-pairings__price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #203f43;
}

/* ---------- Bid Form Inline ---------- */
.cc-auction-pdp__bid-form {
    margin-top: 8px;
}

/* Bid mode tabs (Single Bid / Set Max Bid) */
.cc-bid-mode-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    background: rgba(32,63,67,0.06);
    border-radius: 6px;
    padding: 4px;
}

.cc-bid-mode-tab {
    flex: 1;
    padding: 10px 14px;
    background: transparent;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #707978;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.cc-bid-mode-tab:hover {
    color: #203f43;
}

.cc-bid-mode-tab.is-active {
    background: #ffffff;
    color: #203f43;
    box-shadow: 0 1px 3px rgba(32,63,67,0.12);
    font-weight: 600;
}

.cc-bid-mode-panel[hidden] {
    display: none !important;
}

.cc-bid-proxy-explainer {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: #707978;
    line-height: 1.5;
    margin: 6px 0 12px;
    padding: 10px 12px;
    background: rgba(249,199,96,0.08);
    border-left: 2px solid #facb58;
}

.cc-bid-proxy-current {
    font-family: var(--font-body);
    font-size: 12px;
    color: #203f43;
    margin: 8px 0 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cc-bid-proxy-cancel {
    background: transparent;
    border: none;
    padding: 0;
    color: #ba1a1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-family: inherit;
    font-size: 11px;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.cc-bid-proxy-cancel:hover {
    color: #8a1414;
}

/* Bid retraction banner */
.cc-bid-retraction {
    margin-top: 16px;
    padding: 12px 14px;
    background: rgba(249,199,96,0.10);
    border-left: 3px solid #facb58;
    border-radius: 0;
    font-family: var(--font-body);
}

.cc-bid-retraction__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cc-bid-retraction__text {
    font-size: 12px;
    color: #203f43;
    line-height: 1.5;
}

.cc-bid-retraction__countdown {
    font-weight: 600;
    color: #ba1a1a;
    font-variant-numeric: tabular-nums;
    margin-left: 4px;
}

.cc-bid-retraction__btn {
    background: transparent;
    border: 1px solid rgba(186,26,26,0.5);
    color: #ba1a1a;
    padding: 6px 14px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.cc-bid-retraction__btn:hover {
    background: #ba1a1a;
    color: #fff;
}

.cc-bid-retraction__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cc-bid-retraction__msg {
    font-size: 11px;
    color: #203f43;
    margin-top: 8px;
}

.cc-bid-retraction.is-expired,
.cc-bid-retraction.is-completed {
    display: none;
}

/* High-value bid 2FA modal */
.cc-bid-2fa-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.cc-bid-2fa-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cc-bid-2fa-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 25, 25, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cc-bid-2fa-modal__panel {
    position: relative;
    margin: 6vh auto 0;
    max-width: 440px;
    width: calc(100% - 32px);
    background: #fff;
    border-radius: 8px;
    padding: 36px 32px 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.cc-bid-2fa-modal.is-visible .cc-bid-2fa-modal__panel {
    transform: translateY(0);
}

.cc-bid-2fa-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 26px;
    line-height: 1;
    color: #707978;
    cursor: pointer;
    padding: 4px 8px;
}

.cc-bid-2fa-modal__close:hover { color: #203f43; }

.cc-bid-2fa-modal__icon {
    color: #203f43;
    margin-bottom: 12px;
}

.cc-bid-2fa-modal__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: #203f43;
    margin: 0 0 10px;
}

.cc-bid-2fa-modal__text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #4a5251;
    line-height: 1.55;
    margin: 0 0 20px;
}

.cc-bid-2fa-modal__text strong {
    color: #203f43;
    font-weight: 600;
}

.cc-bid-2fa-modal__input {
    width: 100%;
    max-width: 240px;
    padding: 14px 16px;
    border: 1.5px solid rgba(32,63,67,0.2);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 6px;
    color: #203f43;
    margin: 0 auto 8px;
    display: block;
    transition: border-color 0.2s ease;
}

.cc-bid-2fa-modal__input:focus {
    outline: none;
    border-color: #203f43;
}

.cc-bid-2fa-modal__error {
    color: #ba1a1a;
    font-size: 12px;
    min-height: 18px;
    margin-bottom: 14px;
}

.cc-bid-2fa-modal__actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cc-bid-2fa-modal__resend {
    background: transparent;
    border: none;
    color: #203f43;
    font-family: var(--font-body);
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    padding: 8px 12px;
}

.cc-bid-2fa-modal__resend:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cc-bid-2fa-modal__submit {
    background: #203f43;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cc-bid-2fa-modal__submit:hover {
    background: #152a2d;
}

.cc-auction-pdp__bid-input-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #707978;
    display: block;
    margin-bottom: 12px;
}

.cc-auction-pdp__bid-input-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.cc-auction-pdp__bid-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    background: white;
}

.cc-auction-pdp__bid-currency {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: #707978;
    padding: 0 12px;
    border-right: 1px solid var(--color-border-light);
}

.cc-auction-pdp__bid-input {
    flex: 1;
    border: none;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    color: #203f43;
    padding: 14px 16px;
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}

.cc-auction-pdp__bid-input::-webkit-inner-spin-button,
.cc-auction-pdp__bid-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.cc-auction-pdp__bid-step-btns {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cc-auction-pdp__bid-step {
    width: 36px;
    flex: 1;
    border: 1px solid var(--color-border);
    background: white;
    font-size: 16px;
    font-weight: 300;
    color: #203f43;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.cc-auction-pdp__bid-step:hover {
    background: #203f43;
    color: white;
    border-color: #203f43;
}

.cc-auction-pdp__bid-min-note {
    font-size: 11px;
    color: #707978;
    margin-bottom: 16px;
}

.cc-auction-pdp__place-bid-btn {
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cc-auction-pdp__bid-msg {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}

.cc-auction-pdp__bid-msg--success {
    color: #27AE60;
}

.cc-auction-pdp__bid-msg--error {
    color: #C0392B;
}

/* Bid count below amount */
.cc-auction-pdp__bid-count {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    color: #707978;
    margin-top: 4px;
}

/* Buyer's premium preview — shown under current bid when premium is enabled
   in Auction Settings. Soft gold-cream tint to read as fine-print, not
   distract from the bid itself. */
.cc-auction-pdp__premium-preview {
    display: block;
    margin-top: 6px;
    padding: 6px 10px;
    background: rgba(250, 203, 88, 0.14);
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #7a5900;
    line-height: 1.5;
}

/* ---------- Bid History in Card ---------- */
.cc-auction-pdp__bid-history {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(32, 63, 67, 0.08);
}

.cc-auction-pdp__bid-history-title {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #707978;
    display: block;
    margin-bottom: 12px;
}

.cc-auction-pdp__bid-history-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.cc-auction-pdp__bid-history-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(32, 63, 67, 0.05);
    font-size: 13px;
}

.cc-auction-pdp__bid-history-bidder {
    color: #3f4848;
    flex: 1;
}

.cc-auction-pdp__bid-history-amount {
    font-weight: 600;
    color: #203f43;
}

.cc-auction-pdp__bid-history-time {
    font-size: 11px;
    color: #a0a0a0;
}

/* ---------- Old auction hero — keep for backwards compat ---------- */
.cc-auction-hero {
    background-color: var(--color-primary-dark);
}

.cc-auction-hero__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.cc-auction-hero__image {
    overflow: hidden;
    background-color: #152a2d;
}

.cc-auction-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.cc-auction-hero__panel {
    padding: clamp(32px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    color: #fffcfb;
}

.cc-auction-hero__lot {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #facb58;
    border-left: 3px solid #facb58;
    padding-left: 16px;
}

.cc-auction-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 400;
    color: #fffcfb;
    line-height: 1;
}

.cc-auction-hero__title em {
    font-style: italic;
}

.cc-auction-hero__desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    color: rgba(250, 249, 247, 0.65);
    line-height: 1.6;
    max-width: 45ch;
}

/* Auction Bid Info */
.cc-auction-hero__bid-info {
    padding: 24px 0;
    border-top: 1px solid rgba(250, 249, 247, 0.1);
}

.cc-auction-hero__bid-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 249, 247, 0.5);
    display: block;
    margin-bottom: 8px;
}

.cc-auction-hero__bid-amount {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: #fffcfb;
    display: block;
    margin-bottom: 8px;
}

.cc-auction-hero__bid-count {
    font-size: 14px;
    color: rgba(250, 249, 247, 0.4);
}

/* Countdown */
.cc-auction-hero__countdown .cc-countdown__number {
    color: #fffcfb;
    font-weight: 400;
}

.cc-auction-hero__countdown .cc-countdown__text {
    color: rgba(250, 249, 247, 0.4);
}

/* Bid Form */
.cc-bid-form__input-group {
    display: flex;
    gap: 8px;
}

.cc-bid-form__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(250, 249, 247, 0.2);
    color: #fffcfb;
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 400;
    padding: 16px;
}

.cc-bid-form__input:focus {
    border-color: #facb58;
    outline: none;
}

.cc-bid-form__input::placeholder {
    color: rgba(250, 249, 247, 0.25);
}

.cc-bid-form__submit {
    background: #facb58;
    color: #203f43;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
}

.cc-bid-form__min {
    font-size: 12px;
    color: rgba(250, 249, 247, 0.3);
    margin-top: 8px;
}

.cc-auction-hero__ended {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    color: rgba(250, 249, 247, 0.4);
}

/* Bid History */
.cc-auction-hero__history {
    padding-top: 24px;
    border-top: 1px solid rgba(250, 249, 247, 0.08);
}

.cc-auction-hero__history-title {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 249, 247, 0.35);
    margin-bottom: 16px;
}

.cc-auction-hero__history-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cc-auction-hero__history-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: rgba(250, 249, 247, 0.5);
    padding: 10px 0;
    border-bottom: 1px solid rgba(250, 249, 247, 0.05);
}

.cc-auction-hero__history-amount {
    font-weight: 500;
    color: #fffcfb;
    margin-left: auto;
}

.cc-auction-hero__history-time {
    font-size: 12px;
    color: rgba(250, 249, 247, 0.25);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .cc-pdp__layout,
    .cc-auction-hero__layout {
        grid-template-columns: 1fr;
    }

    .cc-pdp__main-image {
        min-height: 50vh;
        max-height: 60vh;
    }

    .cc-pdp__title {
        font-size: 60px;
        line-height: 60px;
    }

    .cc-pdp-curation__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cc-pdp__title {
        font-size: 48px;
        line-height: 48px;
    }

    .cc-pdp__tabs {
        overflow-x: auto;
    }

    .cc-pdp__actions {
        flex-direction: column;
    }

    .cc-bid-form__input-group {
        flex-direction: column;
    }

    .cc-pdp-tailor__card {
        grid-template-columns: 1fr;
        text-align: center;
        /* Drop the 24px offset shadow on small screens — it overflows the 16px
           gutter and reads as a clipped phantom rectangle. Keep the hairline. */
        box-shadow: 0 1px 0 0 rgba(32, 63, 67, 0.04);
    }

    .cc-pdp-tailor__portrait-wrap {
        margin: 0 auto;
    }

    .cc-pdp-curation__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PDP DESCRIPTION FALLBACK
   Rendered when a product has no storytelling blocks configured. Mirrors
   the text_block storytelling layout for visual consistency.
   ========================================================================== */
.cc-pdp-description {
    background: var(--bg-light, #fffcfb);
    padding: var(--space-3xl, 64px) 0;
}
.cc-pdp-description__body {
    max-width: 70ch;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.85;
    color: var(--color-text-soft, #4a4a4a);
}
.cc-pdp-description__body p {
    margin: 0 0 18px;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}
.cc-pdp-description__body p:last-child { margin-bottom: 0; }
@media (max-width: 768px) {
    .cc-pdp-description { padding: 48px 0; }
    .cc-pdp-description__body { font-size: 15px; padding: 0 var(--container-padding, 20px); }
}

/* Universal make-by-hand + shipping panel — renders below storytelling on
   every PDP so we never duplicate it inside individual product blocks. */
.cc-pdp-makeship {
    padding: 88px 0;
    background: var(--color-sky, #CAE6EF);
    border-top: 1px solid rgba(87, 165, 177, 0.25);
    border-bottom: 1px solid rgba(87, 165, 177, 0.25);
}
.cc-pdp-makeship__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--container-padding, 32px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.cc-pdp-makeship__label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-primary, #57a5b1);
    margin-bottom: 14px;
}
.cc-pdp-makeship__heading {
    font-family: var(--font-heading, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 28px;
    line-height: 1.2;
    color: var(--color-primary-dark, #203f43);
    margin: 0 0 14px;
    font-weight: 400;
}
.cc-pdp-makeship__col p {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
    margin: 0;
    max-width: 42ch;
}
@media (max-width: 768px) {
    .cc-pdp-makeship { padding: 56px 0; }
    .cc-pdp-makeship__inner { grid-template-columns: 1fr; gap: 40px; }
    .cc-pdp-makeship__heading { font-size: 24px; }
    /* Center the 42ch paragraph block so the stacked column isn't pinned left
       with empty space on the right at tablet widths. */
    .cc-pdp-makeship__col p { margin-left: auto; margin-right: auto; }
}
