/*
==================================================
LASP
Single Collection — Pixel Style
File: /wp-content/themes/astra-child/assets/css/single-collections.css
==================================================
*/

/*
==================================================
PAGE
==================================================
*/

.collection-single-page {
    width: 100%;
    background: #f0ece9;
    color: #111111;
    padding: 26px 0 70px;
}

.collection-single-page,
.collection-single-page * {
    box-sizing: border-box;
}

.collection-single-container {
    width: 100%;
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 50px;
}

/*
==================================================
BREADCRUMBS
==================================================
*/

.collection-single-breadcrumbs {
    display: none;
}

/*
==================================================
LAYOUT
==================================================
*/

.collection-single {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(0, 610px);
    gap: 72px;
    align-items: start;
}

.collection-single-gallery {
    min-width: 0;
}

.collection-single-info {
    min-width: 0;
    padding-top: 8px;
}

/*
==================================================
MAIN IMAGE
==================================================
*/

.collection-main-image-wrap {
    width: 100%;
    background: #f3f0ec;
}

.collection-main-image-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    appearance: none;
    overflow: hidden;
}

.collection-main-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1.69 / 1;
    object-fit: cover;
    transform: scale(1);
    transform-origin: center center;
    transition: transform .28s ease, transform-origin .08s linear;
    will-change: transform, transform-origin;
}

.collection-main-image-button:hover .collection-main-image {
    transform: scale(2.7);
}

.collection-main-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    padding: 40px;
    background: #f3f0ec;
    color: #777777;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.collection-zoom-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: rgba(0, 0, 0, .16);
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.collection-main-image-button:hover .collection-zoom-icon {
    color: #111111;
    background: rgba(255, 255, 255, .9);
    border-color: rgba(255, 255, 255, .9);
}

/*
==================================================
VARIANTS
==================================================
*/

.collection-variants {
    margin-top: 18px;
}

.collection-variants-title {
    margin: 0 0 18px;
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.collection-variants-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px 20px;
    align-items: start;
}

.collection-variant {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: #111111;
    cursor: pointer;
    appearance: none;
    text-align: center;
	box-shadow: none;
}
.collection-variant:hover{
	background:none;
}
.collection-variant-image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.46 / 1;
    overflow: hidden;
    background: #f3f0ec;
}

.collection-variant-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color .22s ease;
}

.collection-variant-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition:
        transform .45s ease,
        opacity .25s ease;
}

.collection-variant-title {
    display: -webkit-box;
    margin-top: 7px;
    color: #111111;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: .02em;
    text-align: center;
    min-height: 32px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.collection-variant:hover .collection-variant-image img {
    transform: scale(1.035);
}

.collection-variant:hover .collection-variant-image::after,
.collection-variant.is-active .collection-variant-image::after {
    border-color: #111111;
}

.collection-variant.is-active .collection-variant-title {
    font-weight: 400;
}

/*
==================================================
VIDEO CARD
==================================================
*/

.collection-video-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
    min-height: 144px;
    margin-top: 28px;
    background: #f7f5f2;
    overflow: hidden;
}

.collection-video-button {
    display: flex;
    align-items: center;
    gap: 22px;
    width: 100%;
    min-height: 144px;
    padding: 30px 28px;
    margin: 0;
    border: 0;
    background: #f7f5f2;
    color: #111111;
    cursor: pointer;
    text-align: left;
    appearance: none;
}

.collection-video-button:hover {
    background: #ebeaea;
}

.collection-video-play {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border: 1px solid #111111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-video-play svg {
    margin-left: 3px;
}

.collection-video-text {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.collection-video-text strong {
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.collection-video-text small {
    color: #595959;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.45;
}

.collection-video-preview {
    min-width: 0;
}

.collection-video-preview img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 144px;
    object-fit: cover;
}

/*
==================================================
HEADER / TITLE
==================================================
*/

.collection-info-header {
    margin: 0;
    padding: 0 0 26px;
    border-bottom: 1px solid #e4ded8;
}

.collection-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.collection-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    border: 1px solid #111111;
    color: #111111;
    font-size: 11px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.collection-title {
    margin: 0;
    color: #111111;
    font-size: 54px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.collection-subtitle {
    margin: 19px 0 0;
    color: #7c7c7c;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.collection-short-description {
    margin: 20px 0 0;
    max-width: 560px;
    color: #555555;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
}

.collection-short-description p {
    margin: 0;
}

.collection-short-description p + p {
    margin-top: 10px;
}

/*
==================================================
CHARACTERISTICS
==================================================
*/

.collection-characteristics {
    margin-top: 18px;
}

.collection-characteristics h2,
.collection-description h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.collection-characteristics-table {
    width: 100%;
    border-top: 1px solid #e4ded8;
}

.collection-characteristics-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 265px);
    gap: 28px;
    min-height: 38px;
    padding: 8px 0 9px;
    border-bottom: 1px solid #e4ded8;
}

.collection-characteristics-name,
.collection-characteristics-value {
    color: #2e2e2e;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.35;
}

.collection-characteristics-value {
    color: #222222;
}

/*
==================================================
DESCRIPTION
==================================================
*/

.collection-description {
    margin-top: 46px;
}

.collection-description-content {
    max-width: 595px;
    color: #222222;
    font-size: 15.5px;
    font-weight: 300;
    line-height: 1.72;
}

.collection-description-content p {
    margin: 0 0 24px;
}

.collection-description-content p:last-child {
    margin-bottom: 0;
}

.collection-description-content ul,
.collection-description-content ol {
    margin: 0 0 24px 20px;
    padding: 0;
}

.collection-description-content li {
    margin-bottom: 8px;
}

/*
==================================================
ORDER BUTTON
==================================================
*/

.collection-order {
    margin-top: 46px;
}

.collection-order-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 210px;
    min-height: 46px;
    padding: 14px 24px;
    margin: 0;
    border: 1px solid #111111;
    background: none;
    color: #111111;
    cursor: pointer;
    appearance: none;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.collection-order-button:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/*
==================================================
LIGHTBOX
==================================================
*/

.collection-lightbox,
.collection-video-modal,
.collection-order-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 15, .88);
}

.collection-lightbox[hidden],
.collection-video-modal[hidden],
.collection-order-modal[hidden] {
    display: none !important;
}

.collection-lightbox-figure {
    position: relative;
    margin: 0;
    padding: 0;
    width: min(1180px, 88vw);
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.collection-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #ffffff;
}

.collection-lightbox-caption {
    margin-top: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .08em;
}

.collection-lightbox-close,
.collection-video-close,
.collection-order-close {
    position: absolute;
    top: 24px;
    right: 30px;
    z-index: 4;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 44px;
    font-weight: 200;
    line-height: 1;
}

.collection-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 56px;
    height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-size: 70px;
    font-weight: 200;
    line-height: 1;
    transform: translateY(-50%);
}

.collection-lightbox-prev {
    left: 24px;
}

.collection-lightbox-next {
    right: 24px;
}

/*
==================================================
VIDEO MODAL
==================================================
*/

.collection-video-frame {
    width: min(1100px, 90vw);
    aspect-ratio: 16 / 9;
    background: #000000;
}

.collection-video-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/*
==================================================
ORDER MODAL
==================================================
*/

.collection-order-modal {
    background: rgba(15, 15, 15, .72);
}

.collection-order-modal-inner {
    width: min(620px, calc(100vw - 36px));
    max-height: calc(100vh - 72px);
    overflow: auto;
    background: #ffffff;
    padding: 42px 44px 46px;
}

.collection-order-modal-inner h2 {
    margin: 0 0 18px;
    color: #111111;
    font-size: 34px;
    font-weight: 300;
    line-height: 1.2;
}

.collection-order-selected {
    display: grid;
    gap: 8px;
    margin: 0 0 28px;
    padding: 16px 0;
    border-top: 1px solid #e4ded8;
    border-bottom: 1px solid #e4ded8;
    color: #333333;
    font-size: 15px;
    font-weight: 300;
}

.collection-order-close {
    color: #ffffff;
}

/*
==================================================
FOCUS
==================================================
*/

.collection-single-page button:focus,
.collection-single-page a:focus {
    outline: 1px solid #111111;
    outline-offset: 4px;
	background:none;
}

.collection-single-page button:focus:not(:focus-visible),
.collection-single-page a:focus:not(:focus-visible) {
    outline: none;
}

/*
==================================================
RESPONSIVE
==================================================
*/

@media (max-width: 1500px) {
    .collection-single-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .collection-single {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
        gap: 58px;
    }

    .collection-title {
        font-size: 50px;
    }
}

@media (max-width: 1280px) {
    .collection-single {
        gap: 44px;
    }

    .collection-title {
        font-size: 44px;
    }

    .collection-characteristics-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 230px);
    }

    .collection-variants-grid {
        gap: 16px 20px;
    }
}

@media (max-width: 1080px) {
    .collection-single {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .collection-single-info {
        padding-top: 0;
    }

    .collection-main-image {
        aspect-ratio: 1.68 / 1;
    }

    .collection-description-content,
    .collection-short-description {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .collection-single-page {
        padding-top: 22px;
        padding-bottom: 60px;
    }

    .collection-single-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .collection-main-image {
        aspect-ratio: 1.25 / 1;
    }

    .collection-variants-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 14px;
    }

    .collection-video-card {
        grid-template-columns: 1fr;
    }

    .collection-video-preview {
        display: none;
    }

    .collection-title {
        font-size: 38px;
    }

    .collection-characteristics-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .collection-characteristics-name,
    .collection-characteristics-value {
        font-size: 15px;
    }

    .collection-order-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .collection-single-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .collection-title {
        font-size: 32px;
        letter-spacing: .04em;
    }

    .collection-subtitle {
        font-size: 12px;
    }

    .collection-variants-title,
    .collection-characteristics h2,
    .collection-description h2 {
        font-size: 14px;
    }

    .collection-variants-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-video-button {
        min-height: 120px;
        padding: 22px 20px;
    }

    .collection-video-play {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
    }

    .collection-video-text strong {
        font-size: 14px;
    }

    .collection-order-modal-inner {
        padding: 34px 24px 38px;
    }
}




@media (max-width: 760px) {
    .collection-main-image-button:hover .collection-main-image {
        transform: scale(1);
    }
}