
.plp {
    background: var(--white);
}

/* Breadcrumb */
.plp-breadcrumb {
    padding-top: 20px;
    padding-bottom: 8px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    color: var(--neutral-500);
}

.breadcrumb a { transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--neutral-800); }
.breadcrumb-sep { opacity: .4; }
.breadcrumb-current { color: var(--neutral-800); }

/* Page Header */
.plp-header {
    padding: 2px 0 20px;
}

.plp-header .container {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.plp-title {
    font-family: var(--font-display);
    font-size: 1.25rem !important;
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.1;
	padding-top:10px !important;
}

.plp-count {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--neutral-500);
}

/* =========================================
   PRODUCT PAGE — PDP
   ========================================= */

/* =========================================
   PDP Main Layout — full-width two-column
   ========================================= */

.pdp-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: calc(100vh - var(--nav-h-desktop));
    align-items: start;
}

/* =========================================
   Gallery Column (left)
   ========================================= */

.pdp-gallery {
    position: relative;
}

.pdp-slider {
    position: sticky;
    top: var(--nav-h-desktop);
    height: calc(100vh - var(--nav-h-desktop));
    overflow: hidden;           /* clips the track as it translates */
    display: flex;
    flex-direction: column;
    background: var(--neutral-100);
}

/* Slide track — overflow MUST be on the parent (.pdp-slider), not here */
.pdp-slider-track {
    flex: 1;
    display: flex;
    /* NO overflow:hidden here — that would clip translateX */
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 0; /* allows flex child to shrink */
}

.pdp-slide {
	background: var(--white);
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    padding: 0px 0px 141px; /* extra bottom padding keeps image clear of controls */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.pdp-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Zoom button — absolute bottom-left */
.pdp-zoom-btn {
    position: absolute;
    bottom: 75px;
    left: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--neutral-500);
    background: transparent;
    color: var(--neutral-700);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s var(--ease),
                background .3s var(--ease),
                color .3s var(--ease);
}

.pdp-zoom-btn:hover {
    border-color: var(--neutral-800);
    background: var(--neutral-800);
    color: var(--white);
}

/* Prev/Next arrows — absolute bottom center */
.pdp-slider-arrows {
    position: absolute;
    bottom: 75px;
    left: 95%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
}

.pdp-arrow-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--neutral-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s var(--ease);
}

.pdp-arrow-btn:hover {
    color: var(--neutral-900);
}

/* =========================================
   Info Column (right)
   ========================================= */

.pdp-info {
    background: var(--white);
    /* min-height: calc(100vh - var(--nav-h-desktop)); */
    display: flex;
    align-items: center;
    padding: 2px 0 0 25px;
}

.pdp-info-inner {
    width: 100%;
    /* max-width: 520px; */
}

/* About section */
.pdp-about {
    margin-bottom: 15px;
}

.pdp-about-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--neutral-900);
    margin-bottom: 20px;
}

.pdp-about-text {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--neutral-600);
    text-align: justify;
}

/* Download / action rows */
.pdp-links {
    border-top: 1px solid var(--neutral-300);
}

.pdp-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid var(--neutral-300);
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.005em;
    color: var(--neutral-800);
    text-decoration: none;
    transition: color .3s var(--ease);
}

.pdp-link-row:hover {
    color: var(--neutral-500);
}

.pdp-link-row svg {
    flex-shrink: 0;
    color: var(--neutral-500);
    transition: color .3s var(--ease);
}

.pdp-link-row:hover svg {
    color: var(--neutral-800);
}

.pdp-tag {
    color: var(--neutral-500);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    margin-left: 6px;
}

/* =========================================
   Lightbox
   ========================================= */
/* Product Image Popup - white background */
.pdp-lightbox {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}

.pdp-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.pdp-lightbox-img {
    max-width: 78vw;
    max-height: 82vh;
    object-fit: contain;
}

.pdp-lightbox-close {
    position: fixed;
    top: 28px;
    right: 32px;
    font-size: 42px;
    line-height: 1;
    color: #111;
    background: none;
    border: none;
    z-index: 10001;
}

.pdp-lightbox-nav {
    position: relative;
    /* top: 48%; */
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #111;
    font-size: 30px;
    z-index: 10001;
}

.pdp-lightbox-prev {
    left: 42px;
}

.pdp-lightbox-next {
    right: 42px;
}

@media (max-width: 768px) {

    .pdp-lightbox-nav {
        top: 48%;
    }

    .pdp-lightbox-img {
        max-width: 88vw;
        max-height: 75vh;
    }

    .pdp-lightbox-close {
        top: 18px;
        right: 20px;
        font-size: 34px;
    }

    .pdp-lightbox-prev {
        left: 16px;
    }

    .pdp-lightbox-next {
        right: 16px;
    }
}
/* =========================================
   Full Bleed Gallery
   ========================================= */

.pdp-fullbleed {
    background: var(--neutral-100);
}

.pdp-fullbleed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.pdp-fullbleed-item {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.pdp-fullbleed-item img {
    transition: transform .8s var(--ease);
}

.pdp-fullbleed-item:hover img {
    transform: scale(1.03);
}

.pdp-fullbleed-single {
    aspect-ratio: 21 / 9;
    overflow: hidden;
}

.pdp-fullbleed-single img {
    transition: transform .8s var(--ease);
}

.pdp-fullbleed-single:hover img {
    transform: scale(1.02);
}

/* =========================================
   Editorial
   ========================================= */

.pdp-editorial {
    padding: 120px 0;
    text-align: center;
    background: var(--white);
}

.pdp-editorial-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.pdp-editorial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-600);
    max-width: 680px;
    margin: 0 auto;
}

/* =========================================
   Designer Section
   ========================================= */

.pdp-designer-section {
    padding: 100px 0;
    background: var(--neutral-100);
}

.pdp-designer-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
}

.pdp-designer-img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.pdp-designer-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-500);
    margin-bottom: 12px;
}

.pdp-designer-name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.pdp-designer-bio {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 28px;
    max-width: 520px;
}

/* =========================================
   Related Products
   ========================================= */

.pdp-related {
    padding: 100px 0 80px;
    background: var(--white);
}

.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    padding: 0 40px;
}

.pdp-related-card {
    display: block;
    overflow: hidden;
    background: var(--neutral-100);
}

.pdp-related-card__img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.pdp-related-card__img img {
    transition: transform .8s var(--ease);
}

.pdp-related-card:hover .pdp-related-card__img img {
    transform: scale(1.04);
}

.pdp-related-card__body {
    padding: 20px 24px 28px;
}

.pdp-related-card__cat {
    display: block;
    font-family: var(--font-display);
    font-size: 0.5625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper-500);
    margin-bottom: 6px;
}

.pdp-related-card__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.pdp-related-card__designer {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--neutral-500);
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 1024px) {
    .pdp-layout {
        grid-template-columns: 1fr 1fr;
    }

    .pdp-info {
        padding: 60px 48px;
    }

    .pdp-designer-layout {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }

    .pdp-related-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    /* .pdp {
        padding-top: var(--nav-h-mobile);
    } */

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

    /* Mobile product slider image matches the Products page card crop */
    .pdp-slider {
        position: relative;
        top: 0;
        width: 100%;
        height: calc(((100vw - 40px) * 9 / 8) + 42px);
        min-height: 0;
        background: var(--neutral-100);
    }

    .pdp-slide {
        padding: 0 0 42px 0;
    }

    .pdp-slide img {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        object-fit: cover;
        object-position: center center;
    }

    .pdp-info {
        position: static;
        min-height: unset;
        padding: 10px 0px;
        align-items: flex-start;
    }

    .pdp-info-inner {
        max-width: 100%;
    }

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

    .pdp-fullbleed-item {
        aspect-ratio: 16 / 9;
    }

    .pdp-designer-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pdp-designer-img {
        max-width: 280px;
    }

    .pdp-editorial {
        padding: 80px 0;
    }

    .pdp-designer-section {
        padding: 60px 0;
    }

    .pdp-related {
        padding: 60px 0;
    }

    .pdp-related-grid {
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pdp-related-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Accordion
   ========================================= */

.pdp-accordion {
    border-top: 1px solid var(--neutral-300);
}

.pdp-accordion-item {
    border-bottom: 1px solid var(--neutral-300);
}

.pdp-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--neutral-800);
    cursor: pointer;
    transition: color .3s var(--ease);
}

.pdp-accordion-header:hover {
    color: var(--neutral-600);
}

.pdp-accordion-icon {
    transition: transform .3s var(--ease);
}

.pdp-accordion-item.is-open .pdp-accordion-icon {
    transform: rotate(180deg);
}

.pdp-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    padding: 0;
}

.pdp-accordion-item.is-open .pdp-accordion-body {
    max-height: 400px;
    padding: 0 0 20px;
}

.pdp-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.pdp-detail-label {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.pdp-detail-value {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: var(--neutral-800);
    text-align: right;
}

.pdp-customize-text {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 16px;
}

@media (max-width: 768px) {

    .pdp-zoom-btn {
        bottom: 0px;
        left: 0px;
    }

    .pdp-slider-arrows {
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        gap: 40px;
    }

    .pdp-actions .btn-dark,
    .pdp-actions .btn-outline-dark {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}


/* Actions */
.pdp-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Quantity + Enquiry actions */
.pdp-enquiry-actions {
    align-items: center;
    width: 100%;
    max-width: 460px;
}

.pdp-qty-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 160px;
    height: 58px;
    border: 1px solid var(--neutral-300);
    background: #fff;
    box-sizing: border-box;
    flex: 0 0 160px;
}

.pdp-qty-btn {
    width: 48px;
    height: 100%;
    border: 0;
    background: transparent;
    color: var(--neutral-900);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
}

.pdp-qty-value {
    min-width: 28px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.pdp-enquiry-actions .pdp-enquiry-btn {
    height: 58px;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex: 1 1 auto;
    min-width: 190px;
    text-align: center;
}

@media (max-width: 768px) {
    .pdp-enquiry-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        width: 100%;
        max-width: none;
        margin-top: 22px;
        box-sizing: border-box;
    }

    .pdp-qty-control {
        width: 100%;
        min-width: 0;
        height: 56px;
        flex: initial;
    }

    .pdp-qty-btn {
        width: 42px;
        font-size: 1.15rem;
    }

    .pdp-enquiry-actions .pdp-enquiry-btn {
        width: 100%;
        min-width: 0;
        height: 56px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }
}

.price {
    gap: 12px;
    margin-top: -20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    font-family: var(--font-display);
    font-size: 1.0rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--neutral-800);
    cursor: pointer;
    transition: color .3s var(--ease);
}