/*
Theme Name: Aina Monzo
Theme URI: ainamonzo.com
Description: Tema nuevo para el proyecto Aina Monzo
Author: Carlos Vaquer
Author URI: carlosvaquer.com
Version: 1.0
*/

/* CSS RESET */

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code, dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}

article, aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

:root {
    --main-bg-color: rgb(248, 248, 248);
    --main-text-color: #050505;
    --light-grey: rgb(191, 191, 191);
    --main-font: sans-serif;

    --font-s: 12px;
    --font-m: 16px;
    --font-xl: 24px;

    --pad-xs: 0.5rem;
    --pad-s: 1rem;
    --pad-xl: 5rem

}


/* my css */

*,
*:after,
*:before {
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 62.5%;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--main-font);
    font-optical-sizing: auto;
    /* font-weight: 400; */
    font-weight: bold;
    font-style: normal;
}

/* Para que el scrollbar en la web no se muestre, si quiero que se muestre eliminarlo */
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

a {
    color: var(--main-text-color);
    text-decoration: none;
}

a:hover {
    color:var(--main-bg-color);
}


ul {
    padding-inline-start: 0;
}

li {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    font-family: var(--main-font);
    font-size: 12px;
    background: none;
    margin: 0;
    padding: 0;
}

::-moz-selection {
    color: rgb(180, 180, 180);
    background: transparent;
}

::selection {
    color: rgb(180, 180, 180);
    background: transparent;
}

/* clases */
.z-9 {
    z-index: 9;
}

.z-99 {
    z-index: 99;
}

.z-999 {
    z-index: 999;
}

.z-9999 {
    z-index: 9999;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.center-absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.balance {
    text-wrap-style: balance;
}

.mobile {
    display: none;
}

.desktop {
    display: block;
}

/* ------------------------------    HOME - MENU       ------------------------------ */

.mobile-menu {
    display: none;
}

body.home .nav-home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-home,
.nav-home ul {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    z-index: 999999;
}

body.home,
body.home html{
    overflow:hidden;
    height:100%;
}

body.home .home-gallery{
    height:100%;
    overflow:hidden;
}

body.home .gallery-column{
    overflow:hidden;
}

.nav-home ul li {
    white-space: nowrap;
}

body.home .menu {
    align-items: center;
}

.menu {
    display: flex;
    gap: 3rem;
    width: 100vw;
    padding: var(--pad-xs) var(--pad-s);
}

.categories-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999999;

    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease-in-out;
}

body:not(.home) .categories-container {
    top: 0;
    transform: translate(-50%, 0);
    padding: var(--pad-xs) 0;
}

.categories-container.active {
    opacity: 1;
    pointer-events: auto;
}

.categories-placeholder {
    width: 50px;
    margin: 0 -9rem;
    flex-shrink: 0;
    transition: width 0.4s ease-in;
}

.categories-placeholder.active {
    width: 400px;
}



.home-gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);       /* cambiar 3 o 4 para las columnas junto con el php */
}

.gallery-column{
    display:flex;
    flex-direction:column;
}

.gallery-column img{
    width:100%;
    display:block;
}



/* ------------------------------    SHOP GALLERY       ------------------------------ */


.shop-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.product-card{
    position:relative;
    overflow:hidden;
}

.product-card img{
    width:100%;
    height: 80vh;
    object-fit:cover;
}

.product-info{
    position:absolute;
    bottom:0;
    left:0;
    right:0;

    display:flex;
    justify-content:space-between;

    padding:.5rem;
}

.product-images{
    position:relative;
}

.image-main,
.image-hover{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.image-hover{
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:opacity .3s ease;
}

.product-card:hover .image-hover{
    opacity:1;
}


.product-price del {
    margin-right: .75rem;
}

.product-price ins {
    color: red;
    text-decoration: none;
}

/* ------------------------------    SINGLE PRODUCT      ------------------------------ */


.single-product {
    display: grid;
    grid-template-columns: 80px 700px minmax(0, 1fr);
    width: 100vw;
}

.single-gallery-arrow {
    display: none;
}

.single-gallery-thumbs{
    position:sticky;
    top:0;

    height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.single-gallery-thumbs img{
    width:80px;
    height:80px;
    display:block;
    object-fit:cover;
    cursor:pointer;
}


.single-gallery-wrapper,
.single-gallery-images,
.single-gallery-image{
    width:700px;
}

.single-gallery-image img{
    width:100%;
    height:auto;
    display:block;

}

.single-product-info {
    position: sticky;
    top: 0;

    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    justify-self: end;  

    padding: var(--pad-s);
}

.single-product-header,
.single-product-description,
.single-product-size,
.single-product-cart{
    width:420px;     
    max-width:100%;
}

.single-product-header{
    display:flex;
    align-items:flex-start;
    gap:2rem;

    padding-bottom: var(--pad-s);
}

.single-product-description{
    padding-bottom: var(--pad-s);
}

.single-product-size{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding-bottom: var(--pad-xs);
}

.single-product-size-buttons{
    display:flex;
    gap:1rem;
    padding-bottom: var(--pad-s);
}

.size-btn{
    background:none;
    border:0;
    padding:0;
    font:inherit;
    cursor:pointer;
}

.size-btn.active{
    text-decoration:underline;
}

.size-guide-popup{
    position:fixed;
    inset:0;

    width:100vw;
    height:100vh;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    z-index:99999;

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

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:opacity .2s ease;

}

.size-guide-popup.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.size-guide-popup-content{
    width:700px;
    height:700px;

    padding:var(--pad-s);

    box-sizing:border-box;

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

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

    border:1px solid var(--main-text-color);
}

.size-guide-header{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;

    align-items:center;

    margin-bottom:3rem;
}

.size-guide-title{
    text-align:left;
}

.measuring-guide-title{
    text-align:left;
    color:var(--light-grey);
}

.size-guide-close {
    width: fit-content;
    justify-self: end;
    cursor: pointer;
}


.size-guide-table{
    display:flex;
    flex-direction:column;

    gap:var(--pad-xs);

    margin-bottom:4rem;
}

.size-guide-row{
    display:grid;
    grid-template-columns:1fr 2fr 2fr 1fr;

    column-gap:2rem;

    align-items:start;
}

.size-guide-row span{
    text-align:left;
}

.size-guide-row-header{
    margin-bottom:var(--pad-xs);
}


.size-guide-text{
    display:flex;
    flex-direction:column;

    gap:0.5rem;

    margin-bottom:4rem;
}

.size-guide-text p{
    margin:0;
    line-height: 1.2;
}


.size-guide-video{
    width:100%;
    margin-top:4rem;
}

.size-guide-video video{
    display:block;
    width:100%;
    height:auto;
}

.size-btn {
    color: #000;
    -webkit-appearance: none;
    appearance: none;
}

.variations select,
.variations select option {
    color: #000;
}

.woocommerce-form-hidden .variations{
    display:none;
}

.woocommerce-form-hidden .quantity{
    display:none;
}

.single_add_to_cart_button{
    width:100%;
    background:#000!important;
    color:#fff!important;
    border:0!important;
    border-radius:0!important;
    text-transform:uppercase;
    padding:1rem!important;
}


.size-guide-btn{
    display:inline-block;
    cursor:pointer;
    font:inherit;
    color:inherit;
}

.woocommerce-form-hidden .quantity{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:fit-content;
    gap:18px;
    margin-bottom:1rem;
}

.woocommerce-form-hidden .qty{
    width:20px;
    padding:0;
    margin:0;
    border:0;
    background:transparent;
    text-align:center;
    font:inherit;
    pointer-events:none;
}

.woocommerce-form-hidden .qty::-webkit-inner-spin-button,
.woocommerce-form-hidden .qty::-webkit-outer-spin-button{
    display:none;
}

.single-qty-minus,
.single-qty-plus{
    border:0;
    background:none;
    cursor:pointer;
    padding:0;
    font:inherit;
}


.single-product-price del {
    margin-right: .75rem;
}

.single-product-price ins {
    color: red;
    text-decoration: none;
}

.woocommerce-form-hidden .quantity{
    display:none;
    align-items:center;
    justify-content:flex-start;
    width:fit-content;
    gap:18px;
    margin-bottom:1rem;
}

.woocommerce-form-hidden .quantity.active{
    display:flex;
}


.woocommerce-order-received .nav-home {
    display: none;
}

.woocommerce-order-received{
    padding: 2rem;
}

.woocommerce-order-received .menu-footer {
    display: flex;
}


/* ------------------------------    CART       ------------------------------ */


/* -------------------------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------------------------- */

:root{
    --cart-width:1100px;
    --cart-footer-width:35%;
    --cart-footer-height:1rem;
}


/* -------------------------------------------------------------------------- */
/* CART */
/* -------------------------------------------------------------------------- */

.woocommerce-cart .site-main,
.cart-page{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:calc(var(--pad-s) * 2) 0;
}

.woocommerce-cart .woocommerce{
    width:90%;
    max-width:1600px;
    margin:0 auto;

    display:flex;
    flex-direction:column;
    align-items:center;
}


/* -------------------------------------------------------------------------- */
/* EMPTY CART */
/* -------------------------------------------------------------------------- */

.cart-empty{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}


/* -------------------------------------------------------------------------- */
/* HIDE DEFAULT WOOCOMMERCE */
/* -------------------------------------------------------------------------- */

.woocommerce-notices-wrapper,
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-cart .coupon,
button[name="update_cart"],
.woocommerce table.cart td.actions,
.woocommerce .cart_totals h2,
.woocommerce .cart_totals tbody tr:first-child{
    display:none!important;
}


/* -------------------------------------------------------------------------- */
/* PRODUCTS */
/* -------------------------------------------------------------------------- */

.woocommerce-cart-form,
.woocommerce table.shop_table,
.woocommerce .cart-collaterals,
.woocommerce .cart_totals{
    width:var(--cart-width);
    max-width:var(--cart-width);
}

.woocommerce table.shop_table{
    border-collapse:collapse;
    border-radius:0;
}


/* -------------------------------------------------------------------------- */
/* TOTAL + CHECKOUT */
/* -------------------------------------------------------------------------- */

.woocommerce .cart-collaterals{
    display:flex;
    justify-content:flex-end;
    margin-top:var(--pad-s);
}

.woocommerce .cart_totals{
    display:flex;
    flex-direction:column;
    align-items:flex-end; /* todo a la derecha */
    width:var(--cart-width);
}

.woocommerce .cart_totals table{
    width:auto;
    margin:0 0 .25rem auto;
    border-collapse:collapse;
}

.woocommerce .cart_totals tbody,
.woocommerce .cart_totals tr{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.woocommerce .cart_totals th,
.woocommerce .cart_totals td{
    display:flex;
    align-items:center;
    justify-content:center;

    height:var(--cart-footer-height);
    padding:0 .35rem;

    border:0;
    background:none;
    box-shadow:none;

    font:inherit;
    white-space:nowrap;
}

.woocommerce .wc-proceed-to-checkout{
    width:40%;         
    margin:0;
    padding:0;
}

.woocommerce .checkout-button{
    display:flex!important;
    align-items:center;
    justify-content:center;

    width:100%;
    height:var(--cart-footer-height)!important;

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

    background:#000!important;
    color:#fff!important;
    border:0!important;
    border-radius:0!important;

    font:inherit!important;
    text-transform:uppercase;
}

.woocommerce .cart_totals table,
.woocommerce .cart_totals tbody,
.woocommerce .cart_totals tr,
.woocommerce .cart_totals th,
.woocommerce .cart_totals td{
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
}

.woocommerce .cart_totals td{
    display:flex;
    justify-content:flex-end !important;
    text-align:right !important;
    padding-right:0 !important;
}

.woocommerce .cart_totals th{
    display:flex;
    justify-content:flex-end !important;
    text-align:right !important;
    padding-right:.25rem !important;
}

.woocommerce .cart_totals table{
    margin-left:auto;
}

.woocommerce .cart_totals tr{
    justify-content:flex-end;
}

.qty::-webkit-outer-spin-button,
.qty::-webkit-inner-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.product-quantity{
    text-align:center !important;
}

.custom-quantity{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    width:100%;
}

.custom-quantity .qty{
    width:20px;
    margin:0;
    padding:0;
    border:0;
    background:transparent;
    text-align:center;
    font:inherit;
    line-height:1;
    pointer-events:none;
}

.custom-quantity button{
    display:flex;
    justify-content:center;
    align-items:center;
    width:16px;
    height:16px;
    border:0;
    background:none;
    padding:0;
    font:inherit;
    cursor:pointer;
}

.woocommerce-cart .cart_totals .order-total,
.woocommerce-cart .cart_totals .cart-subtotal,
.woocommerce-cart .cart_totals .woocommerce-shipping-totals {
    display: none !important;
}


.woocommerce-cart button {
    color: #000;
    -webkit-appearance: none;
    appearance: none;
}

.woocommerce-cart .qty-plus,
.woocommerce-cart .qty-minus {
    color: #000 !important;
    -webkit-appearance: none;
    appearance: none;
}

.single-qty-minus,
.single-qty-plus {
    color: #000 !important;
    -webkit-appearance: none;
    appearance: none;
}

/* ------------------------------    MENU FOOTER      ------------------------------ */

.menu-footer{

    position:fixed;
    bottom:0;
    left:0;

    width:100%;

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

    padding:var(--pad-xs) var(--pad-s);

}

.footer-instagram,
.footer-copyright,
.footer-site,
.footer-links{

    display:flex;
    align-items:center;
}

.footer-links{
    gap:1rem;
}

.footer-site{
    position:relative;
}

.site-popup{
    position:absolute;
    left: 100%;
    bottom:0;
    padding-left: var(--pad-s);


    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:.15rem;

    white-space:nowrap;

    opacity:0;
    pointer-events:none;

    transition:opacity .2s ease;
}

.footer-site:hover .site-popup{

    opacity:1;
    pointer-events:auto;
}

.menu-footer a{

    text-decoration:none;
    color:inherit;
}

.menu-footer a:hover,
.menu-footer span:hover{
    color: var(--main-bg-color);
}


.menu-footer h4:hover{
    color: inherit;
}

.footer-links span{
    cursor:pointer;
}

.site-trigger{
    cursor:pointer;
}

/* ------------------------------    SEASONS       ------------------------------ */


.seasons-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.seasons-intro {
    width: 100%;
    text-align: center;
    padding: 6rem var(--pad-s) 0;
}

.seasons-products {
    width: 100%;
    margin-top: auto;
    padding: var(--pad-s);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--pad-s);
    justify-content: center;
    align-items: center;
}

.seasons-intro h3{
    margin:0;
    font-size:var(--font-s);
}

.seasons-description{
    max-width:600px;
    margin:var(--pad-s) auto 0;

    font-size:var(--font-s);
    line-height:1.2;
    font-weight: normal;
}


.season-product{
    display:block;
    width:100%;
}

.season-product img{
    display:block;
    width:100%;
    height:auto;
}

.season-product-title {
    display: none;
}

/* -------------------------------------------------
   SEASONS — CATALOGUE
------------------------------------------------- */

.seasons-intro,
.seasons-products {
    transition: transform 0.35s ease;
}

body.seasons-catalogue-open .seasons-intro,
body.seasons-catalogue-open .seasons-products {
    transform: translateY(120px);
}



/* ------------------------------    ABOUT       ------------------------------ */


.about-page{
    position:relative;

    width:100%;
    height:100vh;

    overflow:hidden;

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

.about-content{
    position:absolute;

    z-index:10;

    width:min(900px, 85%);

    text-align:center;
}

.about-content p{
    margin:0;

    font-size:var(--font-s);
    line-height:1.2;
    font-weight:normal;
}


.about-carousel{
    position:absolute;

    left:0;
    top:50%;

    width:max-content;
    height:600px;

    display:flex;
    align-items:center;

    gap:var(--pad-s);

    transform:translateY(-50%);
}


.about-carousel-image{
    width:180px;
    flex-shrink:0;

    transform:translateY(var(--curve));
}

.about-carousel-image img{
    display:block;

    width:100%;
    height:auto;

    object-fit:cover;
}

.about-carousel-image:nth-child(1){
    --curve:320px;
}

.about-carousel-image:nth-child(2){
    --curve:-80px;
}

.about-carousel-image:nth-child(3){
    --curve:180px;
}

.about-carousel-image:nth-child(4){
    --curve:-250px;
}

.about-carousel-image:nth-child(5){
    --curve:60px;
}

.about-carousel-image:nth-child(6){
    --curve:-320px;
}

.about-carousel-image:nth-child(7){
    --curve:220px;
}

.about-carousel-image:nth-child(8){
    --curve:-140px;
}

.about-carousel-image:nth-child(9){
    --curve:280px;
}

.about-carousel-image:nth-child(10){
    --curve:-30px;
}

.about-carousel-image:nth-child(11){
    --curve:320px;
}

.about-carousel-image:nth-child(12){
    --curve:-80px;
}

.about-carousel-image:nth-child(13){
    --curve:180px;
}

.about-carousel-image:nth-child(14){
    --curve:-250px;
}

.about-carousel-image:nth-child(15){
    --curve:60px;
}

.about-carousel-image:nth-child(16){
    --curve:-320px;
}

.about-carousel-image:nth-child(17){
    --curve:220px;
}

.about-carousel-image:nth-child(18){
    --curve:-140px;
}

.about-carousel-image:nth-child(19){
    --curve:280px;
}

.about-carousel-image:nth-child(20){
    --curve:-30px;
}

.about-carousel-image img{
    display:block;

    width:100%;
    height:auto;

    object-fit:cover;

    filter:blur(18px);

    transition:filter .3s ease;
}

.about-carousel-image:hover img{
    filter:blur(0);
}


.about-carousel{
    z-index:0;
}

.about-content{
    z-index:10;
}

.nav-home{
    z-index:999999;
}

.menu-footer{
    z-index:100;
}
/* ------------------------------   FAQ POPUP    ------------------------------ */

.footer-popup{
    position:fixed;
    inset:0;

    width:100vw;
    height:100vh;

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

    z-index:9999;

    opacity:0;
    visibility:hidden;
    pointer-events:none;

    transition:opacity .15s ease;

    overflow-y:auto;
}

.footer-popup.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}


/* ------------------------------
   CONTENT
------------------------------ */

.faq-popup-content{
    width:100%;
    min-height:100vh;

    padding:var(--pad-s);
}


/* ------------------------------
   GRID
------------------------------ */

.faq-grid{
    display:grid;

    grid-template-columns:repeat(3, 1fr);

    column-gap:3rem;
    row-gap:5rem;

    padding-top:5rem;
}


/* ------------------------------
   COLUMNA
------------------------------ */

.faq-item{
    width:100%;
    min-width:0;

    display:flex;
    flex-direction:column;

    align-items:flex-start;

    gap:var(--pad-s);

    text-align:left;
}


/* ------------------------------
   TITULO
------------------------------ */

.faq-item h3{
    text-align:left;
    display: inline-block;
}


/* ------------------------------
   PREGUNTAS
------------------------------ */

.faq-question{
   

    display:grid;

    grid-template-columns:auto 1fr;

    column-gap:1rem;

    align-items:start;

    cursor:pointer;

    text-align:left;
}


.faq-question .faq-answer{
    grid-column:2;
    grid-row:2;

    width:100%;

    margin:0;
    padding-top:var(--pad-xs);
}


/* ------------------------------
   NUMERACIÓN
------------------------------ */

.faq-question::before{
    counter-increment:faq-question;

    content:"(" counter(faq-question) ")";


    white-space:nowrap;
}


/* ------------------------------
   TEXTO DE LA PREGUNTA
------------------------------ */

.faq-question p{
    width:100%;
    text-align:left;
}


/* ------------------------------
   RESPUESTA
------------------------------ */

.faq-answer{
    width:100%;
    display:none;
    text-align:left;
    font-weight:normal;
    line-height:1.2;
    letter-spacing:0.01rem;
    cursor:default;
}

.faq-question.active .faq-answer{
    display:block;
}


/* ------------------------------
   CONTADOR
------------------------------ */

.faq-grid{
    counter-reset:faq-question;
}


/* ------------------------------
   CLOSE
------------------------------ */

.footer-popup-close{
    position:relative;
    display: inline-block;
    padding-top: 5rem;
    padding-left: var(--pad-s);
    cursor:pointer;

}

.footer-popup-close:hover {
    color: var(--main-bg-color);
}



/* ------------------------------    CHECKOUT       ------------------------------ */

.wc-block-components-sidebar-layout {

    padding: var(--pad-xl) var(--pad-s);
}

h2.wc-block-components-title.wc-block-components-title {
    font-size: 1rem;
}



/* ------------------------------    MEDIA Q       ------------------------------ */


/*BIG SCREEN*/
/* @media screen and (min-width: 1920px) {
      body, html{
          font-size: 1rem;
      }
  } */

/*DESKTOP RESPONSIVE*/
@media screen and (max-width: 1280px) {
    /**** GENERAL ****/
}


/*HOVER*/
@media screen and (min-width: 1024px) {}



/*IPAD RESPONSIVE*/
@media screen and (max-width: 1025px) {


    /**** GENERAL ****/

    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }


 /* ------------------------------ TABLET - SEASONS ------------------------------ */

 .seasons-description {
    max-width: 800px; 
 }

.seasons-intro {
    padding-top: 20rem;
}

 .seasons-products {
    margin-top: 5rem;
 }

  /* ------------------------------ TABLET - SINGLE PRODUCT ------------------------------ */

 .shop-grid {
    grid-template-columns: repeat(2, 1fr);
 }
.product-card img {
    height: 50vh;
}

  /* ------------------------------ MOBILE - SHOP GALLERY ------------------------------ */

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

    .product-card img {
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }


/* ------------------------------
   TABLET — SINGLE PRODUCT.
------------------------------ */

.single-product {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-gallery-wrapper {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    align-items: center;

    width: 100%;

    padding-top: 5rem;
}

.single-gallery-thumbs {
    display: none;
}

.single-gallery-images {
    grid-column: 2;

    display: flex;
    width: 100%;

    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.single-gallery-images::-webkit-scrollbar {
    display: none;
}

.single-gallery-image {
    flex: 0 0 100%;
    width: 100%;

    scroll-snap-align: start;

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

.single-gallery-image img {
    display: block;
    width: 90%;
    height: auto;
}

.single-gallery-arrow {
    display: flex;

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

    width: 50px;
    height: 60px;

    padding: 0;
    margin: 0;

    border: 0;
    background: none;

    color: #000;
    font: inherit;
    font-size: 20px;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.single-gallery-prev {
    grid-column: 1;
}

.single-gallery-next {
    grid-column: 3;
}

.single-product-info {
    position: static;

    width: 100%;
    height: auto;

    padding: var(--pad-s);

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
}

.single-product-header,
.single-product-description,
.single-product-size,
.single-product-cart {
    width: 100%;
}


}





@media screen and (max-width: 768px) {

 /* ------------------------------ MOBILE - MENU ------------------------------ */
.nav-home > .menu {
    display: none;
}

.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--pad-s);
    box-sizing: border-box;
    justify-content: space-between;
    z-index: 999999;
    align-items: center;
}

.mobile-menu-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--pad-s);
    position: relative;
}

.mobile-menu-left > a,
.mobile-cart,
.mobile-menu-links a,
#mobile-menu-btn {
    font-size: var(--font-m);
}

.mobile-menu-left > a {
    line-height: 1;
}

#mobile-menu-btn {
    border: 0;
    background: none;
    padding: 0;
    width: fit-content;
    color: inherit;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    font-size: var(--font-m);
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.mobile-menu-links {
    display: none;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: calc(var(--font-s) + 8px);
    left: 0;
}

.mobile-menu-links.active {
    display: flex;
    padding-top: var(--pad-s);
}

.mobile-menu a {
    color: black;
    -webkit-tap-highlight-color: transparent;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 999998;

        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        opacity: 0;
        pointer-events: none;
        transition: opacity .5s ease;
    }

    body.menu-open::before {
        opacity: 1;
    }

    .mobile-menu {
        z-index: 999999;
    }

 /* ------------------------------ MOBILE - MENU FOOTER ------------------------------ */

.menu-footer {
    font-size: var(--font-s);
}

.footer-links {
    gap: 0;
}

.menu-footer > :nth-child(3),
.menu-footer > :nth-child(2) {
    display: none;
}

.footer-links > :nth-child(2) {
    display: none;
}

  /* ------------------------------ MOBILE - HOME ------------------------------ */

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


/* ------------------------------  MOBILE — SEASONS ------------------------------ */

    .seasons-intro {
        padding: 7rem var(--pad-s) 0;
    }

    .seasons-products {
        padding: 5rem var(--pad-s) 0;
        display: flex;
        flex-direction: column;
        gap: var(--pad-s);
    }

.season-product {
    position: relative;
    width: 100%;
}

.season-product-title {
    display: block;
    padding: var(--pad-s) 0;
    text-align: center;
    font-size: var(--font-s);
    color: black;
}

  /* ------------------------------ MOBILE - SHOP GALLERY ------------------------------ */

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-top: calc(var(--pad-s) + var(--font-s) *3);
    }

    .product-card img {
        height: auto;
        aspect-ratio: 3 / 4;
        object-fit: cover;
    }

    .product-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
    }

    .product-info {
    display: flex;
    align-items: flex-end;
    }

    .product-info > span:first-child {
        align-self: flex-end;
    }

    .product-price del,
    .product-price ins {
        display: block;
        margin-right: 0;
    }

    .product-price ins {
        color: red;
        text-decoration: none;
    }



/* ------------------------------
   MOBILE — SINGLE PRODUCT.
------------------------------ */

.single-product {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: calc(var(--pad-s) + var(--font-s));
}

.single-gallery-wrapper {
    order: 1;

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

    align-items: center;

    width: 100%;
}

.single-gallery-images {
    grid-column: 2;

    display: flex;

    width: 100%;

    overflow-x: auto;

    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;

    align-items: flex-end;
}

.single-gallery-images::-webkit-scrollbar {
    display: none;
}

.single-gallery-image {
    flex: 0 0 100%;
    width: 100%;

    scroll-snap-align: start;

    display: flex;
    align-items: flex-end;
}

.single-gallery-image img {
    display: block;
    height: auto;
}

.single-gallery-thumbs {
    display: none;
}

.single-gallery-arrow {
    display: flex;

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

    width: 30px;
    height: 60px;

    padding: 0;
    margin: 0;

    border: 0;
    background: none;

    color: #000;
    font: inherit;
    font-size: 20px;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.single-gallery-prev {
    grid-column: 1;
}

.single-gallery-next {
    grid-column: 3;
}

.single-product-info {
    order: 3;

    width: 100%;
    height: auto;

    padding: var(--pad-s);

    box-sizing: border-box;
}

.size-guide-popup-content {
    width: calc(100% - 2 * var(--pad-s));
    height: 75vh;
    padding: var(--pad-s);
}

.size-guide-header {
    margin-bottom: 2rem;
}

.size-guide-table {
    gap: var(--pad-xs);
    margin-bottom: 2rem;
}

.size-guide-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: .5rem;
}

.size-guide-text {
    margin-bottom: 2rem;
}

.size-guide-video {
    margin-top: 2rem;
}

  /* ------------------------------ MOBILE - ABOUT ------------------------------ */
    
    body.about {
        overflow: hidden;
        height: 100%;
    }

    .about-page {
        width: 100%;
        height: 100%;
        min-height: 100%;
        overflow: hidden;

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

    .about-content {
        position: absolute;
        width: calc(100% - 2 * var(--pad-s));
        max-width: none;
        text-align: center;

        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .about-carousel {
        gap: 8px;
        height: 100%;
        top: 50%;
    }

    .about-carousel-image {
        width: 110px;
    }

    .faq-popup-content {
    padding: var(--pad-s);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: var(--pad-m);
    padding-top: var(--pad-m);
}

.faq-item {
    padding-top: var(--pad-xl);
    gap: var(--pad-s);
}

.faq-item:last-child {
    padding-bottom: var(--pad-xl);
}

.faq-question {
    gap: var(--pad-xs);
}

    /* ------------------------------ MOBILE — CART ------------------------------ */

.woocommerce-cart .site-main,
.cart-page {
    min-height: 100vh;
    padding: calc(var(--pad-s) * 3) var(--pad-s);
    align-items: flex-start;
}

.woocommerce-cart .woocommerce {
    width: 100%;
}

.woocommerce-cart-form,
.woocommerce table.shop_table,
.woocommerce .cart-collaterals,
.woocommerce .cart_totals {
    width: 100%;
    max-width: 100%;
}

.woocommerce table.shop_table {
    font-size: var(--font-s);
}

.woocommerce .cart-collaterals {
    margin-top: var(--pad-s);
}

.woocommerce .cart_totals {
    width: 100%;
}

.woocommerce .wc-proceed-to-checkout {
    width: 100%;
}

.woocommerce .checkout-button {
    height: 2.5rem !important;
}

}




@media (min-width: 1440px) {

    html {
        font-size: var(--font-xl);
    }

    .single-product {
        grid-template-columns: 140px minmax(0, 1fr) minmax(400px, 0.8fr);
    }

    .single-gallery-thumbs {
        width: 140px;
    }

    .single-gallery-thumbs-track {
        width: 100%;
    }

    .single-gallery-thumbs-track img {
        width: 140px;
        height: 140px;
        object-fit: cover;
    }

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

    .single-gallery-images {
        width: 100%;
    }

    .single-gallery-image {
        position: relative;
        width: 100%;
    }

    .single-gallery-image img {
        display: block;
        width: 100%;
        height: auto;
    }
}