/*.page {*/
/*    width: min(1180px, 94%);*/
/*    margin: 45px auto 90px;*/
/*}*/

.product-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 55px;
    align-items: start;
}

/* =========================
   Gallery
========================= */

.gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #f4f1ef;
    aspect-ratio: 3 / 4;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.035);
}

.zoom-icon {
    position: absolute;
    right: 12px;
    top: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .88);
    color: #111;
    font-size: 16px;
    z-index: 2;
}

.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 58%,
            rgba(0, 0, 0, .12));
    pointer-events: none;
}

.play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    color: #21a9c5;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
}

/* =========================
   Details
========================= */

.sticky {
    position: sticky;
    top: 30px;
}

.brand-title {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 17px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 13px 0 15px;
}

.stars {
    color: #111;
    letter-spacing: 1px;
    font-size: 15px;
}

.review {
    color: #666;
    font-size: 13px;
}

.price {
    font-size: 21px;
    font-weight: 500;
    margin: 8px 0 12px;
}

.size-chart {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    font-size: 12px;
    margin-bottom: 18px;
}

.size-chart i {
    font-size: 13px;
}

.label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 8px 0 10px;
}

.size-row {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.size {
    width: 48px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 12px;
    cursor: pointer;
}

.size.active {
    border-color: #117aa6;
    background: #117aa6;
    color: #fff;
}

.color-title {
    margin-top: 20px;
    font-size: 12px;
    color: #444;
}

.swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 9px 0 20px;
}

.swatch {
    width: 46px;
    height: 46px;
    border: 1px solid #ddd;
    padding: 2px;
    background: #fff;
    cursor: pointer;
}

.swatch.active {
    border: 2px solid #111;
    padding: 1px;
}

.swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quantity {
    display: flex;
    align-items: center;
    margin-top: 8px;
}

.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    height: 38px;
}

.qty-box button {
    width: 34px;
    height: 36px;
    border: 0;
    background: #f8f8f8;
    cursor: pointer;
    font-size: 15px;
}

.qty-box span {
    width: 40px;
    text-align: center;
    font-size: 13px;
}

/* =========================
   Buttons
========================= */

.actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 12px 0;
}

.btn {
    height: 42px;
    border: 0;
    border-radius: 22px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
}

.add {
    background: #111;
    color: #fff;
}

.wish {
    background: #fff;
    border: 1px solid #ddd;
}

.buy {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 22px;
    background: #0473a5;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 18px;
}

/* =========================
   Accordion
========================= */

.accordion {
    border-top: 1px solid #e8e8e8;
    margin-top: 25px;
}

.acc-item {
    border-bottom: 1px solid #e8e8e8;
}

.acc-head {
    width: 100%;
    padding: 16px 0;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px;
}

.acc-body {
    display: none;
    padding: 0 0 16px;
    color: #666;
    line-height: 1.6;
    font-size: 12px;
    padding: 10px;

}

.acc-item.open .acc-body {
    display: block;
}

.acc-item.open .acc-head i {
    transform: rotate(180deg);
}

/* =========================
   Benefits
========================= */

.benefits {
    margin-top: 30px;
    padding-top: 10px;
}

.benefit {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 13px;
    align-items: center;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;

    background: linear-gradient(135deg,
            #075985 0%,
            #005d8f 100%);

    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;

    display: grid;
    place-items: center;
    font-size: 21px;


}

.benefit-icon img {
    width: 75%;
}

.benefit h4 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.benefit p {
    color: #777;
    font-size: 10.5px;
    line-height: 1.4;
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {

    /*.page {*/
    /*    width: min(720px, 94%);*/
    /*    margin-top: 30px;*/
    /*    margin-bottom: 60px;*/
    /*}*/

    .product-wrap {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sticky {
        position: static;
    }

    .brand-title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 17px;
    }

    .price {
        font-size: 21px;
    }

    .acc-head {
        font-size: 14px;
        padding: 18px 0;
    }

    .acc-body {
        font-size: 13px;
    }
}

@media (max-width: 560px) {

    body {
        font-size: 13px;
    }

    /*.page {*/
    /*    width: 94%;*/
    /*    margin-top: 22px;*/
    /*    margin-bottom: 45px;*/
    /*}*/

    .gallery {
        gap: 8px;
    }

    .gallery-item {
        border-radius: 6px;
    }

    .product-wrap {
        gap: 35px;
    }

    .brand-title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 15px;
    }

    .rating {
        margin: 10px 0 13px;
    }

    .price {
        font-size: 19px;
    }

    .label {
        font-size: 11px;
    }

    .size {
        width: 40px;
        height: 33px;
        font-size: 10px;
    }

    .swatch {
        width: 40px;
        height: 40px;
    }

    .actions {
        gap: 8px;
    }

    .btn {
        height: 40px;
        font-size: 11px;
    }

    .buy {
        height: 42px;
        font-size: 12px;
    }

    .accordion {
        margin-top: 22px;
    }

    .acc-head {
        font-size: 12px;
        padding: 15px 0;
    }

    .acc-body {
        font-size: 11px;
        padding-bottom: 14px;
    }

    .benefits {
        margin-top: 25px;
    }

    .benefit {
        grid-template-columns: 42px 1fr;
        gap: 10px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .benefit h4 {
        font-size: 11px;
    }

    .benefit p {
        font-size: 9.5px;
        line-height: 1.35;
    }
}

@media (max-width: 360px) {

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .actions {
        grid-template-columns: 1fr;
    }

    .product-wrap {
        gap: 30px;
    }
}


/* product section  */

/* ==========================
   SIMILAR PRODUCTS
========================== */

.similar-products {
    width: 100%;
    padding: 70px 0 85px;
    background: #fff;
}

.similar-container {
    /* width: min(1180px, 94%); */
    margin: 0 auto;
}



/* Carousel */

.similar-carousel {
    position: relative;
    /* padding: 0 45px; */
}

.similar-product {
    text-align: center;
    padding: 0 7px 10px;
}

/* Product image */

.similar-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #eee5df;
}

.similar-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.similar-product:hover .similar-image img {
    transform: scale(1.035);
}

/* Product title */

.similar-product h3 {
    margin: 9px 0 3px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #111;
}

/* Rating */

.similar-rating {
    font-size: 11px;
    line-height: 1;
    color: #f4b400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Add to cart */

.similar-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    height: 25px;
    padding: 0 10px;
    border: 1px solid #e5c9bd;
    background: #fff;
    color: #222;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s ease;
}

.similar-cart:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ==========================
   OWL ARROWS
========================== */

.similar-carousel .owl-nav {
    margin: 0;
}

.similar-carousel .owl-prev,
.similar-carousel .owl-next {
    position: absolute;

    top: 38%;

    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    border: 1px solid #999 !important;
    border-radius: 50% !important;

    background: #fff !important;

    color: #111 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 18px !important;

    transition: all .25s ease;
}

.similar-carousel .owl-prev {
    left: 0;
}

.similar-carousel .owl-next {
    right: 0;
}

.similar-carousel .owl-prev:hover,
.similar-carousel .owl-next:hover {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
}

/* Remove dots */

.similar-carousel .owl-dots {
    display: none;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 900px) {

    .similar-products {
        padding: 55px 0 65px;
    }



    .similar-carousel {
        padding: 0 38px;
    }

    .similar-carousel .owl-prev,
    .similar-carousel .owl-next {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 600px) {

    .similar-products {
        padding: 45px 0 55px;
    }

    .similar-container {
        width: 92%;
    }



    .similar-carousel {
        padding: 0 30px;
    }

    .similar-product {
        padding: 0 5px;
    }

    .similar-product h3 {
        font-size: 11px;
    }

    .similar-rating {
        font-size: 10px;
    }

    .similar-cart {
        min-width: 78px;
        height: 24px;
        font-size: 7.5px;
    }

    .similar-carousel .owl-prev,
    .similar-carousel .owl-next {
        width: 26px;
        height: 26px;
        font-size: 16px !important;
    }
}

/* product section  */