.search-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    box-sizing: border-box;
}

.search-lightbox[hidden] {
    display: none !important;
}

.search-lightbox-content {
    width: min(90vw, 1100px);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#search-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--main-border-radius);
    object-fit: contain;
    background: #111;
}

.search-lightbox-caption {
    color: #fff;
    font-size: var(--main-font-size-1);
}

.search-lightbox-thumbs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}

.search-lightbox-thumb {
    border: 1px solid transparent;
    background: transparent;
    padding: 0;
    cursor: pointer;
    border-radius: var(--main-border-radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.search-lightbox-thumb.active {
    border-color: #1f6bff;
}

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

.search-lightbox-close,
.search-lightbox-nav {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    border-radius: 999px;
}

.search-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    line-height: 1;
}

.search-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
}

.product-gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    box-sizing: border-box;
}

.product-gallery-item {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
    border-radius: var(--main-border-radius);
    overflow: hidden;
    background: #f4f4f4;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-page-shell {
    width: 100%;
    max-width: none;
    margin: 24px 0 56px;
    box-sizing: border-box;
}

.product-empty-state {
    padding: 48px 0 20px;
}

.product-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(280px, 1fr);
    gap: 32px;
    align-items: start;
}

.product-media-column,
.product-summary-column,
.product-recommendations-section {
    min-width: 0;
    width: 100%;
}

.product-media-stage {
    display: grid;
    gap: 16px;
    align-items: start;
}

.product-media-mobile-carousel {
    display: none;
}

.product-media-stage.has-thumbs {
    grid-template-columns: 96px minmax(0, 1fr);
}

.product-media-stage.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.product-media-thumbs {
    max-height: 760px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-right: 4px;
}

.product-media-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: 0;
    border: 1px solid #d8def1;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-media-thumb:hover,
.product-media-thumb:focus-visible,
.product-media-thumb.is-active {
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.12);
    transform: translateY(-1px);
    outline: none;
}

.product-media-thumb img,
.product-main-media img,
.product-model-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-main-media {
    aspect-ratio: 3 / 4;
    border-radius: var(--main-border-radius);
    overflow: hidden;
    background: #f4f6fb;
    box-shadow: 0 18px 46px rgba(18, 37, 63, 0.08);
}

.product-main-media-link,
.product-main-media-empty {
    width: 100%;
    height: 100%;
    display: flex;
}

.product-family-selector {
    display: grid;
    gap: 12px;
    margin: 8px 0 4px;
    padding: 16px;
    border: 1px solid #e3e8f4;
    border-radius: 20px;
    background: #f8fafe;
}

.product-family-selector-head {
    display: grid;
    gap: 4px;
}

.product-family-selector-head p {
    margin: 0;
    color: #6d7888;
    font-size: 13px;
    line-height: 1.45;
}

.product-family-selector-list {
    display: grid;
    gap: 10px;
}

.product-family-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #d9e0ee;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-family-option:hover,
.product-family-option.is-current {
    border-color: rgba(225, 29, 111, 0.34);
    box-shadow: 0 10px 22px rgba(30, 41, 59, 0.08);
    transform: translateY(-1px);
}

.product-family-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-family-option-main {
    display: grid;
    gap: 4px;
}

.product-family-option-main strong {
    color: #131927;
    font-size: 15px;
}

.product-family-option-main span {
    color: #6d7888;
    font-size: 13px;
}

.product-family-option-price {
    color: #131927;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.product-secondary-btn--family {
    justify-content: center;
}

.product-size-lineup-list {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-direction: column;
}

.product-size-lineup-option {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px 14px;
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #d9e0ee;
    border-radius: 14px;
    background: #fff;
    box-sizing: border-box;
    cursor: pointer;
}

.product-size-lineup-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #e11d6f;
    flex: 0 0 auto;
    align-self: center;
}

.product-size-lineup-meta {
    display: grid;
    gap: 10px;
    min-width: 0;
}

.product-size-lineup-line {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: baseline;
    column-gap: 10px;
    row-gap: 2px;
    min-width: 0;
}

.product-size-lineup-code strong,
.product-size-lineup-main strong {
    color: #6d7888;
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
}

.product-size-lineup-code span,
.product-size-lineup-main span {
    color: #131927;
    font-size: 14px;
    font-weight: 700;
    min-width: 0;
    overflow-wrap: anywhere;
}

.product-size-lineup-code span {
    color: #000000;
    font-weight: 600;
}

.product-size-lineup-price {
    color: #131927;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    min-width: 56px;
    text-align: right;
    justify-self: end;
    align-self: center;
}

.product-detail-row--size-selector {
    display: flex;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    grid-auto-flow: column;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-detail-row--size-selector dt {
    padding-top: 12px;
}

.product-detail-row--size-selector dd {
    min-width: 0;
}

.product-main-media-link {
    align-items: stretch;
    position: relative;
}

.product-main-media-empty {
    align-items: center;
    justify-content: center;
    color: #7c8797;
    font-size: 14px;
    font-weight: 400;
}

.product-media-mobile-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-media-mobile-track::-webkit-scrollbar {
    display: none;
}

.product-media-mobile-slide,
.product-media-mobile-empty {
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    background: transparent;
    scroll-snap-align: start;
}

.product-media-mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-media-mobile-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7c8797;
    font-size: 14px;
    font-weight: 400;
}

.product-media-mobile-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.product-media-mobile-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(13, 20, 32, 0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.product-media-mobile-dot.is-active {
    width: 24px;
    background: #1a73e8;
}

.product-summary-card,
.product-content-card,
.product-commerce-card {
    border: 1px solid #e3e8f4;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(18, 37, 63, 0.06);
}

.product-content-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
}

.product-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.92fr);
    gap: 24px;
    align-items: start;
}

.product-gallery-panel,
.product-info-panel {
    min-width: 0;
}

.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-info-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.product-commerce-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
}

.product-content-top,
.product-commerce-top,
.product-brand-about {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-content-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-main-media-link--laleli-shine::after {
    content: "";
    position: absolute;
    inset: -8% auto -8% -46%;
    width: 34%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.18) 72%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(0) skewX(-18deg);
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0;
    animation: productLaleliSheen 1.35s ease-out 0.35s 1 forwards;
}

@keyframes productLaleliSheen {
    0% {
        transform: translateX(0) skewX(-18deg);
        opacity: 0;
    }
    12% {
        opacity: 0.92;
    }
    82% {
        opacity: 0.82;
    }
    100% {
        transform: translateX(460%) skewX(-18deg);
        opacity: 0;
    }
}

.product-origin-note {
    padding: 12px 14px;
    border: 1px solid #f5d5a5;
    border-radius: 16px;
    background: #fff9ef;
    color: #7a4d00;
    font-size: 12px;
    line-height: 1.4;
}

.product-page-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
}

.product-model-strip-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-model-strip-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
}

.product-model-strip-head h2,
.product-section-head h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.product-model-strip-head p,
.product-section-head p {
    margin: 0;
    color: #6a7484;
    font-size: 14px;
    font-weight: 400;
}

.product-model-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(56px, calc((100% - 7 * 8px) / 8));
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.product-model-strip::-webkit-scrollbar {
    display: none;
}

.product-model-strip--grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    overflow: visible;
    padding-bottom: 0;
}

.product-model-card {
    display: grid;
    gap: 6px;
    text-decoration: none;
    color: #0f1728;
    min-width: 0;
}

.product-model-card.is-current {
    pointer-events: none;
}

.product-model-card-photo {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f6fa;
    box-shadow: inset 0 0 0 1px #e2e7f1;
}

.product-model-card.is-current .product-model-card-photo {
    box-shadow: inset 0 0 0 2px #1a73e8;
}

.product-model-card-title {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.25;
    color: #0f1728;
    overflow-wrap: anywhere;
}

.product-model-card-meta {
    display: block;
    font-size: 11px;
    line-height: 1.25;
    color: #6a7484;
    overflow-wrap: anywhere;
}

.product-inline-color {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-inline-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    flex: 0 0 auto;
}

.product-info-description {
    margin-top: 2px;
    color: #5e6b7f;
    font-size: 14px;
    line-height: 1.55;
}

.product-detail-list--compact .product-detail-row {
    padding: 8px 0;
}

.product-brand-about {
    padding: 16px;
    border: 1px solid #edf1f8;
    border-radius: 22px;
    background: #fbfcff;
}

.product-brand-about-label {
    color: #758297;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-brand-about h2 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.2;
}

.product-brand-about p {
    margin: 0;
    color: #5d687a;
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 1000px) {
    .product-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .product-model-strip {
        grid-auto-columns: minmax(72px, calc((100% - 5 * 8px) / 6));
    }

    .search-lightbox-thumbs {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .product-page-shell {
        width: 100%;
        margin: 12px 0;
    }

    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-media-mobile-carousel {
        display: block;
        margin-bottom: 8px;
    }

    .product-main-media,
    .product-media-mobile-slide,
    .product-media-mobile-empty {
        aspect-ratio: auto;
        height: 100%;
        width: 100%;
    }

    .product-media-stage {
        display: none;
    }

    .product-main-media,
    .product-content-card,
    .product-commerce-card {
        border-radius: 16px;
    }

    .product-media-mobile-slide,
    .product-media-mobile-empty {
        border-radius: 18px;
    }

    .product-content-card,
    .product-commerce-card {
        padding: 14px;
    }

    .product-hero-layout {
        gap: 16px;
    }

    .product-page-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .product-model-strip-head {
        gap: 6px;
    }

    .product-model-strip {
        grid-auto-columns: 64px;
        gap: 8px;
    }

    .product-model-strip--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-columns: initial;
    }

    .product-summary-buybox {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 14px;
        border-radius: 16px;
        gap: 10px;
    }

    .product-buy-btn {
        width: 100%;
    }

    .product-family-option {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-size-lineup-list {
        grid-template-columns: 1fr;
    }

    .product-size-lineup-option {
        grid-template-columns: 18px minmax(0, 1fr);
    }

    .product-size-lineup-meta {
        gap: 6px;
    }

    .product-size-lineup-line {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

    .product-detail-row--size-selector {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-detail-row--size-selector dt {
        padding-top: 0;
    }

    .product-family-option-price {
        white-space: normal;
    }

    .product-size-lineup-price {
        white-space: normal;
        grid-column: 2;
        text-align: left;
        justify-self: start;
    }

    .search-lightbox {
        padding: 12px;
        gap: 6px;
    }

    .search-lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 24px;
    }

    .search-lightbox-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 700px) {
    .search-lightbox-content {
        width: 100%;
    }

    #search-lightbox-image {
        max-height: 56vh;
    }

    .search-lightbox-caption {
        text-align: center;
    }
}
