@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Definisci l'animazione */


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", serif;
    font-weight: 700;
}
html {
    scroll-behavior: smooth;
    caret-color: #6F3619;
}

html::-webkit-scrollbar {
    width: 15px;
    height: 80%;
    background: #F7F7F7;
}

html::-webkit-scrollbar-thumb {
    background: #6F3619;
    ;
}

body{
    width: 100%;
    background-color: #F7F7F7;

}
footer{
    width: 100%;
}

h1{
    font-size: 60px;
    line-height: 64px;
    color: #222;
}
h2{
    font-size: 55px;
    line-height: 54px;
    color: #222;
}
.alert-wrapper {
    height: 200px;
    display: inline;
}
h4{
    font-size: 30px;
    color: #222;
}
h6{
    font-weight: 700;
    font-size: 12px;
}
p{
    font-size: 16px;
    color: #000;
    margin: 15px 0 20px 0;
}
span{
    display: inline-block !important;
 }
.section-p1{
    padding:40px 80px;
}
.section-m1{
    margin: 40px 0;
}
button.normal{
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    color: #000;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    outline: none;
    transition: 0.2s;
}
button.white{
    font-size: 13px;
    font-weight: 600;
    padding: 11px 18px;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
    border: 1px solid #fff;
    outline: none;
    transition: 0.2s;
}

#header, #herobannertimer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
#header{
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    padding: 20px 80px;
    background: #F7F7F7;
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}
#countdownBanner{
    margin-top: 12px;
}
/* cc4 */
/* Waitlist popup - stile minimal di brand fashion */
.waitlist-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.waitlist-modal {
  background: #fff;
  padding: 40px 30px;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  font-family: 'Helvetica Neue', sans-serif;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.waitlist-modal h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.waitlist-modal p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

#waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#waitlist-email {
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #999;
  border-radius: 6px;
  outline: none;
  transition: border 0.2s ease;
}

#waitlist-email:focus {
  border-color: #6F3619;
}

.waitlist-btn {
  background: transparent;
  border: 1px solid #6F3619;
  color: #6F3619;
  padding: 10px 20px;
  font-size: 0.95rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.waitlist-btn:hover {
  background-color: #6F3619;
  color: #fff;
}

.waitlist-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
}

.waitlist-close:hover {
  color: #111;
}

.waitlist-success {
  color: #3c763d;
  font-weight: 500;
  margin-top: 12px;
  font-size: 0.95rem;
}

#countdownBanner {
    position: fixed;
    bottom: 20px; /* Un po' di spazio dal bordo */
    left: 50%;
    transform: translateX(-50%); /* Centra il banner */
    width: 90%;
    max-width: 600px; /* Limita la larghezza su schermi grandi */
    background: linear-gradient(90deg, #7f462a, #ff4b2b); /* Gradient moderno */
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px; /* Angoli arrotondati */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Sempre visibile sopra gli altri elementi */
    animation: pulse 10.5s infinite alternate ease-in-out; /* Effetto pulsante */
    display: none;
}

/* Animazione leggera per attirare l'attenzione */
@keyframes pulse {
    from {
        transform: translateX(-50%) scale(1);
    }
    to {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Bottone per chiudere il banner */
#closeBanner {
    position: absolute;
    right: 12px;
    top: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 8px;
    border-radius: 50%;
    transition: 0.3s;
}

#closeBanner:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* cc4 */
.logo{
    width: 100px;
}
#index_video3{
    margin-bottom: 20px;
    font-size: 50px;
}
#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#navbar li{
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a{
    text-decoration: none;
    font-size: 16px;
    color: #1a1a1a;
    transition: 0.3s ease-in;
}
#navbar li a:hover,
#navbar li a.active{
    color: #6F3619;
}
#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #6F3619;
    position: absolute;
    bottom: -4px;
    left: 20px;  
}
#mobile{
    display: none;
    align-items: center;
}
#close{
    display: none;
}
#hero{
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 20px;

}
#background-video {
    height: 100vh;
    max-height: 100vh;
    width: 100%;

    object-fit: cover;
    position:absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
#hero h4{
    padding-bottom: 15px;
    margin-top: 2vh;
    /* margin-top: nothing; */

}
#hero h1{
    color: #6F3619;

}
#hero button{
    background-image: url(img/button.png);
    background-color: transparent;
    color: #000;
    border: 0;
    padding: 14px 80px 14px 80px;
}
#product1{
    text-align: center;
    background-color: #F7F7F7;
}
#product1 .pro-container, #product1 .products-grid{
    display: flex;
    justify-content: center;
    padding-top: 20px;
    flex-wrap: wrap;
}

.products-wrapper{
    position: relative;
}

.shop-mask-overlay, #cart-locked-banner {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start; /* non più center */
    justify-content: flex-start;
    flex-direction: column;
    background: rgba(0,0,0,0.66);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    padding: 30px;
}
#cart-locked-banner {
    align-items: center;
    justify-content: center;
}

/* Nuovo contenitore interno sticky */
.shop-mask-inner {
    position: sticky;
    top: 50dvh;           /* centro dello schermo visibile */
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 250px;
}

.shop-mask-overlay h2, #cart-locked-banner h2{
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #fff;
}

.shop-mask-overlay p, #cart-locked-banner p{
    font-size: 1em;
    opacity: .85;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #fff;
}
#early-access-box {
    margin-top: 20px;
    text-align: center;
}
#early-access-box p {
    font-size: 0.85em;
    opacity: 0.7;
    margin-bottom: 10px;
}
#early-access-form {
    display: flex;
    gap: 8px;
    justify-content: center;
}
#earlyAccessInput {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
    color: #fff;
    width: 150px;
}
#earlyAccessInput::placeholder {
    color: rgba(255,255,255,0.5);
}
#earlyAccessBtn {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    background: #6F3619;
    color: #fff;
    cursor: pointer;
}
#earlyAccessError {
    display: none;
    color: #ff6b6b;
    font-size: 0.85em;
    margin-top: 8px;
}

#countdown-overlay{
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-block{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;

    min-width: 90px;
    padding: 15px;
}

.countdown-block span:first-child{
    display: block;
    font-size: 2em;
    font-weight: bold;
    line-height: 1;
}

.countdown-block span:last-child{
    display: block;
    font-size: .7em;
    margin-top: 8px;
    text-transform: uppercase;
    opacity: .7;
}

.products-grid{
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}
#product1 .pro{
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 60px;
    transition: 0.2s ease-in;
    position: relative;
    background-color: #fff;
    box-shadow: 5px 20px 20px 5px  rgba(111, 54, 25, 0.3);
    
}
.comments-section {
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease-in;
    position: relative;
    box-shadow: 5px 20px 20px 5px  rgba(111, 54, 25, 0.3);
    max-height: 400px;
    overflow-y: scroll;
}
.comments-section::-webkit-scrollbar {
    width: 5px;
    height: 80%;
    background: #F7F7F7;
}

.comments-section::-webkit-scrollbar-thumb {
    background: #6F3619;
    ;
}

.comment{
    display: grid;
    grid-template-columns: 20% 80%;
}
.comment1, .comment2{
    
    align-self: center;
    padding: 10px 10px 0px 10px;
}
.comment2{
    padding: 0px 10px 10px 10px;
}
.comment2 p, .comment2 h5{
    padding: 5px;
    margin: 0px;
}

#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);

}
#product1 .pro .des{
    padding: 10px 0;
}
#product1 .pro .des .des-end{
    text-align: end;
}
#product1 .pro .des .des-start{
    text-align: start;
}
#product1 .pro .des span{
    color: #606063;
    font-size: 12px;
}
#product1 .pro .des h5{
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 18px;
}
#product1 .pro .des i{
    font-size: 12px;
    color: rgb(243, 181, 25);
}
/* .fa-star{

    font-size: 12px;
    color: rgb(243, 181, 25);
    
} */
#product1 .pro .des h4{
    padding-top: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #6F3619;
}

#product1 .pro .cart{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;

    color: #6F3619;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;

}
#product1 .pro img{
    width: 100%;
    border-radius: 20px;

}
#banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(img/banner/b2.webp);
    width: 100%;
    height: 40vh;
    background-size: cover;
    background-position: center;
    box-shadow: 5px 20px 20px 5px  rgba(111, 54, 25, 0.3);
}
#banner h4{
    color: #000;
    font-size: 16px;
}
#banner h2{
    color: #000;
    font-size: 30px;
    padding: 10px 0;
}
#banner h2 span{
    color: #6F3619;
}
#banner button:hover{
    background-color: #6F3619;
    color: #fff;
    box-shadow: 20px 20px 30px rgba(111, 54, 25, 0.4);
}
#sm-banner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#sm-banner .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(img/banner/b17.webp);
    width: 48%;
    height: 50vh;
    /* min-width: 580px;*/
    background-size: cover;
    background-position: center;
    padding: 30px;
    box-shadow: 0 0 17px 16px rgb(96 36 36 / 17%), 0 1px 2px 0 rgb(0 0 0 / 9%);
        border-radius: 5px;
    
}
#sm-banner .banner-box2{
    background-image: url(img/banner/b10.webp);
}
#sm-banner h4{
    color: #000;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
#sm-banner h2{
    color: #000;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
#sm-banner span{
    color: #000;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 15px;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
#sm-banner .banner-box:hover button{
    background-color: #6F3619;
    border: 1px solid #6F3619;
}
#banner3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 80px;
}
#banner3 .banner-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-image: url(img/banner/b7.webp);
    width: 30%;
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 17px 16px rgb(96 36 36 / 17%), 0 1px 2px 0 rgb(0 0 0 / 9%);
        border-radius: 5px;
}
#banner3 .banner-box2{
    background-image: url(img/banner/b4.webp);
    background-position: 10% 80%;

}
#banner3 .banner-box3{
    background-image: url(img/banner/b18.webp);
    background-position: bottom;

}
#banner3 h2{
    color: #6F3619;
    font-weight: 900;
    font-size: 22px;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
#banner3 h3{
    color: #ec544e;
    font-weight: 800;
    font-size: 15px;
    text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff,
             1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
}
#emailConfirm{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
    background-image: url(img/banner/b14.png);
    background-repeat: no-repeat;
    background-position: 20% 30%;
    background-color: #dda8a5;
    box-shadow: 5px 0px 20px 5px rgba(111, 54, 25, 0.709);

}
#emailConfirm .form{
    display: flex;
}
#emailConfirm h4{
    font-size: 22px;
    font-weight: 700;
    color: #ff0000;
}
#emailConfirm p{
    font-size: 14px;
    font-weight: 600;
    color: #818ea0;
}
#emailConfirm p span{
    color: #ffdb27;
}
#emailConfirm input{
    height: 3.125rem;
    padding: 0 1.25em;
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 4px;
    outline: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;

}
#emailConfirm button{
    background-color:#6F3619;
    height: 3.125rem;
    color: #fff;
    white-space: nowrap;
    
}
footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .col{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}
footer .install{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
footer .logo{
    margin-bottom: 30px;
}
footer h4{
    font-size: 14px;
    padding-bottom: 20px;
}
footer p{
    font-size: 13px;
    margin: 0 0 8px 0;
}
footer a{
    font-size: 13px;
    text-decoration: none;
    color: #222;
    margin: 10px;
}
footer .follow{
    margin-top: 20px;

}
footer .follow i{
    color: #465b52;
    padding-right: 4px;
    cursor: pointer;
}
footer .follow i:hover, footer a:hover{
    color:#6F3619;
}
footer .install .row img{
    border: 1px solid #6F3619;
    border-radius: 6px;
}
footer .install img{
    margin: 10px 0 15px 0;
}
footer .copyright{
    width: 100%;
    text-align: center;
}

/* Shop page */
#page-header{
    background-image: url(img/banner/b1.webp);
    background-position: center;
    width: 100%;
    height: 40vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 14px;
}
#page-header h2, #page-header p {
    color: #fff; /* Colore del testo: bianco */
    text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000; /* Ombra: nera */
}

#pagination{
    text-align: center;
}
#pagination a{
    text-decoration: none;
    background-color: #6F3619;
    padding: 15px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
}
#pagination a i{
    font-size: 16px;
    font-weight: 600;
}
/* Single product */
#prodetails{
    display: flex;
    margin-top: 20px;
}

#prodetails .single-pro-image{
    width: 30%;
    /* width: 40%; */
    margin-right: 50px;
}
#prodetails .single-pro-image img{
    box-shadow: rgba(56, 56, 56, 0.646) -1px 0px 15px 7px;
    
}
.small-img-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* così su mobile vanno a capo se serve */
    gap: 15px; /* spazio uniforme tra le immagini */
}

.small-img-col {
    flex: 0 0 auto; /* niente crescita/shrink */
    width: 60px; /* base dimensione desktop */
    height: 60px;
    cursor: pointer;
}

.small-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: rgba(56, 56, 56, 0.646) -1px 0px 15px 7px;
}

#prodetails .single-pro-details{
    width: 50%;
    padding-top: 30px;
}
#prodetails .single-pro-details h4{
    padding: 10px 0 0px 0;
    font-size: 22px;
}
#prodetails .single-pro-details h2{
    font-size: 20px;
}
#prodetails .single-pro-details select{
    display: block;
    padding: 5px 10px;
    margin-bottom: 10px;
    background-color: rgb(221, 191, 165);
}
#prodetails .single-pro-details input{
    width: 50px;
    height: 47px;
    padding-left: 10px;
    font-size: 16px;
    margin-right: 10px;
    background-color: rgb(221, 191, 165);

}
#prodetails .single-pro-details input:focus{
    outline: none;
}
#prodetails .single-pro-details button{
    background-color: #6F3619;
    color: #fff;
    font-size: 16px;
}
#prodetails .single-pro-details select:focus{
    outline: none;
}
#prodetails .single-pro-details span{
    line-height: 1.4;
    font-size: 15px;
}
#shippingDatesContainer p{
    font-size: 13px;
        margin: 10px 0 0px 0;
    
}
#shippingDatesContainer p:nth-child(3){
    font-size: 14px;
    font-weight: bold;
    
}


.reviewInsert{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.reviewInsert .reviewInsertButton button{
    margin-right: 50px;
    padding: 14px 16px;
    
}
#addReviewForm{
    display: flex; 
    flex-direction: column;
}
#addReviewForm #title {
    width: 100%;
}
#addReviewForm #comment {
    height: 100px;
    background-color: transparent;
}
#addReviewForm button {
    margin: 10px;
    padding: 10px;
    width: 30%;
}

/* Blog page */
#page-header.blog-header{
    background-image: url(img/banner/b19.webp);
    background-position: 10% 60%;
}
#page-header.trak-header{
    background-image: url(img/banner/b20.webp);
    background-position: 10% 60%;
}
#page-header.privacy-header{
    background-image: url(img/about/banner6.webp);
    background-position: 10% 50%;
}
#page-header.terms-header{
    background-image: url(img/about/banner7.webp);
    background-position: 10% 50%;
}
#blog{
    padding: 150px 150px 0 150px;
}
#blog .blog-box{
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    padding-bottom: 90px;
}
#blog .blog-img{
    width: 50%;
    margin-right: 40px;
}
 .about-img img{
    width: 50%;
}
#blog img, #about img{
    width: 100%;
    height: 450px;
    /* height: 300px; */
    object-fit:cover;
    box-shadow: 0 0 17px 16px rgb(96 36 36 / 17%), 0 1px 2px 0 rgb(0 0 0 / 9%);
    border-radius: 5px;
}
#about img{
    height: 350px;
}
#blog .blog-details{
    width: 50%;
}
#blog .blog-details a{
    text-decoration: none;
    font-size: 11px;
    color: #000;
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}
#blog .blog-details a::after{
    content: "";
    width: 50px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 10px;
    /* top: 4px; */
    right: -60px;
}
#blog .blog-details a:hover{
    color: #6F3619;
}
#blog .blog-details a:hover::after{
    background-color: #6F3619;
}
#blog .blog-box h1{
    position: absolute;
    top: -60px;
    /* top: -40px; */
    left: 0;
    font-size: 70px;
    font-weight: 700;
    color: #6F3619;
    z-index: -9;
}
/* About Page */
#page-header.about-header{
    background-image: url(img/about/banner2.webp);
    background-position: top;
}


#about-head img{
    width: 40%;
    object-fit: cover;
    margin: 15px;
}
#about-head div{
    padding-left: 40px;
    word-wrap: break-word;
    /* width: not value;
    word-wrap: not value; */
}
.about-text {
    flex: 0 0 auto; /* impedisce l'espansione */
    width: fit-content; /* occupa solo lo spazio del contenuto */
    max-width: 42%; /* evita overflow su mobile */
    text-align: center; /* centra il testo dentro il div */
}
.about-text ul {
    text-align: left;
}
.about-block {
    display: flex;
    justify-content: center; /* centra i blocchi orizzontalmente */
    align-items: flex-start; /* oppure center se vuoi centrarli verticalmente */
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.center-flex{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
#contact-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#answerForm input, #answerForm textarea{
    box-shadow: 0 0 8px 7px rgb(96 36 36 / 15%), 0 1px 2px 0 rgba(0,0,0,.06);
}
#answerFormDiv{
    width: 65%;
}
#contact-details .details{
    width: 100%;
    /* width: 40%; */
}
#page-header.contact-header {
    background-image: url(img/about/banner.webp);
    background-position: 10% 30%;
}
#page-header.account-header {
    background-image: url(img/about/banner4.webp);
    background-position: 10% 30%;
}
#page-header.success-header {
    background-image: url(img/about/banner5.webp);
    background-position: 10% 40%;
}
#contact-details .details span,
#form-details form span{
    font-size: 12px;
}
#contact-details .details h2,
#form-details form h2, 
#form-details .people  h2{
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}
#contact-details .details h3{
    font-size: 16px;
    padding-bottom: 15px;
}
#contact-details .details li{
    list-style: none;
    display: flex;
    padding: 10px 0;
}
#contact-details .details li i{
    font-size: 20px;
    /* font-size: 14px; */
    padding-right: 22px;
}
#contact-details .details li p{
    margin: 0;
    font-size: 14px;
}
#contact-details .map{
    width: 55%;
    height: 400px;
}
#contact-details .map iframe{
    width: 100%;
    height: 100%;
}
#form-details{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px;
    padding: 80px;
    border: 1px solid #e1e1e1;
}
#form-details form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#answerOutputDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65%;
}
#form-details form input, #form-details form textarea{
    width: 100%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}
#form-details form button{
    background-color: #6F3619;
    color: #fff;
}
#form-details .people div{
    padding-bottom: 25px;
    display: flex;
    align-items: flex-start;
}
#form-details .people div img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    margin-right: 15px;
}
#form-details .people div p{
    margin: 0;
    font-size: 13px;
    line-height: 25px;
}
#form-details .people div p span{
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000;
}
/* Cart page */
.flex {
    display: flex;
    justify-content: space-between;
}
.flex button{
    background-color: #6F3619;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
#page-header.cart-header{
    background-image: url(img/about/banner3.webp);
}
#cart {
    overflow-x: auto;
}
#cart table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}
#cart table img{
    width: 70px;
} 
#cart table td:nth-child(1){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(2){
    width: 200px;
    text-align: center;
}
#cart table td:nth-child(3){
    width: 200px;
    text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5){
    width: 150px;
    text-align: center;
}
#cart table td:nth-child(6){
    width: 200px;
    text-align: center;
    }
#cart table td:nth-child(7) input{
    width: 70px;
    padding: 10px 5px 10px 15px;
    background-color: rgb(221, 191, 165);
}
#cart table thead{
    border: 1px solid #e2e9e1;
    border-left: none;
    border-right: none;
}
#cart table thead td{
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}
#cart table tbody tr td{
    padding-top: 15px;
}
#cart table tbody td{
    font-size: 13px;
}
#cart-add{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.hidden-size {
    visibility: hidden;  
    pointer-events: none;    
}
#coupon{
    width: 50%;
    margin-bottom: 30px;
}
#coupon .couponUsed{
    display: grid;
    grid-template-columns: 60% 1fr;

}
#coupon .couponUsed .couponDetails {
    
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    width: 100%;
    
}
#coupon .couponUsed .couponDetails p{
    align-self: center; 
    justify-self: center; 
    padding: 10px 20px;
    outline: none;
   
    margin-right: 10px;
    border: 1px solid #e2e9e1;
    background-color: rgb(221, 191, 165);
    
}
#coupon .couponUsed button{
    align-self: center;
    justify-self: start;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 4px;
}

#coupon h3,
#subtotal1 h3{
    padding-bottom: 15px;
}
#coupon input{
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #e2e9e1;
    background-color: rgb(221, 191, 165);
}
#coupon button,
#subtotal1 button{
    background-color: #6F3619;
    padding: 10px 20px;
    color: #fff;
}
#subtotal1{
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e9e1;
    padding: 30px;
}
#subtotal1 table{
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
#subtotal1 table td{
    width: 50%;
    border: 1px solid #e2e9e1;
    padding: 10px;
    font-size: 13px;

}
/* wishlist page */
#emptyWishlist {
    justify-content: center;
    align-items: center;
    display: flex;
}
/* account page */
.setting-section form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.setting-section form input{
    width: 80%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    
}
.setting-section form select{
    width: 80%;
    padding: 12px 15px;
    
}
.setting-section form button{
    background-color: #6F3619;
    color: #fff;
}
#redeemCode{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#messageRedeemCode{
    text-align: center;
    margin-top: 15px;
}
#redeemCode div input{
    width: 80%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    
}
#redeemCode button{
    background-color: #6F3619;
    color: #fff;
}
.divWaitlist{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.divWaitlist button{
    background-color: #6F3619;
    color: #fff;
}
.divWaitlist input{
    width: 80%;
    padding: 12px 15px;
    outline: none;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}
.waitlist-banner {
  color: #fff;
  padding: 40px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.waitlist-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/texture.webp') center/cover no-repeat;
  opacity: 0.15;
}

/* === CONTENITORE === */
.waitlist-overlay-Index {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.waitlist-index {
  text-align: center;
  max-width: 700px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waitlist-index:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

/* === TESTI === */
.waitlist-index h2 {
  font-size: 2rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.waitlist-index p {
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* === FORM === */
#waitlist-form-index {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#waitlist-email-index {
  flex: 1;
  min-width: 230px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
  color: #333;
  outline: none;
}

.waitlist-btn {
  padding: 12px 24px;
  background: #6F3619;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.waitlist-btn:hover {
  background: #8a4726;
  transform: scale(1.05);
}
#terms ul{
    width: 80%;
    margin-left: 50px;
}

#terms p{
    margin: 20px;
}
#privacy ul{
    width: 80%;
    margin-left: 50px;

}
#privacy p{
    margin: 20px;
    word-wrap: break-word;
}
.confirm{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 50px;
}
.confirm h2 {
    font-size: 40px;
}
.textLog{
    width: 40%;
    text-align: center;
}
/* Test page cart */
.cartPage {
    width: 100%;
    padding: 2em;
    margin: auto;
    flex-wrap: wrap;

  }
  .totalAmount{
    font-size: 25px;
  }

  .mobile-cart{
    display:contents;
  }
  .product-title{
    font-size: 30px;
  }
  .product-details p{
    margin: 15px 0 0px 0;
      
  }
  .cart-item {
    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
    align-items: center;    
    padding: 20px;
    margin-bottom: 2em;
    border: 1px solid #6F3619;
    border-bottom: none;
    border-left: none;
    border-right: none;


    border-right: none;
  }
  .cart-item select, .shippingDiv select{
    padding: 5px 10px;
    margin: 5px 5px;
    background-color: rgb(221, 191, 165);
    width: 80%;
    height: 40px;
  }
  .product-image {
    width: 100%;
    box-shadow: rgba(56, 56, 56, 0.646) -1px 0px 15px 7px;
    border-radius: 4px;
  }
  
  .product-details {
    width: 20%;
  }
  .product-details-size{
    display: flex;
    flex-direction: column;
    width: 20%;
    align-items: center;

  }
  .class-input input{
    width: 45px;
    padding: 10px 15px;
    background-color: rgb(221, 191, 165);
    
  }
    .class-input button{
    background-color: #6F3619;
    padding: 5px 20px;
    /* font-size: 10px; */
    color: #fff;
    margin: 0px 10px;
    line-height: 0px;
    height: 40px;
    margin-top: auto;
    }
    /* .logged-in {
        color: green;
      } */
      
      .logged-out {
        color: red;
      }
    .class-input{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .rating-stars {
        font-size: 34px; /* Adjust the size of the stars */
        
            color: rgb(212 159 26);
        
    }
    .star-Resume-star i, .star-rating i{
        color: rgb(212 159 26);

    }
    
    .rating-stars .star {
        cursor: pointer;
        color: #000000; /* Default color of the stars */
    }
    
    .rating-stars .star.selected {
        color: rgb(212 159 26);        /* Color of selected stars */
    }
    .country-popup {
        display: none; /* Nascondi il popup inizialmente */
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.4);
        align-items: center;
    }
    
    .country-popup-content {
        background-color: #fff;
        margin: 4% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        max-width: 700px;
        text-align: center;
        border-radius: 15px;
    }
    
    .country-item {
        cursor: pointer;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
        text-align: left;
        background-color: #f9f9f9;
        transition: background-color 0.3s, transform 0.2s;
    }
    .country-item img{
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }
    
    .country-item:hover {
        background-color: #f0f0f0;
        transform: scale(1.05);
    }
    .country-columns {
        display: flex;
        justify-content: space-between;
        gap: 20px; /* Spazio tra le colonne */
    }
    
    .close-popup {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }
    
    .close-popup:hover, .close-popup:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
    #selectCountryBtn, .selectCountryP{
        color: #000;
        font-size: 1.3rem;
        font-weight: 700;
    }
    #selectCountryBtn{
        background-color: #ac674152;
        padding: 12px 60px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 10px;
    }
    #selectCountryBtn img, .country-item img{
        margin-right: 10px;
        vertical-align: middle;
    }
    
    .shippingDiv .form-group #selectCountryBtn{
        border-radius: 4px;
        background-color: rgb(221, 191, 165);
        padding: 8px 30px;
    }
    .selectCountryP{
        margin: 0;
    }
    #countryList {
        flex: 1;
        display: grid;
        grid-template-columns: 1fr 1fr; /* Due colonne uguali */
        list-style: none;
        padding: 0;
        margin: 0;
        gap: 10px; /* Spazio tra gli elementi */
    }
    .pay-btn2 {
        border:none;
        background:#cda434   !important;
        border-radius:10px;
        font-size:19px;
        font-size:1.2rem;
        color:#fff !important;
        cursor:pointer;
        padding: 13px;
        -webkit-transition:all .2s ease;
        transition:all .2s ease;
        width: 250px;
              
      }
      .pay-btn2:hover {
        background:#997e35  ;
        color:#eee;
        -webkit-transition:all .2s ease;
        transition:all .2s ease;
      }
      .paymentDiv{
        display: flex; 
        flex-direction: column; 
        gap: 10px; 
        align-items: center; 
        width: fit-content;
      }
      .shipping-timeline {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        padding: 10px;
    }
    
    .timeline-step {
        text-align: center;
        flex: 1;
    }
    
    .timeline-step p {
        margin: 5px 0;
    }
    #shippingDatesContainer .fa-shopping-bag,#shippingDatesContainer .fa-shipping-fast,#shippingDatesContainer .fa-horizontal-rule, .fa-map-marker-alt {
        font-size: 20px;
        color: #000;

    }
    #shippingDates{
        margin-top: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    #shippingDatesContainer{
        display: flex;
        justify-content: space-between;
        text-align: center;
        width: 80%;
    }
    

    .tracking-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        align-items: center;
        margin: 20px auto;
        max-width: 1000px;
        padding: 0 20px;
    }

    .tracking-box {
        flex: 1;
        min-width: 280px;
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .tracking-box form {
        display: flex;
        flex-direction: column;
    }

    .tracking-box label {
        font-size: 0.95rem;
        margin-bottom: 6px;
        margin-top: 10px;
        font-weight: 500;
    }

    .tracking-box input {
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 1rem;
    }

    .tracking-box button {
        background-color: #6F3619;
        color: white;
        border: none;
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 8px;
        margin-top: 20px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .tracking-box button:hover {
        background-color:rgb(66, 32, 15);
    }

    .tracking-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: bold;
        color: #6b7280;
        min-width: 50px;
    }

    .note {
        text-align: center;
        margin-top: 20px;
        font-size: 0.85rem;
        color: #9ca3af;
    }
    .klarna-logo {
    width: 45px;
    height: auto;
    vertical-align: middle;
    margin-left: 6px;
    filter: invert(100%);

}
    
    
@media (max-width: 1500px) {
    .comment{
    
    grid-template-columns: none;
}
}

@media (max-width: 1050px) {
    
    .section-p1 {
        padding: 40px 40px;
    }
    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-color: #F7F7F7;
        box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }
    #navbar.active{
        right: 0px;
        box-shadow: 0px 0px 20px 12px rgb(111 54 25 / 49%);        

    }
    #navbar li{
        margin-bottom: 25px;
    }
    #mobile{
        display: flex;
        align-items: center;
    }
    #col-md-8{
        width: 100%;
    }
    #col-md-4{
        display: none;
        align-items: center;
    }
    #mobile i{
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
    #close{
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }
    #lg-bag{
        display: none;
    }

    #hero {
        height: 90vh;
        /* height: 70vh; */
        padding: 0 80px;
        background-position: top 30% right 30%;
    }
    #feature {
        justify-content: center;
    }
    #feature .fe-box {
        margin: 15px 15px;
    }
    #product1 .pro-container {
        justify-content: center;
    }
    #product1 .pro {
        margin: 15px ;
    }
    #banner {
        height: 20vh;
    }
    #sm-banner .banner-box {
        min-width: 100%;
        height: 30vh;
    }
    #banner3 {
        padding: 0 40px;
    }
    #banner3 .banner-box {
        width: 28%;
    }
    #emailConfirm .form {
        width: 70%;
    }
    /* Contact Page */
    
    #form-details {
        padding: 40px;
    }
    #answerFormDiv {
        width: 50%;
    }
    #form-details form {
        width: 100%;
    }
    .cart-item{
        justify-content: center !important;
        flex-direction: column;
      }
      .cart-item select {
        /* margin-bottom: 15px !important; */
        margin: 5px 5px;
        background-color: rgb(221, 191, 165);
        width: 40%;
        
    }
      .mobile-cart{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5px;
      }
      .class-input {
        justify-content: center;
        width: 60%;
        margin-bottom: 10px;
        flex-direction: column;
    }      
    .product-title{
        font-size: 20px ;
        line-height: 30px;
      }
      .product-details{
        margin-left: 4%;
        text-align: center;

      }
      
      .class-input button {
        background-color: #6F3619;
        padding: 10px 20px ;
        color: #fff;
        /* font-size: 10px !important; */
        margin: 5px 10px;
    }
      .product-details-size {
          width: 80%;
          flex-direction: row;
          justify-content: center;
          margin: 20px;
          
      }
      .cartPage .cart-item .mobile-cart a{
        width: 36% !important;
      }
    
      .comment {
        display: grid;
        grid-template-columns: 1fr;
    }
    .reviewInsert .reviewInsertButton button{
        margin-right: 0px;
        
    }
    #banner3 h2 {
        font-size: 16px;
    }
    .textLog{
    width: 80%;
    text-align: center;
    }
    .about-text {
        flex: auto;
    }
    .about-img {
    flex: auto;
    width: 100%;
    }
    .about-block{
        margin-bottom: 40px;
    }

     .small-img-col {
        width: 50px;
        height: 50px;
    }
    .shop-mask-inner {
     top: 46lvh;
    }



}
@media (max-width: 940px) {
    #coupon .couponUsed {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
}
@media (max-width: 768px) {
    
    .tracking-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .tracking-divider {
        margin: 10px 0;
    }
    .about-text {
        max-width: 100%;
    }
    .small-img-col {
        width: 45px;
        height: 45px;
    }
    .waitlist-index {
    padding: 30px 20px;
  }

  .waitlist-index h2 {
    font-size: 1.6rem;
  }

  #waitlist-form {
    flex-direction: column;
  }

  .waitlist-btn {
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 545px) {
    .shop-mask-inner {
        top: 53lvw;
    }
}
@media (max-width: 477px) {
    sup {font-size:small; vertical-align:super;}

    .section-p1 {
        padding: 20px;
    }
    #header {
        padding: 10px 30px;
    }
    h1 {
        font-size: 28px;
        /* font-size: 28px; */
        line-height: normal;
    }
    h2{
        font-size: 22px;
    }
    #index_video1{
        font-size: 25px;
    }
    #index_video3{
        font-size: 22px;
    }
    #hero {
        padding: 0 20px;
        background-position: 55%;
        height: 100vh;
        text-align: center;
        /* height: 100vh; remove */
    }
    #feature {
        justify-content: space-between;
    }
    #feature .fe-box {
        width: 155px;
        margin: 0 0 15px 0;
    }
    #product1 .pro {
        width: 100%;
    }
    #banner {
        height: 40vh;
    }
    #sm-banner .banner-box {
        height: 40vh;
    }
    #sm-banner .banner-box2 {
        margin-top: 20px;
    }
    #banner3 {
        padding: 0 20px;
    }
    #banner3 .banner-box {
        width: 100%;
    }
    #emailConfirm .form {
        width: 100%;
    }
    #emailConfirm {
        padding: 40px 20px;
    }
    /* Single product */
    #prodetails {
        display: flex;
        flex-direction: column;
    }
    #prodetails .single-pro-image {
        width: 100%;
        margin-right: 0px;
    }
    #prodetails .single-pro-details {
        width: 100%;
    }
    /* Blog Page */
    #blog .blog-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #blog {
        padding: 100px 20px 0 20px;
    }
    #blog .blog-img, .about-img img{
        width: 100%;
        margin-right: 0px;
        margin-bottom: 30px;
    }
    #blog img, #about img {
        height: 250px;
    }
    #blog .blog-details {
        width: 100%;
    }
    /* About Page */
    #about-head {
        flex-direction: column;
    }
    #about-head img {
        width: 100%;
        margin-bottom: 20px;
        height: 200px;
    }
    #about-head div{
        padding-left: 0px;
        width: 100%;
        /* width: not value;
        word-wrap: not value; */
    }
    .about-block {
        margin-bottom: 0px;
    }
    /* Contact Page */
    #contact-details {
        flex-direction: column;
    }
    #contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }
    #contact-details .map {
        width: 100%;
    }
    #form-details {
        margin: 10px;
        padding: 30px 10px;
        flex-wrap: wrap;
    }
    #answerFormDiv {
        width: 100%;
        
    }
    #answerOutputDiv {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    #form-details form {
        width: 100%;
        margin-bottom: 30px;
    }
    /* Cart page */
    #cart-add {
        display: flex;
        flex-direction: column;
    }
    #coupon {
        width: 100%;
    }
    #subtotal1 {
        width: 100%;
        padding: 20px;
    }
    .cart-item{
        flex-direction: column;
      }
      .cart-item select {
        /* margin-bottom: 15px !important; */
        margin: 5px 5px;
        background-color: rgb(221, 191, 165);

    }
      .mobile-cart{
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
      }
      .class-input {
        justify-content: center;
        width: 60%;
        margin-bottom: 10px;
    }
         
    .product-title{
        font-size: 20px !important;
        line-height: 30px;
      }
      .product-details{
        margin: 10px 0 15px 0;

      }
      
      .class-input button {
        /* background-color: green; */
        padding: 10px 20px;
        color: #fff;
        /* font-size: 10px !important; */
        
    }
      .product-details-size {
          width: 80% ;
          justify-content: center;
          
      }
      .cartPage .cart-item .mobile-cart a{
        width: 66% !important;
      }
    
      .product-image, .product-details {
        width: 100% !important;
        height: 100% !important;
      }
      #sm-banner h2 {
        font-size: 14px;
    }
    #banner h2{
    font-size: 20px;
    }
    .confirm {
        margin: 0px;
    }
    .confirm h2 {
        font-size: 20px;
    }
    #spotify h2{
    color: #000;
    font-size: 30px;
    padding-bottom: 10px;
        line-height: 35px;
    }
    #spotify h4{
        color: #000;
        font-size: 15px;
        padding-bottom: 20px;
    }
    #about-head img {
        margin: 0px;
        margin-bottom: 10px;
    }
    .paymentDiv{
        width: 100%;
      }
   
      .small-img-col {
        width: 40px;
        height: 40px;
    }
    .shop-mask-inner {
        top: 72lvw;
    }
}
@media (max-width: 407px) {
    .shop-mask-inner {
        top: 82lvw;
    }
}

@media (max-width: 380px) {
    .shop-mask-inner {
        top: 90lvw;
    }
}
@media (max-width: 361px) {
    .shop-mask-inner {
        top: 102lvw;
    }
}
@media (max-width: 330px) {
    .shop-mask-inner {
        top: 111lvw;
    }
}

      



  
