main{
    --primary-color:#FBA400;
    --verde-color:#00432C;
    --verde-claro:#015940;
    --burdeos-color:#631927;
    --claro-color:#F9B233;
    --black:#000;
    --white:#fff;
    --font-cheltenham:'ITC Cheltenham Std';
}

main p{
    margin-bottom: 20px;
    color:  var(--black);
    font-family: "ITC Cheltenham Std";
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}
main h1{
    color: var(--black);
    font-family: "ITC Cheltenham Std";
    font-size: 50px;
    font-weight: 700;
    line-height: 54px; 
    margin: 0 0 20px;
}
main h2{
    color: var(--black);
    font-family: "ITC Cheltenham Std";
    font-size: 25px;
    font-weight: 700;
    line-height: 30px; 
    margin: 0 0 20px;
}
main a{
    text-decoration: none;
    color: var(--black);
    text-decoration: underline;
}
main a:hover,main a:visited{
    color: var(--black);
}

main ul
{
    margin: 0 0 0 30px;
    padding: 0;
}

main li:not(:last-child)
{
    margin-bottom: 10px;
}

main #home.banner{
    padding: 0;
    height: clamp(450px,40vw,637px);
}


main #home.banner h1{
    font-size: clamp(30px,3vw,50px);
    max-width: clamp(318px,38vw,670px);
    line-height: clamp(35px,3vw,54px);
}

main #home.banner p{
    font-size: clamp(18px,2vw,20px);
    max-width: clamp(318px,40vw,670px);
}

main #home.banner .banner-content{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}



main #home.banner .banner-content .container-text{
    padding-top: 13%;
    max-width: 1800px;
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

main #home.banner .banner-content .container-text .banner-text::after{
    content: '';
    position: absolute;
    background-image: url("../images/birth-year.svg");
    background-size: contain;
	background-repeat: no-repeat;
    height: clamp(82px, 10.5vw, 206px);
    aspect-ratio: 300/206;
    left: 100%;
    z-index: 1;
    bottom: 0;
}

main #home.banner .banner-content .banner-image img{
    position: absolute;
    right: 0;
    top: 85px;
    height: clamp(450px,40vw,637px);
}

main #home.banner .banner-content .container-text .banner-text{
    position: relative;
    max-width: clamp(318px,46vw,810px);
    width: 100%;
    height: 100%;
    max-height: 343px;
}

main .feature{
    max-width: 1808px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 35px 0;
}

main .feature .swiper-button-prev, main .feature .swiper-button-next{
    position: relative;
}

main .feature .swiper .swiper-wrapper .swiper-slide {
    border-radius: 5px;
    border: 2px solid var(--claro-color);
    box-sizing: border-box;    
}

main .feature .swiper .swiper-wrapper .swiper-slide .feature-box{
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 30px;
}


main .feature .swiper .swiper-wrapper .swiper-slide .feature-box p{
    font-style: italic;
}

main .feature .swiper .swiper-wrapper .swiper-slide:hover {
    outline: 5px solid var(--burdeos-color);
    outline-offset: -5px;
    box-shadow: 0 5px 20px 0 rgba(99, 25, 39, 0.25);
}

main .feature .swiper-button-prev::after {
    content: "";
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 26px;
    height: 46px;
    display: block;
}

main .feature .swiper-button-next::after {
    content: "";
    background-image: url("../images/arrow.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 26px;
    height: 46px;
    display: block;
    transform: rotate(180deg);
}

main .packaging-free{
    padding: 60px 30px;
    background-color: var(--black);
}

main .packaging-free .pack-content{
    max-width: 1680px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

main .packaging-free .pack-content .text-content{
    display: flex;
    flex-direction: column;
    max-width: 483px;
}

main .packaging-free .pack-content img{
    height: 100%;
    min-height: 221px;
    min-width: 186px;    
}

main .packaging-free .pack-content .text-content .title{
    font-size: 40px;
    font-weight: 700;
    line-height: 45px;
    margin: 0 0 20px;
    color: var(--white);
}

main .packaging-free .pack-content .text-content .subtitle{
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    margin: 0 0 10px;
    color: var(--white);
}

/* 404 */
.error-404 {
    min-height: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.error-404 .content-wrapper {
    margin: 0 auto;
    max-width: 720px;
    text-align: center;
}


.error-404 .button{
    display: flex;
    height: 50px;
    padding: 16px 30px 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    background: var(--verde-color);
    color: var(--white);
    text-transform: uppercase;
    font-family: "ITC Cheltenham Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    width: 100%;
}

.error-404 .button:hover{
    background: var(--verde-claro);
}


.woocommerce-cart main .wp-block-woocommerce-empty-cart-block{
    min-height: 20vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

main .packaging-free .pack-content .text-content p:not([class]){
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 45px;
    color: var(--white);
}

main .packaging-free .pack-content .text-content .container-button{
    display: flex;
    gap: 20px;
    align-items: center;
}

main .packaging-free .pack-content .text-content .container-button .button{
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: max-content;
    padding: 14px 30px;
    background-color: var(--primary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; 
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--verde-color);
    border-radius: 5px;
}

main .packaging-free .pack-content .text-content .container-button .button::before{
    background-image: url(../images/download-icon.svg);
	background-repeat: no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    background-position: center;
}

main .packaging-free .pack-content .text-content .container-button::after{
    background-image: url(../images/cut-icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
    content: "";
    width: 76px;
    height: 35px;
}


main .t-shirt-content{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1720px;
    margin: 0 auto;
    padding: 40px 20px;
}

main .t-shirt-content .images-container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: 1001px;
}

main .t-shirt-content .images-container img{
    min-height: 420px;
    max-width: 410px;
}


main .t-shirt-content .images-container .packaging{
    max-height: 474px;
}

main .t-shirt-content .images-container .model{
    position: relative;
}

main .t-shirt-content .images-container .model::after{
    content: '';
    position: absolute;
    background-image: url("../images/thinking-mu.svg");
    background-size: contain;
	background-repeat: no-repeat;
    height: clamp(10px, 10.5vw, 45px);
    aspect-ratio: 207/45;
    left: 90%;
    z-index: 1;
    top:147px
}

main .t-shirt-content .text-container{
    display: flex;
    flex-direction: column;
    max-width: 626px;
}

main .t-shirt-content .text-container h2{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;    
}

main .t-shirt-content .text-container h2{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;    
    margin: 0;
}

main .t-shirt-content .text-container .subtitle{
    margin-top: 5px;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;    
}

main .t-shirt-content .text-container p:not([class]){
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;    
}

main .t-shirt-content .text-container .price{
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 45px;
    margin: 50px 0 0;
    color: var(--verde-claro);
}

main .t-shirt-content .text-container .button{
    background-color: var(--verde-color);
    color: var(--white);
    max-width: 280px;
    padding: 20px 30px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px; 
    letter-spacing: 0.5px;
    text-transform: uppercase;    
    text-align: center;
    border-radius: 5px;
    margin: 0;

}

main .contact-page {
    max-width: 1709px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 0 20px;
}

main .contact-page .text-container{
    max-width: 793px;
    padding-top: 14%;
}

main .contact-page .text-container span{
    font-style: italic;
}

main .contact-page .text-container h1{
    margin-bottom: 0;
}

main .contact-page .text-container .subtitle{
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
}


main .contact-page .contact-form{
    max-width: 698px;
    padding-top: 6%;
    width: 100%;
    min-width: 430px;
}

main .contact-page .contact-form .form-label{
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

main .contact-page .contact-form .form-label.form-checkbox{
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    font-family: var(--font-cheltenham);
    display: flex;
    align-items: center;
}    

main .contact-page .contact-form .form-label br{
    display: none;
}

main .contact-page .contact-form .form-label.form-checkbox .wpcf7-list-item{
    margin: 0 10px 0 0;
}

main .contact-page .contact-form .form-label.form-checkbox input{
    width: 20px;
    height: 20px;
}

.wpcf7-response-output{
    border-color: var(--claro-color);
}


main .contact-page .contact-form input[type="text"],
main .contact-page .contact-form input[type="email"], 
main .contact-page .contact-form input[type="url"],
main .contact-page .contact-form input[type="password"],
main .contact-page .contact-form input[type="search"],
main .contact-page .contact-form input[type="number"],
main .contact-page .contact-form input[type="tel"],
main .contact-page .contact-form input[type="range"],
main .contact-page .contact-form input[type="date"],
main .contact-page .contact-form input[type="month"],
main .contact-page .contact-form input[type="week"],
main .contact-page .contact-form input[type="time"],
main .contact-page .contact-form input[type="datetime"],
main .contact-page .contact-form input[type="datetime-local"],
main .contact-page .contact-form input[type="color"],
main .contact-page .contact-form textarea{
    width: 100%;
    height: 50px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #808080;
}

main .contact-page .contact-form textarea{
    height: 90px;
}

main .contact-page .contact-form .form-submit{
    display: flex;
    height: 50px;
    padding: 16px 30px 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    background: var(--verde-color);
    color: var(--white);
    text-transform: uppercase;
    font-family: "ITC Cheltenham Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    width: 100%;    
}

main .contact-page .contact-form .form-submit:hover{
    background: var(--verde-claro);
}

.woocommerce-cart main{
    max-width: 1568px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    font-family: "ITC Cheltenham Std";
}

.woocommerce-cart main a{
    color: var(--black);
}

.wp-block-woocommerce-cart-totals-block{
    padding-top: 6%;
}

.wp-block-woocommerce-cart-items-block{
    padding-top: clamp(6%,12vw,16%);
}

.woocommerce-cart main .wc-block-components-totals-coupon__input input{
    display: flex;
    height: 50px;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px 0 0 5px;
    align-items: center;
}

.woocommerce-cart main .wc-block-components-totals-coupon__input label{
    font-size: 16px;
}

.woocommerce-cart main .wp-block-woocommerce-cart-order-summary-coupon-form-block.wc-block-components-totals-wrapper{
    border-top: 0;
}

.woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img{
    min-width: 130px;
    max-width: none;
}

.woocommerce-cart main .wc-block-formatted-money-amount,
.woocommerce-cart main .wc-block-components-totals-item__value{
    color: var(--verde-claro);
    font-weight: 700;
}

.woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
.woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-image,
.woocommerce-cart main .wc-block-cart .wc-block-cart__totals-title{
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: none;
}

.woocommerce-order-received main.site-main{
    padding-top: 90px;
}

main .wc-block-components-totals-coupon__form {
    gap: 0;
}

.wc-block-components-totals-coupon__button{
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 0 5px 5px 0;
    border: 1px solid var(--verde-claro);
    background: var(--primary-color);
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;    
    color: var(--verde-color);
    font-family: "ITC Cheltenham Std";
}

.woocommerce-checkout main .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button{
    padding-left: 0;
    padding-right: 0;
}

 main .wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
    opacity: 1;
}

.woocommerce-cart main .wc-block-cart__submit-button{
    display: flex;
    height: 50px;
    padding: 16px 30px 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    background: var(--verde-color);
    color: var(--white);
    text-transform: uppercase;
    font-family: "ITC Cheltenham Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
}

.woocommerce-cart main .wc-block-cart__submit-button:hover{
    background: var(--verde-claro);
}

.woocommerce-checkout main{
    max-width: 1428px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    font-family: "ITC Cheltenham Std";
}

.woocommerce-checkout main a{
    color: var(--black);
}

.woocommerce-checkout main .wc-block-components-form .wc-block-components-checkout-step{
    margin-bottom: 40px;
}

.woocommerce-checkout main .wp-block-woocommerce-checkout{
    padding-top: 60px;
}

.woocommerce-checkout main .checkout-sidebar-place-order-wrap{
    margin-top: 40px
}
.woocommerce-checkout main .wc-block-components-checkout-place-order-button {
    display: flex;
    height: 50px;
    padding: 16px 30px 12px 30px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    align-self: stretch;
    border-radius: 5px;
    background: var(--verde-color);
    color: var(--white);
    text-transform: uppercase;
    font-family: "ITC Cheltenham Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    border: none;
    width: 100%;
}

.woocommerce-checkout main .wc-block-components-checkout-place-order-button:hover{
    background: var(--verde-claro);
}

.woocommerce-checkout main .wc-block-components-title.wc-block-components-title {
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;    
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.woocommerce-checkout main .wc-block-checkout__form .wc-block-components-text-input input,
.woocommerce-checkout main .wc-block-checkout__form .wc-blocks-components-select__container{
    border: none;
    height: 50px;
}

.woocommerce-checkout main .wc-block-checkout__form .wc-block-components-text-input label,
.woocommerce-checkout main .wc-block-checkout__form .wc-blocks-components-select__containerlabel,
.woocommerce-checkout main .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select,
.woocommerce-checkout main .wc-block-components-text-input.wc-block-components-totals-coupon__input label,
.woocommerce-checkout main .wc-block-components-form .wc-block-components-text-input input:autofill, 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="number"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="password"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="text"], 
.wc-block-components-form .wc-block-components-text-input.is-active input[type="url"], 
.wc-block-components-text-input input:autofill, .wc-block-components-text-input.is-active input[type="email"], 
.wc-block-components-text-input.is-active input[type="number"], .wc-block-components-text-input.is-active input[type="password"], 
.wc-block-components-text-input.is-active input[type="tel"], 
.wc-block-components-text-input.is-active input[type="text"], 
.wc-block-components-text-input.is-active input[type="url"],
.woocommerce-checkout main .wc-block-checkout__add-note .wc-block-components-textarea
{
    font-size: 16px;
    border: 0;
}

.woocommerce-checkout main .wc-block-components-checkout-step__heading {
    margin-bottom: 30px;
}

.woocommerce-checkout main .wc-block-checkout__contact-fields, 
.woocommerce-checkout main .wp-block-woocommerce-checkout-payment-block, 
.woocommerce-checkout main .wc-block-components-form .wc-block-checkout__order-notes{
    margin-bottom: 20px;
}

.woocommerce-checkout main .wc-block-components-radio-control-accordion-option {
    border-radius: 0;
    box-shadow: none;
    border: 2px solid var(--claro-color);
}

.woocommerce-checkout main .wc-block-components-radio-control--highlight-checked::after{
    border: none;
}


.woocommerce-checkout main .wc-block-components-address-card,
.woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-block{
    border: 2px solid var(--claro-color);
    border-radius: 0;
}

.woocommerce-checkout main .wc-block-components-totals-wrapper,
.woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-totals-block{
    border-top: 2px solid var(--claro-color);
}

.woocommerce-checkout main .wc-block-components-radio-control{
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
}

.regalitodedios-checkout-sidebar-button{
    display: none;
}
.regalitodedios-checkout-sidebar-button .wc-block-components-checkout-place-order-button{
    width: 100%;
}


.woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-subtotal-block.wc-block-components-totals-wrapper{
    padding-bottom: 16px;
}

.wp-block-woocommerce-checkout-order-summary-discount-block.wc-block-components-totals-wrapper,
.wp-block-woocommerce-checkout-order-summary-fee-block.wc-block-components-totals-wrapper{
    display: none;
}

.woocommerce-checkout main #wc-block-components-totals-coupon__input-coupon {
    display: flex;
    height: 50px;
    padding: 10px 15px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px 0 0 5px;
    align-items: center;
}


.woocommerce-checkout main .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]{
    width: 20px;
    height: 20px;
    min-width: 0;
    min-height: 0;
    margin-right: 10px;
    border-radius: 5px;
}

.woocommerce-checkout main .wc-block-components-radio-control .wc-block-components-radio-control__input{
    width: 20px;
    height: 20px;
    min-width: 0;
    min-height: 0;
    top: auto;
    transform: none;    
}

.woocommerce-checkout main .wc-block-components-checkbox .wc-block-components-checkbox__mark {
    margin-top: 0;
    margin-left: 2px;
}

.woocommerce-checkout main .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity{
    background-color: var(--burdeos-color);
    color: var(--white);
    font-weight: 700;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    box-shadow: none;    
}

.woocommerce-checkout main .wc-block-checkout__shipping-option .wc-block-components-radio-control__option {
    padding: 20px 20px 20px 50px;
    border-radius: 0;
    border: 2px solid var(--claro-color);
}

.woocommerce-checkout main .wc-block-components-checkout-return-to-cart-button{
    display: none;
}

.woocommerce-checkout main .wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    width: 100%;
}

.woocommerce-checkout main .wc-block-components-product-price__value,
.woocommerce-checkout main .wc-block-components-formatted-money-amount,
.woocommerce-checkout main .wc-block-components-totals-item__value,
.woocommerce-checkout main .wc-block-checkout__shipping-option--free{
    color: var(--verde-claro);
    font-size: 18px;
    font-weight: 700;
}

.woocommerce-checkout main .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control__option::after {
    content: none;
}

.woocommerce-checkout main .wc-block-components-totals-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.woocommerce-checkout main .wc-block-components-totals-item__label{
    flex: 1;
}

.woocommerce-checkout main p,
.woocommerce-checkout main span,
.woocommerce-checkout main div
{
    font-size: 16px;
}

.woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text{
    font-size: 18px;
    font-weight: 700;
}

.woocommerce-checkout main .wc-block-components-radio-control__option.wc-block-components-radio-control__option-checked{
    background-color: var(--claro-color);
    box-shadow: none;
}

.woocommerce-checkout main .wc-block-components-radio-control-accordion-content{
    padding: 12px 30px;
    box-shadow: none;
}

.woocommerce-checkout main  .wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option::after {
    content: none;
}

.woocommerce-order-received main .woocommerce ul.order_details li{
    border-right: 1px solid rgba(0,0,0,.1);
}

/* Pagina terminos y condiciones*/
.legal-page {
    max-width: 1468px;
    padding: min(11%, 220px) 20px 0;
    margin: 0 auto 40px;
}
.legal-page h2 {
    margin-top: 40px;
}
.legal-page *:last-child
{
    margin: 0;
}

@media (max-width:1000px){
    main #home.banner .banner-content .container-text .banner-text::after{
        left: 90%;
    }    
    main #home.banner h1 {
        max-width: clamp(198px,24vw,670px);
    }

    main #home.banner .banner-content .banner-image img {
        right: -75px;
    }
    main .packaging-free .pack-content .text-content .container-button::after{
        width: 54px;
        height: 25px;
    }    

    main .packaging-free .pack-content .text-content .container-button .button{
        padding: 14px 9px;
    }    

    main .contact-page .text-container{
        padding-top: 6%;
    }
    .legal-page {
        padding: 6% 20px 0;
    }
}
@media (max-width:820px){

    main p{
        margin-bottom: 15px;
        font-size: 18px;
        line-height: 25px;
    }
    main h2
    {
        font-size: 20px;
        line-height: 25px;
        margin: 0 0 10px;
    }
    main ul
    {
        margin: 0 0 0 30px;
        padding: 0;
    }
    main li
    {
        font-size: 18px;
        line-height: 25px;
    }
    main li:not(:last-child)
    {
        margin-bottom: 5px;
    }

    main #home.banner .banner-content .banner-image img{
        position: relative;
        height: 100%;
        width: 100%;
        top: 0;
        right: 0;
    } 

    main #home.banner {
        height: auto;
    }        

    main #home.banner .banner-content{
        display: flex;
        flex-direction: column;
        padding: 0;
        gap: 20px;
    }    

    main #home.banner .banner-content .banner-image{
        order: 1;
    }

    main #home.banner .banner-content .container-text .banner-text{
        max-width: none;
    }

    main #home.banner .banner-content .container-text{
        order: 2;
        padding: 0 30px;
        margin: 0;
    }

    main #home.banner h1{
        max-width: none;
        padding-right: 20%;
    }
    main #home.banner p{
        max-width: none;
    }

    main #home.banner .banner-content .container-text .banner-text::after{
        right: -20px;
        top: -70px;
        left: auto;
    }   
    
    



    main .feature{
        gap: 20px;
        padding: 30px 0 40px;
    }

    main .feature .swiper .swiper-wrapper .swiper-slide .feature-box{
        height: 290px;
        padding: 0 30px;
    }

    main .feature .swiper .swiper-wrapper .swiper-slide {
        border-right: 3px solid var(--claro-color);
    }    


    main .feature .swiper-button-next::after,
    main .feature .swiper-button-prev::after {
        width: 15px;
        height: 26px;
        background-size: contain;

    }







    main .packaging-free{
        padding: 45px 30px;
    }

    main .packaging-free .pack-content{
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    main .packaging-free .pack-content .text-content{
        order: 2;
        max-width: none;
        margin-bottom: 45px;
    }

    main .packaging-free .pack-content .text-content .title{
        font-size: 26px;
        line-height: 30px;
    }

    main .packaging-free .pack-content .text-content .subtitle{
        font-size: 20px;
        line-height: 25px;
    }

    main .packaging-free .pack-content .text-content p:not([class]){
        font-size: 18px;
        line-height: 25px;
        margin: 0 0 25px;
    }

    main .packaging-free .pack-content .text-content .container-button{
        gap: 15px;
    }


    main .packaging-free .pack-content .text-content .container-button .button{
        padding: 14px 26px;
    }


    main .packaging-free .pack-content .text-content .container-button::after{
        width: 54px;
        height: 25px;
    }

    main .packaging-free .pack-content .close-box{
        order: 1;
        margin-bottom: 25px;
        padding: 0 50px;
    }

    main .packaging-free .pack-content .open-box{
        order: 3;
        padding: 0 60px;
    }

    
    main .packaging-free .pack-content .close-box img{
        min-height: 270px;
        min-width: 221px;
    }
    main .packaging-free .pack-content .open-box img{
        min-height: 265px;
        min-width: 275px;
    }


    main .contact-page {
        flex-direction: column;
        gap: 20px;
        padding: 0 30px;
    }

    main .contact-page .text-container{
        padding-top: 45px;
    }
    .legal-page {
        padding: 45px 20px 0;
    }
    .legal-page h1
    {
        font-size: 35px;
        line-height: 40px;
        margin-bottom: 25px;
    }
    .legal-page h2
    {
        margin-top: 25px;
        font-size: 20px;
        line-height: 25px;
    }
    main .contact-page .text-container h1{
        font-size: 30px;
        line-height: 35px;
    }

    main .contact-page .text-container .subtitle{
        font-size: 20px;
        line-height: 25px;
    }

    main .contact-page .text-container p:not([class]){
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 15px;
    }    


    main .contact-page .contact-form{
        padding-top: 0%;
        min-width: 0;
    }

    main .contact-page .contact-form p{
        margin-bottom: 15px;
    }    

    main .contact-page .contact-form .form-label{
        font-size: 18px;
        line-height: 25px;
    }


    .woocommerce-order-received main.site-main{
        padding-top: 60px;
    }

    .woocommerce-order-received main .woocommerce ul.order_details li{
        border: none;
        float: none;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        border-top: 1px solid rgba(0,0,0,.1);
    }

    .woocommerce-order-received main .woocommerce ul.order_details li:first-child {
        border-top: none;
    }


    .woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details{
        border: 1px solid rgba(0,0,0,.1);
        padding-left: 0;
        border-radius: 5px;
    }

    .woocommerce-order-received main .woocommerce .woocommerce-customer-details .woocommerce-column__title{
        margin-top: 20px;
    }

    .woocommerce-order-received main .woocommerce .col2-set::before{
        content: none;
    }

}

body.single-product{
    position: relative;
}

body.single-product .product-redirect-overlay{
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    background: inherit;
    color: var(--black, #000);
    font-family: var(--font-cheltenham, "ITC Cheltenham Std", serif);
    font-size: 24px;
    z-index: 9999;
}

@media (max-width:759px){
    .wc-block-components-sidebar-layout .wc-block-components-main.wp-block-woocommerce-cart-items-block{
        padding-top: 30px;
    }    
    .wc-block-checkout__sidebar{
        display: none;
    }
    
    .woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-block    {
        border: 0;
    }
    .woocommerce-checkout main .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
        border: 2px solid var(--claro-color);
    }
    .woocommerce-checkout main .wc-block-components-title.wc-block-components-title {
        font-size: 20px;
        line-height: 25px;
    }    
    .woocommerce-checkout main .wc-block-checkout__form .wc-block-components-text-input label, .woocommerce-checkout main .wc-block-checkout__form .wc-blocks-components-select__containerlabel, .woocommerce-checkout main .wc-block-checkout__form .wc-blocks-components-select .wc-blocks-components-select__select, .woocommerce-checkout main .wc-block-components-text-input.wc-block-components-totals-coupon__input label, .woocommerce-checkout main .wc-block-components-form .wc-block-components-text-input input:autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-form .wc-block-components-text-input.is-active input[type="url"], .wc-block-components-text-input input:autofill, .wc-block-components-text-input.is-active input[type="email"], .wc-block-components-text-input.is-active input[type="number"], .wc-block-components-text-input.is-active input[type="password"], .wc-block-components-text-input.is-active input[type="tel"], .wc-block-components-text-input.is-active input[type="text"], .wc-block-components-text-input.is-active input[type="url"], .woocommerce-checkout main .wc-block-checkout__add-note .wc-block-components-textarea {    
        font-size: 14px;
    }
    .woocommerce-checkout main .wp-block-woocommerce-checkout {
        padding-top: 30px;
    }
    .woocommerce-checkout main .wc-block-components-checkout-step__heading {
    margin-bottom: 10px;
    }    
    .woocommerce-checkout main .wc-block-components-form .wc-block-components-checkout-step{
        margin-bottom: 20px;
    }

    .woocommerce-checkout main .wc-block-components-form .wc-block-components-checkout-step,
    .woocommerce-checkout main .wc-block-checkout__actions.wp-block-woocommerce-checkout-actions-block 
    {
        padding-top: 0;
    }
}

@media (min-width:760px){
    .regalitodedios-checkout-sidebar-button{
        display: block;
        margin-top: 40px;
    }
    /* Oculta el CTA nativo en desktop; dejamos el duplicado del sidebar */
    .woocommerce-checkout main .wc-block-checkout__actions .wc-block-checkout__actions_row{
        display: none;
    }
}

@media (max-width:740px){
    .woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img{
        min-width: 86px;
    }    
    .woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__row {
        grid-template-columns: 112px 132px;
        padding-bottom: 0;
    }

    .woocommerce-cart main  .wc-block-cart__main .wc-block-cart-items td{
        border-top: 0;
    }

    .woocommerce-cart main .wc-block-cart-item__total{
        display: none;
    }

    .woocommerce-cart main table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image{
        display: flex;
        align-items: center;
    }
}

@media (max-width:699px){
    .wc-block-components-sidebar-layout .wc-block-components-main.wp-block-woocommerce-cart-items-block{
        padding-top: 30px;
    }
    .woocommerce-checkout main .wc-block-components-form .wc-block-components-checkout-step::after{
        display: none;
    }
}
