﻿.alz-pd {
    position: relative;
    padding: 24px 0 68px;
    background: radial-gradient(circle at 50% 0%, rgba(214,168,79,.08), transparent 34%), linear-gradient(180deg, #f5f6f8 0%, #eef1f5 48%, #f7f8fa 100%);
    color: var(--alz-text, #111827);
    font-family: Manrope, Arial, Helvetica, sans-serif;
}

    .alz-pd .alz-container {
        width: min(1560px, calc(100% - 48px));
        margin: 0 auto;
    }

.alz-pd__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 12px;
    color: var(--alz-text-soft, rgba(17,24,39,.56));
    letter-spacing: .025em;
    text-transform: uppercase;
}

    .alz-pd__breadcrumb a {
        color: var(--alz-text-soft, rgba(17,24,39,.56));
        text-decoration: none;
        transition: color .2s ease;
    }

        .alz-pd__breadcrumb a:hover {
            color: #9b6a24;
        }

    .alz-pd__breadcrumb strong {
        max-width: 460px;
        color: var(--alz-text, #111827);
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.alz-pd__hero {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 30px;
    align-items: start;
}

.alz-pd__gallery {
    min-width: 0;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.alz-pd__mainMedia {
    position: relative;
    display: block;
    width: 100%;
    grid-column: 2;
    padding: 0;
    border: 1px solid rgba(214,168,79,.24);
    border-radius: 24px;
    background: radial-gradient(circle at 50% 12%, rgba(241,213,138,.22), transparent 32%), linear-gradient(145deg, #edf1f6 0%, #dfe5ed 100%);
    overflow: hidden;
    cursor: zoom-in;
    box-shadow: 0 18px 46px rgba(155,106,36,.10);
}

    .alz-pd__mainMedia::before {
        content: "";
        position: absolute;
        left: 13%;
        right: 13%;
        bottom: 8%;
        height: 14%;
        border-radius: 999px;
        background: radial-gradient(ellipse at center, rgba(155,106,36,.22), rgba(15,23,42,0) 70%);
        filter: blur(6px);
        opacity: .56;
        z-index: 1;
        pointer-events: none;
    }

    .alz-pd__mainMedia img {
        position: relative;
        z-index: 2;
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

.alz-pd__saleBadge {
    position: absolute;
    top: 15px;
    left: 15px;
    min-width: 56px;
    height: 32px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
    color: #111827;
    border: 1px solid rgba(241,213,138,.72);
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(155,106,36,.22);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    z-index: 5;
}

.alz-pd__thumbGrid {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    max-height: 680px;
    overflow: auto;
    padding-right: 2px;
    scrollbar-width: thin;
}

.alz-pd__thumb {
    position: relative;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 14px;
    background: linear-gradient(145deg, #eef2f6 0%, #dfe4eb 100%);
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15,23,42,.045);
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .alz-pd__thumb::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        box-shadow: inset 0 0 0 0 rgba(214,168,79,0);
        transition: box-shadow .2s ease;
        pointer-events: none;
    }

    .alz-pd__thumb.is-active {
        border-color: rgba(214,168,79,.72);
        box-shadow: 0 10px 24px rgba(155,106,36,.14);
    }

        .alz-pd__thumb.is-active::after {
            box-shadow: inset 0 0 0 2px #d6a84f;
        }

    .alz-pd__thumb:hover {
        border-color: rgba(214,168,79,.46);
    }

    .alz-pd__thumb img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

.alz-pd__summary {
    position: sticky;
    top: 104px;
    max-width: 780px;
    padding: 24px;
    border: 1px solid rgba(214,168,79,.22);
    border-radius: 24px;
    background: radial-gradient(circle at 88% 0%, rgba(214,168,79,.08), transparent 32%), rgba(255,255,255,.94);
    box-shadow: 0 18px 46px rgba(155,106,36,.09);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.alz-pd__categoryTag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(214,168,79,.28);
    border-radius: 999px;
    color: #9b6a24;
    text-decoration: none;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    background: rgba(255,255,255,.92);
    box-shadow: 0 6px 16px rgba(155,106,36,.06);
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

    .alz-pd__categoryTag:hover {
        color: #111827;
        border-color: rgba(214,168,79,.56);
        background: rgba(241,213,138,.18);
    }

.alz-pd__title,
.alz-pd__sectionTitle {
    margin: 0;
    color: var(--alz-text, #111827);
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: -.025em;
}

.alz-pd__title {
    font-size: clamp(26px, 2.25vw, 38px);
    line-height: 1.08;
    text-transform: uppercase;
}

.alz-pd__rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.alz-pd__stars,
.alz-pd__reviewStars,
.alz-pd__reviewItemStars {
    display: flex;
    align-items: center;
    gap: 2px;
}

    .alz-pd__stars span,
    .alz-pd__reviewStars span,
    .alz-pd__reviewItemStars span {
        color: #d1d5db;
        font-size: 14px;
        line-height: 1;
    }

        .alz-pd__stars span.is-on,
        .alz-pd__reviewStars span.is-on,
        .alz-pd__reviewItemStars span:not(.is-off) {
            color: #d6a84f;
            text-shadow: 0 5px 14px rgba(214,168,79,.20);
        }

        .alz-pd__reviewItemStars span.is-off {
            color: #d1d5db;
        }

.alz-pd__ratingText,
.alz-pd__reviewSummaryText {
    font-size: 12px;
    color: var(--alz-text-soft, rgba(17,24,39,.58));
}

    .alz-pd__ratingText span,
    .alz-pd__reviewSummaryText span {
        margin-left: 7px;
    }

.alz-pd__priceRow {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
    padding: 15px 0;
    border-top: 1px solid rgba(214,168,79,.20);
    border-bottom: 1px solid rgba(214,168,79,.20);
}

.alz-pd__priceNow {
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    color: #9b6a24;
    font-weight: 900;
    letter-spacing: -.025em;
}

.alz-pd__priceOld {
    font-size: 15px;
    color: var(--alz-text-soft, rgba(17,24,39,.46));
    text-decoration: line-through;
    transform: translateY(-4px);
}

.alz-pd__shortDesc {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--alz-text-soft, rgba(17,24,39,.66));
}

    .alz-pd__shortDesc > *:first-child {
        margin-top: 0;
    }

    .alz-pd__shortDesc > *:last-child {
        margin-bottom: 0;
    }

.alz-pd__optionBlock {
    margin-top: 20px;
}

.alz-pd__optionLabel,
.alz-pd__formLabel {
    display: block;
    margin-bottom: 9px;
    font-size: 11px;
    color: var(--alz-text, #111827);
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.alz-pd__variantList {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.alz-pd__variantBtn {
    min-width: 68px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(214,168,79,.22);
    border-radius: 999px;
    background: #ffffff;
    color: var(--alz-text, #111827);
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15,23,42,.04);
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

    .alz-pd__variantBtn:hover {
        border-color: rgba(214,168,79,.52);
        box-shadow: 0 8px 18px rgba(155,106,36,.08);
    }

    .alz-pd__variantBtn.is-active {
        background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
        border-color: rgba(214,168,79,.64);
        color: #111827;
        box-shadow: 0 10px 24px rgba(155,106,36,.18);
    }

    .alz-pd__variantBtn:disabled {
        opacity: .38;
        cursor: default;
        box-shadow: none;
    }

.alz-pd__selectedVariant {
    margin-top: 18px;
    font-size: 13px;
    color: var(--alz-text-soft, rgba(17,24,39,.60));
}

.alz-pd__stockRow {
    margin-top: 15px;
}

.alz-pd__stock {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px 0 31px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(214,168,79,.22);
    background: #fff;
}

    .alz-pd__stock::before {
        content: "";
        position: absolute;
        left: 13px;
        width: 7px;
        height: 7px;
        border-radius: 999px;
        background: currentColor;
    }

.alz-pd__stock--ok {
    color: #166534;
}

.alz-pd__stock--bad {
    color: #991b1b;
    background: #fef2f2;
}

.alz-pd__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.alz-pd__qty {
    width: 116px;
    flex: 0 0 116px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    min-height: 48px;
    border: 1px solid rgba(214,168,79,.24);
    border-radius: 999px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(15,23,42,.045);
}

.alz-pd__qtyBtn {
    border: 0;
    background: transparent;
    color: var(--alz-text, #111827);
    font-size: 20px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

    .alz-pd__qtyBtn:hover {
        background: rgba(214,168,79,.12);
        color: #9b6a24;
    }

.alz-pd__qtyInput {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--alz-text, #111827);
    outline: none;
}

.alz-pd__addToCart,
.alz-pd__ghostBtn,
.alz-pd__formSubmit {
    min-height: 48px;
    border: 1px solid rgba(214,168,79,.42);
    border-radius: 999px;
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.alz-pd__addToCart,
.alz-pd__formSubmit {
    background: linear-gradient(135deg, #9b6a24 0%, #d6a84f 54%, #f1d58a 100%);
    color: #111827;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .075em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(155,106,36,.20);
}

.alz-pd__addToCart {
    flex: 1 1 280px;
    max-width: 460px;
    padding: 0 24px;
}

    .alz-pd__addToCart:hover,
    .alz-pd__formSubmit:hover {
        background: linear-gradient(135deg, #805319 0%, #c79638 54%, #efd27d 100%);
        border-color: rgba(214,168,79,.72);
        box-shadow: 0 14px 30px rgba(155,106,36,.26);
    }

    .alz-pd__addToCart:disabled {
        opacity: .45;
        cursor: default;
        box-shadow: none;
    }

.alz-pd__ghostBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 138px;
    padding: 0 16px;
    background: #ffffff;
    color: var(--alz-text, #111827);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    border-color: rgba(214,168,79,.24);
    box-shadow: 0 8px 18px rgba(15,23,42,.04);
}

.alz-pd__ghostBtn--action {
    flex: 0 0 auto;
}

.alz-pd__ghostBtn:hover,
.alz-pd__ghostBtn.is-active {
    background: rgba(214,168,79,.12);
    border-color: rgba(214,168,79,.52);
    color: #9b6a24;
}

.alz-pd__subActions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.alz-pd__subActions--single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
}

.alz-pd__microFeatures {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.alz-pd__microFeature {
    min-height: 58px;
    padding: 12px 13px;
    border: 1px solid rgba(214,168,79,.20);
    border-radius: 16px;
    background: rgba(255,255,255,.86);
    color: var(--alz-text, #111827);
    box-shadow: 0 8px 18px rgba(155,106,36,.045);
}

.alz-pd__microTitle {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: .045em;
    text-transform: uppercase;
    color: var(--alz-text, #111827);
}

.alz-pd__microText {
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 500;
    color: var(--alz-text-soft, rgba(17,24,39,.62));
}

.alz-pd__contentGrid,
.alz-pd__lowerGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .88fr);
    gap: 28px;
    margin-top: 34px;
}

.alz-pd__storyCard,
.alz-pd__featureCard,
.alz-pd__reviewCard,
.alz-pd__completeCard {
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(214,168,79,.20);
    border-radius: 24px;
    background: radial-gradient(circle at 88% 0%, rgba(214,168,79,.06), transparent 30%), rgba(255,255,255,.92);
    box-shadow: 0 14px 36px rgba(155,106,36,.07);
}

.alz-pd__sectionTitle {
    margin-bottom: 18px;
    font-size: clamp(22px, 1.7vw, 30px);
    line-height: 1.12;
    text-transform: uppercase;
}

    .alz-pd__sectionTitle::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin-top: 10px;
        border-radius: 999px;
        background: linear-gradient(90deg, #9b6a24, #d6a84f, #f1d58a);
    }

.alz-pd__richText {
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
}

    .alz-pd__richText > *:first-child {
        margin-top: 0;
    }

    .alz-pd__richText > *:last-child {
        margin-bottom: 0;
    }

.alz-pd__specList {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.alz-pd__specRow {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(214,168,79,.14);
}

    .alz-pd__specRow:first-child {
        padding-top: 0;
    }

    .alz-pd__specRow:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

.alz-pd__specKey {
    font-size: 12px;
    color: var(--alz-text, #111827);
    font-weight: 900;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.alz-pd__specValue {
    font-size: 13px;
    line-height: 1.65;
    color: var(--alz-text-soft, rgba(17,24,39,.64));
}

.alz-pd__reviewSummary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 18px;
    background: rgba(214,168,79,.07);
}

.alz-pd__reviewList {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.alz-pd__reviewItem {
    padding: 16px;
    border: 1px solid rgba(214,168,79,.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(155,106,36,.045);
}

.alz-pd__reviewHead {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.alz-pd__reviewAuthor {
    font-size: 14px;
    color: var(--alz-text, #111827);
    font-weight: 900;
    margin-bottom: 5px;
}

.alz-pd__reviewDate {
    font-size: 12px;
    color: var(--alz-text-soft, rgba(17,24,39,.54));
    white-space: nowrap;
}

.alz-pd__reviewText {
    font-size: 13px;
    line-height: 1.75;
    color: #374151;
}

.alz-pd__reviewPhotos {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 11px;
}

.alz-pd__reviewPhoto {
    display: block;
    width: 76px;
    height: 76px;
    overflow: hidden;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 14px;
    background: #eef0f3;
}

    .alz-pd__reviewPhoto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.alz-pd__reviewFormWrap {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(214,168,79,.16);
}

.alz-pd__reviewForm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.alz-pd__formRow {
    display: flex;
    flex-direction: column;
}

.alz-pd__formSelect,
.alz-pd__formTextarea,
.alz-pd__formFile {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(214,168,79,.22);
    border-radius: 16px;
    background: #ffffff;
    color: var(--alz-text, #111827);
    font-size: 13px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    .alz-pd__formSelect:focus,
    .alz-pd__formTextarea:focus,
    .alz-pd__formFile:focus {
        border-color: rgba(214,168,79,.56);
        box-shadow: 0 0 0 4px rgba(214,168,79,.12);
    }

.alz-pd__formTextarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}

.alz-pd__formFile {
    min-height: auto;
    padding: 12px 14px;
}

.alz-pd__formSubmit {
    width: fit-content;
    min-width: 200px;
    padding: 0 20px;
}

.alz-pd__formAlert,
.alz-pd__reviewGate,
.alz-pd__empty {
    padding: 14px 15px;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 16px;
    background: #ffffff;
    color: var(--alz-text-soft, rgba(17,24,39,.62));
    font-size: 13px;
    line-height: 1.65;
}

    .alz-pd__formAlert + .alz-pd__formAlert {
        margin-top: 10px;
    }

.alz-pd__formAlert--success {
    color: #166534;
    background: #f0fdf4;
}

.alz-pd__formAlert--error {
    color: #991b1b;
    background: #fef2f2;
}

.alz-pd__formAlert--warn {
    color: #9a3412;
    background: #fff7ed;
}

.alz-pd__sideStack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.alz-pd__brandBanner {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    min-height: 250px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(214,168,79,.24);
    border-radius: 24px;
    background: #111827;
    box-shadow: 0 14px 36px rgba(155,106,36,.10);
}

.alz-pd__brandBannerMedia {
    position: relative;
    overflow: hidden;
}

    .alz-pd__brandBannerMedia::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(17,24,39,0) 0%, rgba(17,24,39,.20) 100%);
    }

    .alz-pd__brandBannerMedia img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.alz-pd__brandBannerOverlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    background: radial-gradient(circle at 12% 0%, rgba(241,213,138,.16), transparent 32%), linear-gradient(180deg, rgba(17,24,39,.98) 0%, rgba(3,7,18,.98) 100%);
    color: #fff;
}

.alz-pd__brandBannerBrand {
    margin-bottom: 10px;
    font-family: Manrope, Arial, Helvetica, sans-serif;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.025em;
    text-transform: uppercase;
    color: #fff;
}

    .alz-pd__brandBannerBrand::after {
        content: "";
        display: block;
        width: 42px;
        height: 2px;
        margin-top: 10px;
        border-radius: 999px;
        background: linear-gradient(90deg, #9b6a24, #d6a84f, #f1d58a);
    }

.alz-pd__brandBannerText {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.82);
}

.alz-pd__relatedGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.alz-pd__relatedCard {
    display: block;
    color: var(--alz-text, #111827);
    text-decoration: none;
}

.alz-pd__relatedMedia {
    position: relative;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 16px;
    background: radial-gradient(circle at 50% 0%, rgba(241,213,138,.18), transparent 34%), linear-gradient(145deg, #eef2f6 0%, #dfe4eb 100%);
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(155,106,36,.055);
}

    .alz-pd__relatedMedia img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        display: block;
    }

.alz-pd__relatedName {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.45;
    min-height: 35px;
    color: var(--alz-text, #111827);
    font-weight: 700;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.alz-pd__relatedPrice {
    margin-top: 4px;
    font-size: 13px;
    color: #9b6a24;
    font-weight: 900;
}

.alz-pd__relatedLoading {
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px solid rgba(214,168,79,.18);
    border-radius: 16px;
    background: #ffffff;
    color: var(--alz-text-soft, rgba(17,24,39,.62));
    font-size: 13px;
}

.alz-pd__lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

    .alz-pd__lightbox.is-open {
        display: block;
    }

.alz-pd__lightboxBackdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,7,18,.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.alz-pd__lightboxDialog {
    position: relative;
    width: min(92vw, 1100px);
    height: min(88vh, 800px);
    margin: 4vh auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alz-pd__lightboxImg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 26px 70px rgba(0,0,0,.32);
}

.alz-pd__lightboxClose,
.alz-pd__lightboxNav {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(241,213,138,.30);
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

    .alz-pd__lightboxClose:hover,
    .alz-pd__lightboxNav:hover {
        background: rgba(214,168,79,.18);
        border-color: rgba(241,213,138,.62);
        color: #f1d58a;
    }

.alz-pd__lightboxClose {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 26px;
}

.alz-pd__lightboxNav {
    top: 50%;
    width: 50px;
    height: 50px;
    transform: translateY(-50%);
    font-size: 32px;
    line-height: 1;
}

.alz-pd__lightboxNav--prev {
    left: 12px;
}

.alz-pd__lightboxNav--next {
    right: 12px;
}

@media (max-width: 1399.98px) {
    .alz-pd .alz-container {
        width: min(1360px, calc(100% - 40px));
    }

    .alz-pd__hero {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    }

    .alz-pd__relatedGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    .alz-pd .alz-container {
        width: min(100%, calc(100% - 40px));
    }

    .alz-pd__hero,
    .alz-pd__contentGrid,
    .alz-pd__lowerGrid {
        grid-template-columns: 1fr;
    }

    .alz-pd__gallery {
        width: 100%;
        max-width: 680px;
        margin: 0 auto;
    }

    .alz-pd__summary {
        position: static;
        max-width: none;
    }

    .alz-pd__brandBanner {
        min-height: 230px;
    }
}

@media (max-width: 991.98px) {
    .alz-pd__gallery {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .alz-pd__mainMedia {
        grid-column: auto;
    }

    .alz-pd__thumbGrid {
        grid-column: auto;
        grid-row: auto;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-height: none;
        overflow: visible;
        padding-right: 0;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .alz-pd {
        padding: 16px 0 56px;
    }

        .alz-pd .alz-container {
            width: min(100%, calc(100% - 28px));
        }

    .alz-pd__breadcrumb {
        gap: 6px;
        font-size: 11px;
        margin-bottom: 14px;
    }

        .alz-pd__breadcrumb strong {
            max-width: 220px;
        }

    .alz-pd__hero,
    .alz-pd__contentGrid,
    .alz-pd__lowerGrid {
        gap: 20px;
    }

    .alz-pd__gallery {
        max-width: 100%;
    }

    .alz-pd__mainMedia {
        border-radius: 20px;
    }

    .alz-pd__summary,
    .alz-pd__storyCard,
    .alz-pd__featureCard,
    .alz-pd__reviewCard,
    .alz-pd__completeCard {
        padding: 18px;
        border-radius: 20px;
    }

    .alz-pd__title {
        font-size: 25px;
        line-height: 1.12;
    }

    .alz-pd__priceNow {
        font-size: 25px;
    }

    .alz-pd__thumbGrid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 9px;
    }

    .alz-pd__thumb {
        border-radius: 13px;
    }

    .alz-pd__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .alz-pd__qty {
        width: 170px;
        max-width: 170px;
    }

    .alz-pd__addToCart {
        max-width: none;
        width: 100%;
    }

    .alz-pd__ghostBtn--action {
        width: 100%;
    }

    .alz-pd__subActions {
        grid-template-columns: 1fr;
    }

    .alz-pd__subActions--single {
        max-width: none;
    }

    .alz-pd__microFeatures {
        grid-template-columns: 1fr;
    }

    .alz-pd__specRow {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .alz-pd__reviewHead {
        flex-direction: column;
        gap: 6px;
    }

    .alz-pd__brandBanner {
        grid-template-columns: 1fr;
    }

    .alz-pd__brandBannerMedia {
        min-height: 200px;
    }

    .alz-pd__relatedGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .alz-pd__breadcrumb strong {
        max-width: 170px;
    }

    .alz-pd__title {
        font-size: 23px;
    }

    .alz-pd__priceNow {
        font-size: 24px;
    }

    .alz-pd__priceOld {
        font-size: 14px;
    }

    .alz-pd__thumbGrid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .alz-pd__relatedGrid {
        grid-template-columns: 1fr 1fr;
    }

    .alz-pd__variantList {
        gap: 8px;
    }

    .alz-pd__variantBtn {
        min-width: 0;
        width: auto;
        flex: 1 1 calc(50% - 8px);
    }

    .alz-pd__lightboxNav {
        width: 42px;
        height: 42px;
        font-size: 27px;
    }

    .alz-pd__lightboxClose {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 420px) {
    .alz-pd__summary,
    .alz-pd__storyCard,
    .alz-pd__featureCard,
    .alz-pd__reviewCard,
    .alz-pd__completeCard {
        padding: 16px;
    }

    .alz-pd__thumbGrid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .alz-pd__relatedGrid {
        grid-template-columns: 1fr;
    }

    .alz-pd__qty {
        max-width: 100%;
        width: 100%;
    }

    .alz-pd__variantBtn {
        flex-basis: 100%;
    }
}
