/* =========================================================
   NOVAEL — SINGLE PRODUCT
========================================================= */

.single-product .novael-shop-shell {
    background: var(--bg);
}

.novael-single-product {
    width: 100%;
}


/* Product banner */

.novael-product-banner {
    width: 100%;

    padding:
        17px
        var(--page-x);

    border-top:
        1px solid
        rgba(17,17,15,.08);

    border-bottom:
        1px solid
        rgba(17,17,15,.12);

    background: var(--bg);
    color: var(--text);

    font-size: 10px;
    font-weight: 800;

    line-height: 1;
    letter-spacing: .12em;

    text-align: center;
    text-transform: uppercase;
}


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

.novael-product-layout {
    width: calc(100% - (var(--page-x) * 2));
    max-width: 1180px;

    margin: 0 auto;

    padding:
        38px
        0
        78px;

    display: grid;
    grid-template-columns:
        480px
        minmax(420px, 1fr);

    gap:
        clamp(54px, 6vw, 86px);

    align-items: start;
}


/* =========================================================
   GALLERY
========================================================= */

.novael-product-gallery {
    position: relative;

    min-width: 0;
}

.novael-product-gallery .woocommerce-product-gallery {
    float: none !important;

    width: 100% !important;

    margin: 0 !important;

    display: grid;
    grid-template-columns: 56px 400px;
    gap: 12px;
    align-items: start;
}

.novael-product-gallery .woocommerce-product-gallery__wrapper {
    grid-column: 2;
    grid-row: 1;

    width: 400px;

    margin: 0;
}

.novael-product-gallery .woocommerce-product-gallery__image {
    overflow: hidden;

    background: #e9e4dc;
}

.novael-product-gallery .woocommerce-product-gallery__image img {
    display: block;

    width: 400px !important;
    height: 400px !important;

    max-width: 100%;

    margin: 0 auto;

    object-fit: cover;
    object-position: center;

    cursor: zoom-in;
}


/* Zoom icon */

.novael-product-gallery
.woocommerce-product-gallery__trigger {
    display: none !important;
}


/* Sale */

.novael-product-gallery__sale {
    position: absolute;

    z-index: 20;

    top: 12px;
    left: 12px;
    right: 58px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    pointer-events: none;
}

.novael-product-gallery__sale span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 25px;

    padding:
        0
        9px;

    background: #b3261e;
    color: #fff;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .11em;
}

.novael-product-gallery__sale strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 25px;

    padding:
        0
        9px;

    background: rgba(250,250,248,.92);
    color: #b3261e;

    font-size: 8px;
    font-weight: 800;
}


/* Thumbnails */

.novael-product-gallery .flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;

    display: flex !important;
    flex-direction: column;
    gap: 8px;

    width: 56px;
    max-height: 400px;

    margin: 0 !important;
    padding: 0 !important;

    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: none;
}

.novael-product-gallery .flex-control-thumbs::-webkit-scrollbar {
    display: none;
}

.novael-product-gallery .flex-control-thumbs li {
    flex:
        0
        0
        auto;

    float: none !important;

    width: 56px !important;

    margin: 0 !important;
}

.novael-product-gallery .flex-control-thumbs img {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    opacity: .45;

    cursor: pointer;

    transition:
        opacity .2s ease;
}

.novael-product-gallery
.flex-control-thumbs
img.flex-active,
.novael-product-gallery
.flex-control-thumbs
img:hover {
    opacity: 1;
}


/* =========================================================
   INFO
========================================================= */

.novael-product-info {
    position: sticky;

    top: calc(var(--header-h) + 28px);

    align-self: start;
}


/* Breadcrumb */

.novael-product-breadcrumb {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 26px;

    color: rgba(17,17,15,.42);

    font-size: 7px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .1em;

    text-transform: uppercase;
}

.novael-product-breadcrumb a {
    color: inherit;

    text-decoration: none;
}


/* Title */

.novael-product-heading {
    margin-bottom: 14px;
}

.novael-product-title {
    max-width: 560px;

    margin: 0;

    color: var(--text);

    font-family:
        var(--font-display);

    font-size:
        clamp(38px, 3.2vw, 56px);

    font-weight: 400;

    line-height: .94;

    letter-spacing: -.045em;
}


/* Hide duplicate sale next to title */

.novael-product-heading
.novael-product-sale {
    display: none;
}


/* Price */

.novael-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;

    gap: 9px;

    margin-bottom: 18px;

    font-size: 16px;
    font-weight: 700;
}

.novael-product-price del {
    color: rgba(17,17,15,.38);

    font-size: 11px;

    opacity: 1;
}

.novael-product-price ins {
    color: #a32d25;

    font-size: 17px;
    font-weight: 700;

    text-decoration: none;
}


/* Stock */

.novael-product-stock {
    display: inline-flex;
    align-items: center;

    min-height: 25px;

    margin-bottom: 26px;

    padding:
        0
        9px;

    font-size: 7px;
    font-weight: 800;

    letter-spacing: .12em;
}

.novael-product-stock.is-in-stock {
    background: rgba(50,82,53,.08);
    color: #315536;
}

.novael-product-stock.is-out-of-stock {
    background: #11110f;
    color: #fff;
}


/* Short description */

.novael-product-short-description {
    max-width: 540px;

    margin-bottom: 30px;

    color: #37342f;

    font-size: 11px;

    line-height: 1.65;
}

.novael-product-short-description p {
    margin:
        0
        0
        13px;
}

.novael-product-short-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   VARIATIONS
========================================================= */

.novael-product-purchase {
    width: 100%;

    margin-top: 28px;
    margin-bottom: 28px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(17,17,15,.13);
}

.novael-product-purchase form.cart {
    margin: 0 !important;
}

.novael-product-purchase table.variations {
    width: 100%;

    margin:
        0
        0
        22px !important;

    border: 0 !important;
}

.novael-product-purchase table.variations tbody {
    display: grid;

    gap: 18px;
}

.novael-product-purchase table.variations tr {
    display: block;
}

.novael-product-purchase table.variations th,
.novael-product-purchase table.variations td {
    display: block;

    width: 100% !important;

    padding: 0 !important;

    border: 0 !important;
}

.novael-product-purchase table.variations label {
    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 8px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.novael-product-purchase table.variations select {
    width: 100%;
    height: 48px;

    padding:
        0
        14px;

    border:
        1px solid
        rgba(17,17,15,.25);

    border-radius: 0;

    background-color: transparent;

    color: var(--text);

    font-size: 10px;
    font-weight: 500;

    outline: none;
}

.novael-product-purchase .reset_variations {
    display: inline-block;

    margin-top: 8px;

    color: var(--muted);

    font-size: 7px;
    font-weight: 600;

    letter-spacing: .07em;

    text-decoration: none;
}



/* Size options */

.novael-product-purchase
table.variations
select[name*="size"] {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.novael-size-options {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 8px;

    width: 100%;
}

.novael-size-option {
    position: relative;

    width: 100%;
    min-width: 0;
    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 14px;

    border:
        1px solid
        rgba(17,17,15,.3);

    background: transparent;
    color: var(--text);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .04em;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.novael-size-option:hover,
.novael-size-option.is-selected {
    border-color: var(--text);

    background: var(--text);
    color: #fff;
}

.novael-size-option.is-unavailable {
    color: rgba(17,17,15,.32);

    border-color: rgba(17,17,15,.18);

    background: transparent;

    cursor: not-allowed;
}

.novael-size-option.is-unavailable::after {
    content: "";

    position: absolute;

    left: 6px;
    right: 6px;

    top: 50%;

    height: 1px;

    background: rgba(17,17,15,.58);

    transform:
        translateY(-50%)
        rotate(-15deg);
}

/* Selected variation price */

.novael-product-purchase
.single_variation_wrap {
    margin-top: 18px;
}

.novael-product-purchase
.single_variation
.woocommerce-variation-price {
    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
}


/* Variation stock message */

.novael-product-purchase
.woocommerce-variation-availability
.stock.in-stock {
    display: none !important;
}

.novael-product-purchase
.woocommerce-variation-availability
.stock.out-of-stock {
    display: block;

    margin:
        10px
        0
        0;

    color: #a32d25;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   ADD TO BAG
========================================================= */

.novael-product-purchase
.woocommerce-variation-add-to-cart,
.novael-product-purchase
form.cart:not(.variations_form) {
    display: grid;

    grid-template-columns:
        68px
        1fr;

    gap: 8px;

    width: 100%;
}

.novael-product-purchase .quantity {
    float: none !important;

    width: 100%;

    margin: 0 !important;
}

.novael-product-purchase .qty {
    width: 100% !important;
    height: 50px;

    padding: 0;

    border:
        1px solid
        rgba(17,17,15,.25);

    border-radius: 0;

    background: transparent;

    color: var(--text);

    font-size: 11px;
    font-weight: 700;

    text-align: center;
}

.novael-product-purchase
.single_add_to_cart_button {
    width: 100%;

    min-height: 50px;

    margin: 0 !important;

    padding:
        0
        24px !important;

    border:
        1px solid
        var(--text) !important;

    border-radius: 0 !important;

    background:
        var(--text) !important;

    color:
        #fff !important;

    font-size: 8px !important;
    font-weight: 800 !important;

    letter-spacing: .13em;

    text-transform: uppercase;

    transition:
        background .2s ease,
        color .2s ease;
}

.novael-product-purchase
.single_add_to_cart_button:hover {
    background:
        transparent !important;

    color:
        var(--text) !important;
}

.novael-product-purchase
.single_add_to_cart_button.disabled {
    opacity: .42;
}



/* Buy now */

.novael-product-purchase .novael-buy-now {
    grid-column: 1 / -1;

    width: 100%;
    min-height: 50px;

    margin-top: 8px;

    border:
        1px solid
        #a32d25;

    border-radius: 0;

    background: #a32d25;
    color: #fff;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .13em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.novael-product-purchase .novael-buy-now:hover {
    border-color: #7f211b;

    background: #7f211b;
    color: #fff;
}

/* =========================================================
   META
========================================================= */

.novael-product-meta {
    display: grid;

    gap: 9px;

    padding-top: 19px;

    border-top:
        1px solid
        rgba(17,17,15,.13);
}

.novael-product-meta > div {
    display: grid;

    grid-template-columns:
        74px
        minmax(0,1fr);

    gap: 10px;

    font-size: 7px;

    line-height: 1.5;
}

.novael-product-meta span {
    color: rgba(17,17,15,.42);

    font-weight: 800;

    letter-spacing: .1em;
}

.novael-product-meta strong {
    font-weight: 500;
}

.novael-product-meta a {
    color: inherit;

    text-decoration: none;
}


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

.novael-product-description {
    width: calc(100% - (var(--page-x) * 2));
    max-width: 1360px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        220px
        minmax(0, 720px);

    gap:
        clamp(50px,7vw,100px);

    padding:
        52px
        0;

    border-top:
        1px solid
        rgba(17,17,15,.13);
}

.novael-product-description__title {
    color: var(--text);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.novael-product-description__content {
    color: #37342f;

    font-size: 11px;

    line-height: 1.75;
}


/* Gallery thumbnail reset */

.single-product
.woocommerce-product-gallery
ol,
.single-product
.woocommerce-product-gallery
ul {
    list-style: none !important;

    counter-reset: none !important;
}

.single-product
.woocommerce-product-gallery
li {
    list-style: none !important;

    counter-increment: none !important;
}

.single-product
.woocommerce-product-gallery
li::before,
.single-product
.woocommerce-product-gallery
li::after,
.single-product
.woocommerce-product-gallery
li::marker {
    content: none !important;

    display: none !important;
}


/* Product gallery controls */

.novael-product-gallery {
    position: relative;
}

.novael-product-gallery__controls {
    position: absolute;

    z-index: 20;

    top: 50%;
    left: 78px;
    right: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    transform: translateY(-50%);

    pointer-events: none;
}

.novael-product-gallery__arrow,
.novael-product-gallery__zoom {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(17,17,15,.2);

    border-radius: 50%;

    background:
        rgba(250,250,248,.92);

    color: var(--text);

    font-size: 15px;

    cursor: pointer;

    pointer-events: auto;
}

.novael-product-gallery__zoom {
    position: absolute;

    top: -190px;
    right: 0;

    font-size: 17px;
}

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

.novael-product-gallery .flex-control-thumbs {
    list-style: none !important;
    counter-reset: none !important;
}

.novael-product-gallery .flex-control-thumbs li {
    position: relative;

    list-style: none !important;
}

.novael-product-gallery .flex-control-thumbs li::marker,
.novael-product-gallery .flex-control-thumbs li::before,
.novael-product-gallery .flex-control-thumbs li::after {
    content: none !important;

    display: none !important;
}

.novael-product-gallery
.woocommerce-product-gallery__image a {
    display: block;

    cursor: zoom-in;
}


html.novael-gallery-open,
html.novael-gallery-open body {
    overflow: hidden;
}


.novael-gallery-lightbox {
    position: fixed;

    z-index: 999999;

    inset: 0;

    background: rgba(12,12,11,.96);

    color: #fff;
}

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


.novael-gallery-lightbox__stage {
    position: absolute;

    inset:
        52px
        80px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: auto;
}


.novael-gallery-lightbox__stage img {
    display: block;

    max-width: 90vw;
    max-height: calc(100vh - 104px);

    width: auto;
    height: auto;

    object-fit: contain;

    cursor: zoom-in;

    user-select: none;

    transition:
        transform .25s ease;
}


.novael-gallery-lightbox__stage img.is-zoomed {
    max-width: none;
    max-height: none;

    transform: scale(1.75);

    cursor: zoom-out;
}


.novael-gallery-lightbox__close {
    position: absolute;

    z-index: 3;

    top: 20px;
    right: 24px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    background: transparent;
    color: #fff;

    font-size: 30px;
    font-weight: 300;

    line-height: 1;

    cursor: pointer;
}


.novael-gallery-lightbox__arrow {
    position: absolute;

    z-index: 3;

    top: 50%;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border:
        1px solid
        rgba(255,255,255,.35);

    border-radius: 50%;

    background: transparent;
    color: #fff;

    font-size: 18px;

    transform: translateY(-50%);

    cursor: pointer;
}


.novael-gallery-lightbox__arrow--prev {
    left: 22px;
}

.novael-gallery-lightbox__arrow--next {
    right: 22px;
}


.novael-gallery-lightbox__counter {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    color: rgba(255,255,255,.72);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .12em;
}


/* =========================================================
   REVIEWS
========================================================= */

.novael-product-reviews {
    width: calc(100% - (var(--page-x) * 2));
    max-width: 1360px;

    margin: 0 auto;

    padding:
        64px
        0
        86px;

    border-top:
        1px solid
        rgba(17,17,15,.14);
}


.novael-product-reviews__header {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 38px;
}

.novael-product-reviews__header span {
    color: var(--text);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: .12em;
}

.novael-product-reviews__header strong {
    min-width: 24px;
    height: 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(17,17,15,.22);

    border-radius: 50%;

    color: var(--text);

    font-size: 8px;
    font-weight: 700;
}


.novael-product-reviews #reviews {
    width: 100%;

    margin: 0;
}


.novael-product-reviews #comments > h2 {
    margin:
        0
        0
        20px;

    color: var(--text);

    font-family:
        var(--font-display);

    font-size: 28px;
    font-weight: 400;

    line-height: 1.1;
}


.novael-product-reviews
.woocommerce-noreviews {
    margin:
        0
        0
        42px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.6;
}


/* Existing reviews */

.novael-product-reviews .commentlist {
    max-width: 800px;

    margin: 0 0 48px !important;
    padding: 0 !important;

    list-style: none !important;
}

.novael-product-reviews .commentlist li {
    list-style: none !important;
}

.novael-product-reviews .comment {
    padding:
        24px
        0;

    border-top:
        1px solid
        rgba(17,17,15,.12);
}

.novael-product-reviews .comment-text {
    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
}

.novael-product-reviews
.woocommerce-review__author {
    color: var(--text);

    font-size: 12px;
    font-weight: 700;
}

.novael-product-reviews
.woocommerce-review__published-date {
    color: var(--muted);

    font-size: 9px;
}

.novael-product-reviews .description {
    margin-top: 12px;

    color: #37342f;

    font-size: 12px;

    line-height: 1.65;
}


/* Review form */

.novael-product-reviews #review_form_wrapper {
    max-width: 720px;
}


.novael-product-reviews
.comment-reply-title {
    display: block;

    margin-bottom: 22px;

    color: var(--text);

    font-family:
        var(--font-display);

    font-size: 24px;
    font-weight: 400;

    line-height: 1.25;
}


.novael-product-reviews
.comment-form {
    display: grid;

    gap: 18px;
}


.novael-product-reviews
.comment-form p {
    margin: 0;
}


.novael-product-reviews
.comment-form label {
    display: block;

    margin-bottom: 8px;

    color: var(--text);

    font-size: 10px;
    font-weight: 700;

    line-height: 1.3;

    letter-spacing: .02em;
}


/* Stars */

.novael-product-reviews
.comment-form-rating {
    display: block;
}


.novael-product-reviews
p.stars {
    margin-top: 5px;
}


.novael-product-reviews
p.stars span {
    display: flex;

    gap: 6px;
}


.novael-product-reviews
p.stars a {
    position: relative;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    color: transparent !important;

    font-size: 0 !important;

    text-decoration: none !important;
}


.novael-product-reviews
p.stars a::before {
    content: "☆";

    position: static;

    color: var(--text);

    font-size: 25px;

    line-height: 1;
}


.novael-product-reviews
p.stars a:hover::before,
.novael-product-reviews
p.stars a.active::before {
    content: "★";
}


/* Fields */

.novael-product-reviews
input[type="text"],
.novael-product-reviews
input[type="email"],
.novael-product-reviews
textarea {
    width: 100%;

    padding:
        13px
        14px;

    border:
        1px solid
        rgba(17,17,15,.23);

    border-radius: 0;

    background: transparent;

    color: var(--text);

    font-family: inherit;

    font-size: 12px;

    outline: none;
}


.novael-product-reviews textarea {
    min-height: 150px;

    resize: vertical;
}


.novael-product-reviews
input:focus,
.novael-product-reviews
textarea:focus {
    border-color: var(--text);
}


/* Submit */

.novael-product-reviews .submit {
    width: auto;

    min-width: 150px;
    min-height: 46px;

    padding:
        0
        28px !important;

    border:
        1px solid
        var(--text) !important;

    border-radius: 0 !important;

    background:
        var(--text) !important;

    color:
        #fff !important;

    font-size: 9px !important;
    font-weight: 800 !important;

    letter-spacing: .11em;

    text-transform: uppercase;

    cursor: pointer;
}


@media (max-width: 767px) {

    .novael-product-reviews {
        width: calc(100% - 26px);

        padding:
            38px
            0
            52px;
    }

    .novael-product-reviews__header {
        margin-bottom: 28px;
    }

    .novael-product-reviews__header span {
        font-size: 9px;
    }

    .novael-product-reviews
    #comments > h2 {
        font-family:
            Arial,
            Helvetica,
            sans-serif;

        font-size: 20px;
        font-weight: 700;
    }

    .novael-product-reviews
    .woocommerce-noreviews {
        margin-bottom: 32px;

        font-size: 11px;
    }

    .novael-product-reviews
    .comment-reply-title {
        font-family:
            Arial,
            Helvetica,
            sans-serif;

        font-size: 17px;
        font-weight: 700;
    }

    .novael-product-reviews
    .comment-form label {
        font-size: 11px;
    }

    .novael-product-reviews
    input[type="text"],
    .novael-product-reviews
    input[type="email"],
    .novael-product-reviews
    textarea {
        font-size: 12px;
    }

    .novael-product-reviews
    .submit {
        width: 100%;
    }

}

/* =========================================================
   RELATED PRODUCTS
========================================================= */

.novael-related {
    width: calc(100% - (var(--page-x) * 2));
    max-width: 1360px;

    margin: 0 auto;

    padding:
        54px
        0
        90px;

    border-top:
        1px solid
        rgba(17,17,15,.13);
}

.novael-related .related.products {
    margin: 0 !important;
}

.novael-related .related.products > h2 {
    margin:
        0
        0
        25px;

    font-family:
        var(--font-display);

    font-size: 30px;
    font-weight: 400;

    line-height: 1;
    letter-spacing: -.03em;
}

.novael-related ul.products {
    display: flex !important;

    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;

    scrollbar-width: none;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.novael-related ul.products::-webkit-scrollbar {
    display: none;
}

.novael-related li.product {
    flex: 0 0 calc((100% - 36px) / 4);

    float: none !important;

    width: auto !important;

    margin: 0 !important;

    scroll-snap-align: start;
}

.novael-related-carousel__nav {
    display: flex;
    justify-content: flex-end;

    gap: 7px;

    margin-top: 22px;
}

.novael-related-carousel__nav button {
    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(17,17,15,.25);

    border-radius: 50%;

    background: transparent;

    color: var(--text);

    cursor: pointer;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .novael-product-layout {
        width: 100%;

        display: block;

        padding:
            16px
            0
            44px;
    }


    /* Gallery */

    .novael-product-gallery {
        position: relative;

        width: calc(100% - 24px);
        margin: 0 12px;
        padding: 0;

        border: 0;
        background: transparent;
    }

    .novael-product-gallery .woocommerce-product-gallery {
        display: block;

        width: 100% !important;
    }

    .novael-product-gallery .woocommerce-product-gallery__wrapper {
        width: 100%;

        padding: 0;

        background: transparent;
    }

    .novael-product-gallery
    .woocommerce-product-gallery__image img {
        display: block;

        width: 100% !important;
        height: 500px !important;
        max-width: none;

        aspect-ratio: auto;

        object-fit: cover;
        object-position: center;

        cursor: zoom-in;
    }

    .novael-product-gallery__sale {
        top: 8px;
        left: 8px;
        right: 46px;
    }

    .novael-product-gallery__controls {
        top: 50%;
        left: 10px;
        right: 10px;

        transform: translateY(-50%);
    }

    .novael-product-gallery__arrow {
        width: 30px;
        height: 30px;

        font-size: 13px;
    }

    .novael-product-gallery__zoom {
        top: -235px;
        right: 0;

        width: 30px;
        height: 30px;

        font-size: 14px;
    }

    .novael-product-gallery__sale span,
    .novael-product-gallery__sale strong {
        min-height: 22px;

        padding:
            0
            7px;
    }

    .novael-product-gallery .flex-control-thumbs {
        display: none !important;
    }


    /* Info */

    .novael-product-info {
        position: static;

        margin-top: 20px;

        padding:
            0
            13px;
    }

    .novael-product-breadcrumb {
        margin-bottom: 15px;

        font-size: 6px;
    }

    .novael-product-title {
        width: 100%;

        margin:
            0
            0
            18px;

        font-family:
            Arial,
            Helvetica,
            sans-serif;

        font-size: 28px;
        font-weight: 800;

        line-height: 1.04;

        letter-spacing: -.025em;
    }

    .novael-product-price {
        margin-top: 12px;
        margin-bottom: 13px;

        font-size: 13px;
    }

    .novael-product-price del {
        font-size: 9px;
    }

    .novael-product-price ins {
        font-size: 14px;
    }

    .novael-product-stock {
        margin-bottom: 20px;
    }

    .novael-product-short-description {
        margin-bottom: 0;

        color: #2f2c28;

        font-size: 12px;
        font-weight: 400;

        line-height: 1.72;
    }


    .novael-size-options {
        grid-template-columns:
            repeat(3, minmax(0,1fr));

        gap: 9px;
    }

    .novael-size-option {
        height: 50px;

        font-size: 11px;
    }


    /* Purchase */

    .novael-product-purchase {
        margin-top: 24px;

        padding-top: 21px;
    }

    .novael-product-purchase
    table.variations select {
        height: 46px;

        font-size: 10px;
    }

    .novael-product-purchase
    .woocommerce-variation-add-to-cart,
    .novael-product-purchase
    form.cart:not(.variations_form) {
        grid-template-columns:
            60px
            1fr;
    }

    .novael-product-purchase .qty,
    .novael-product-purchase
    .single_add_to_cart_button {
        min-height: 48px;
        height: 48px;
    }


    /* Meta */

    .novael-product-meta {
        margin-top: 22px;
    }


    /* Details */

    .novael-product-description {
        width: calc(100% - 26px);

        display: block;

        padding:
            31px
            0;
    }

    .novael-product-description__title {
        margin-bottom: 16px;
    }

    .novael-product-description__content {
        font-size: 10px;
    }


    /* Related */

    .novael-related {
        width: calc(100% - 18px);

        padding:
            32px
            0
            55px;
    }

    .novael-related
    .related.products
    > h2 {
        margin-bottom: 18px;

        font-family:
            Arial,
            Helvetica,
            sans-serif;

        font-size: 18px;
        font-weight: 700;
    }

    .novael-related ul.products {
        gap: 7px;
    }

    .novael-related li.product {
        flex-basis: 48%;
    }

    .novael-related-carousel__nav {
        display: none;
    }

}
