/* =====================================
   ELEMENTI V4
   Premium Streetwear
===================================== */

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#000;
color:#fff;
font-family:'Montserrat',sans-serif;
overflow-x:hidden;
}

img{
display:block;
max-width:100%;
}

a{
text-decoration:none;
color:inherit;
}

/* =====================================
HEADER
===================================== */

.header{

position:fixed;

top:20px;

left:50%;

transform:translateX(-50%);

width:92%;

max-width:1300px;

height:70px;

background:rgba(15,15,15,.88);

backdrop-filter:blur(16px);

border:1px solid rgba(255,255,255,.08);

border-radius:50px;

display:flex;

justify-content:center;

align-items:center;

z-index:999;

}

nav{

display:flex;

gap:18px;

align-items:center;

}

nav a{

padding:12px 22px;

border-radius:30px;

font-size:15px;

font-weight:600;

color:white;

transition:all .25s ease;

}

nav a:hover{

background:white;

color:black;

transform:translateY(-2px);

}

.basket{

border:2px solid white;

}

.basket:hover{

background:white;

color:black;

}

/* =====================================
HERO
===================================== */

.hero{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:150px 20px 80px;

}

.hero-content{

max-width:850px;

}

.hero-logo{

width:140px;

margin:0 auto 35px;

border-radius:28px;

}

.hero h1{

font-size:92px;

font-weight:800;

letter-spacing:8px;

margin-bottom:18px;

}

.hero p{

font-size:24px;

color:#cfcfcf;

line-height:1.8;

margin-bottom:45px;

}

.hero button{

padding:18px 50px;

background:white;

color:black;

font-size:18px;

font-weight:700;

border:none;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.hero button:hover{

transform:translateY(-4px);

background:#ececec;

}

/* =====================================
FEATURED COLLECTIONS
===================================== */

.featured{

padding:110px 40px;

background:#050505;

}

.featured h2{

text-align:center;

font-size:46px;

font-weight:800;

letter-spacing:4px;

margin-bottom:70px;

}

.products{

display:grid;

grid-template-columns:repeat(2,300px);

justify-content:center;

gap:40px;

}

.product-card{

background:#fff;

border-radius:24px;

overflow:hidden;

cursor:pointer;

transition:.35s;

box-shadow:0 18px 45px rgba(255,255,255,.08);

}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 28px 70px rgba(255,255,255,.18);

}

.product-card img{

width:100%;

height:260px;

object-fit:cover;

padding:12px;

background:white;

transition:.35s;

}

.product-card:hover img{

transform:scale(1.03);

}

.product-info{

background:white;

padding:22px;

text-align:center;

}

.product-info h3{

color:black;

font-size:28px;

font-weight:800;

letter-spacing:2px;

margin-bottom:10px;

}

.product-info p{

color:#777;

font-size:15px;

margin-bottom:22px;

line-height:1.6;

}

.product-info button{

width:100%;

padding:15px;

border:none;

border-radius:40px;

background:black;

color:white;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.3s;

}

.product-info button:hover{

background:#222;

}

/* =====================================
ABOUT
===================================== */

.about{

padding:120px 40px;

text-align:center;

}

.about h2{

font-size:46px;

font-weight:800;

letter-spacing:3px;

margin-bottom:30px;

}

.about p{

max-width:850px;

margin:auto;

font-size:20px;

line-height:2;

color:#cfcfcf;

}

/* =====================================
FOOTER
===================================== */

footer{

background:#050505;

padding:80px 40px;

margin-top:100px;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-content{

max-width:1200px;

margin:auto;

text-align:center;

}

.footer-logo{

width:100px;

margin:0 auto 25px;

border-radius:20px;

}

.footer-content h2{

font-size:36px;

letter-spacing:4px;

margin-bottom:12px;

}

.footer-content p{

color:#bfbfbf;

line-height:1.8;

margin-bottom:30px;

}

.footer-links{

display:flex;

justify-content:center;

gap:30px;

flex-wrap:wrap;

margin-bottom:30px;

}

.footer-links a{

color:white;

font-weight:600;

transition:.3s;

padding:8px 14px;

border-radius:25px;

}

.footer-links a:hover{

background:white;

color:black;

}

.copyright{

font-size:14px;

color:#777;

}

/* =====================================
TABLET
===================================== */

@media(max-width:1000px){

.hero h1{

font-size:68px;

}

.products{

grid-template-columns:repeat(2,260px);

gap:30px;

}

}

/* =====================================
   MOBILE (IPHONE)
===================================== */

@media screen and (max-width:768px){

body{
overflow-x:hidden;
}

.header{
width:92%;
margin:15px auto;
padding:18px;
border-radius:35px;
height:auto;
}

nav{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
justify-items:center;
align-items:center;
}

nav a{
font-size:17px;
padding:10px 0;
width:100%;
text-align:center;
}

.basket{
padding:12px 26px !important;
border-radius:40px;
}

/* HERO */

.hero{
padding-top:340px;
padding-left:25px;
padding-right:25px;
padding-bottom:90px;
text-align:center;
}

.hero-logo{
width:110px;
margin-bottom:25px;
}

.hero h1{
font-size:58px;
line-height:1;
letter-spacing:8px;
margin-bottom:25px;
}

.hero p{
font-size:20px;
line-height:1.6;
margin-bottom:40px;
}

.hero .shop-btn{
width:100%;
max-width:320px;
margin:auto;
padding:18px 0;
font-size:20px;
border-radius:60px;
}

/* PRODUCTS */

.products{
display:grid;
grid-template-columns:1fr;
gap:35px;
padding:40px 20px;
justify-items:center;
}

.product-card{
width:100%;
max-width:330px;
}

.product-card img{
height:320px;
object-fit:cover;
}

/* PRODUCT PAGE */

.product-page{
display:flex;
flex-direction:column;
padding:170px 20px 60px;
}

.product-images,
.product-info{
width:100%;
}

.main-product-image{
width:100%;
border-radius:20px;
}

.product-info h1{
font-size:34px;
margin-top:30px;
}

.price{
font-size:28px;
}

.description{
font-size:17px;
line-height:1.6;
}

.addBasket{
width:100%;
padding:18px;
font-size:18px;
}

/* CHECKOUT */

.payment-page{
padding-top:170px;
}

.payment-container{
width:92%;
padding:30px 25px;
}

.payment-container h1{
font-size:48px;
}

.order-total strong{
font-size:42px;
}

/* FOOTER */

footer{
padding:60px 25px;
text-align:center;
}

.footer-links{
display:flex;
flex-direction:column;
gap:18px;
}

}

/* =====================================
SHOP PAGE
===================================== */

.shop-page{
padding:160px 40px 80px;
text-align:center;
}

.shop-page h1{
font-size:52px;
font-weight:800;
letter-spacing:4px;
margin-bottom:10px;
}

.shop-subtitle{
color:#bfbfbf;
font-size:18px;
margin-bottom:60px;
}

.shop-grid{
display:grid;
grid-template-columns:repeat(2,340px);
justify-content:center;
gap:40px;
max-width:800px;
margin:auto;
}

.shop-item{
background:#fff;
border-radius:24px;
overflow:hidden;
transition:.35s;
box-shadow:0 18px 45px rgba(255,255,255,.08);
}

.shop-item:hover{
transform:translateY(-8px);
box-shadow:0 28px 70px rgba(255,255,255,.18);
}

.shop-item img{
width:100%;
height:260px;
object-fit:cover;
padding:12px;
background:white;
}

.shop-item-info{
padding:22px;
text-align:center;
background:white;
}

.shop-item-info h2{
color:black;
font-size:24px;
font-weight:800;
margin-bottom:18px;
}

.shop-btn{
display:block;
width:85%;
margin:0 auto;
padding:15px;
background:black;
color:white;
border-radius:40px;
font-weight:700;
transition:.3s;
}

.shop-btn:hover{
background:#222;
transform:translateY(-2px);
}

@media(max-width:850px){

.shop-grid{
grid-template-columns:1fr;
justify-items:center;
}

.shop-item{
width:100%;
max-width:340px;
}

}

/* =====================================
PRODUCT PAGE
===================================== */

.product-page{
max-width:1100px;
margin:140px auto 80px;
padding:40px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.product-images{
display:flex;
flex-direction:column;
align-items:center;
}

.main-product-image{
width:100%;
max-width:430px;
background:#fff;
padding:12px;
border-radius:20px;
}

.thumbnail-row{
display:flex;
gap:15px;
margin-top:20px;
}

.thumbnail{
width:75px;
height:75px;
object-fit:cover;
background:#fff;
padding:5px;
border-radius:12px;
cursor:pointer;
border:2px solid transparent;
transition:.3s;
}

.thumbnail.active,
.thumbnail:hover{
border:2px solid #fff;
}

.product-info{
max-width:420px;
}

.product-info h1{
font-size:36px;
font-weight:800;
margin-bottom:12px;
letter-spacing:2px;
}

.price{
font-size:28px;
font-weight:700;
margin-bottom:25px;
}

.description{
font-size:15px;
line-height:1.8;
color:#cfcfcf;
margin-bottom:30px;
}

.product-info h3{
font-size:18px;
margin:20px 0 12px;
}

.sizes{
display:flex;
gap:12px;
margin-bottom:25px;
flex-wrap:wrap;
}

.size-btn{
width:60px;
height:50px;
border:none;
border-radius:10px;
background:#d8d8d8;
color:#000;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.25s;
}

.size-btn:hover{
background:#bdbdbd;
}

.size-btn.selected{
background:rgb(255, 252, 252) !important;
color:rgb(138, 137, 137) !important;
border:5px solid rgb(112, 113, 112) !important;
}

.quantity-box{
display:flex;
align-items:center;
gap:18px;
margin-bottom:30px;
}

.quantity-box button{
width:45px;
height:45px;
border:none;
border-radius:10px;
background:#080808;
color:#fff;
font-size:22px;
font-weight:700;
cursor:pointer;
transition:.25s;
}

.quantity-box button:hover{
background:#0f0f0f;
}

.quantity-box span{
width:45px;
height:45px;
display:flex;
align-items:center;
justify-content:center;
background:#0c0c0c;
border-radius:10px;
font-size:22px;
font-weight:700;
}

.addBasket{
width:100%;
padding:18px;
border:none;
border-radius:40px;
background:#fff;
color:#000;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;
margin-bottom:30px;
}

.addBasket:hover{
background:#ececec;
transform:translateY(-3px);
}

.product-extra p{
font-size:14px;
color:#bfbfbf;
margin-bottom:12px;
}

@media(max-width:900px){

.product-page{
grid-template-columns:1fr;
text-align:center;
padding:20px;
}

.product-info{
max-width:100%;
}

.sizes{
justify-content:center;
}

.quantity-box{
justify-content:center;
}

}
/* =====================================
   CONTACT PAGE
===================================== */

.contact-page{
    min-height:80vh;
    padding:160px 20px 100px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    text-align:center;
}

.contact-content{
    width:100%;
    max-width:850px;
}

.contact-content h1{
    font-size:52px;
    font-weight:800;
    letter-spacing:5px;
    margin-bottom:12px;
}

.contact-subtitle{
    color:#bfbfbf;
    font-size:18px;
    margin-bottom:45px;
}

.contact-card{
    background:#fff;
    color:#000;
    max-width:650px;
    margin:auto;
    padding:40px;
    border-radius:24px;
    text-align:left;
    box-shadow:0 18px 50px rgba(255,255,255,.08);
}

.contact-card h2{
    text-align:center;
    font-size:28px;
    font-weight:800;
    letter-spacing:2px;
    margin-bottom:12px;
}

.contact-card > p{
    text-align:center;
    color:#666;
    line-height:1.6;
    margin-bottom:30px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-size:14px;
    font-weight:700;
    margin-bottom:8px;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #d0d0d0;
    border-radius:12px;
    background:#f3f3f3;
    color:#000;
    font-family:'Montserrat',sans-serif;
    font-size:15px;
    outline:none;
    transition:.25s;
}

.form-group input:focus,
.form-group textarea:focus{
    background:#fff;
    border-color:#000;
}

.form-group textarea{
    resize:vertical;
    min-height:140px;
}

.contact-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:40px;
    background:#000;
    color:#fff;
    font-family:'Montserrat',sans-serif;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    background:#222;
    transform:translateY(-2px);
}

.form-message{
    text-align:center;
    margin-top:18px;
    font-size:14px;
    color:#555;
}

/* =====================================
   CONTACT MOBILE
===================================== */

@media(max-width:768px){

    .contact-page{
        padding:140px 20px 70px;
    }

    .contact-content h1{
        font-size:38px;
        letter-spacing:3px;
    }

    .contact-subtitle{
        font-size:16px;
        margin-bottom:30px;
    }

    .contact-card{
        padding:25px 20px;
        border-radius:20px;
    }

    .contact-card h2{
        font-size:23px;
    }

}

/* =====================================
   PREMIUM BASKET PAGE
===================================== */

.basket-page{
    min-height:80vh;
    padding:160px 25px 100px;
    max-width:1100px;
    margin:auto;
}

.basket-page > h1{
    text-align:center;
    font-size:52px;
    font-weight:800;
    letter-spacing:5px;
    margin-bottom:12px;
}

.basket-subtitle{
    text-align:center;
    color:#999;
    font-size:17px;
    margin-bottom:55px;
}

/* ITEMS */

.basket-items{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.basket-item{
    display:grid;
    grid-template-columns:130px 1fr auto;
    align-items:center;
    gap:25px;
    background:#fff;
    color:#000;
    padding:18px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(255,255,255,.06);
    transition:.3s;
}

.basket-item:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 50px rgba(255,255,255,.12);
}

.basket-item img{
    width:130px;
    height:130px;
    object-fit:cover;
    border-radius:14px;
    background:#f5f5f5;
    padding:6px;
}

.basket-item-info{
    text-align:left;
}

.basket-item-info h2{
    font-size:21px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:12px;
}

.basket-item-info p{
    color:#777;
    font-size:14px;
    margin-bottom:6px;
}

.basket-item-info strong{
    display:block;
    font-size:20px;
    margin-top:12px;
}

.remove-btn{
    padding:11px 18px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:30px;
    font-family:'Montserrat',sans-serif;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
}

.remove-btn:hover{
    background:#d00000;
    transform:translateY(-2px);
}

/* SUMMARY */

.basket-summary{
    margin-top:35px;
    background:#111;
    border:1px solid #292929;
    border-radius:22px;
    padding:30px;
    max-width:500px;
    margin-left:auto;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-bottom:25px;
    margin-bottom:25px;
    border-bottom:1px solid #333;
    font-size:18px;
}

.summary-row strong{
    font-size:25px;
}

.checkout-btn{
    width:100%;
    padding:17px;
    border:none;
    border-radius:40px;
    background:#fff;
    color:#000;
    font-family:'Montserrat',sans-serif;
    font-size:15px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.checkout-btn:hover{
    background:#ddd;
    transform:translateY(-2px);
}

.continue-shopping{
    display:block;
    text-align:center;
    margin-top:18px;
    color:#aaa;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.continue-shopping:hover{
    color:#fff;
}

/* EMPTY BASKET */

.empty-basket{
    background:#111;
    border:1px solid #292929;
    border-radius:24px;
    padding:70px 30px;
    text-align:center;
}

.empty-basket h2{
    font-size:28px;
    margin-bottom:12px;
}

.empty-basket p{
    color:#999;
    margin-bottom:30px;
}

.empty-basket a{
    display:inline-block;
    padding:15px 35px;
    background:#fff;
    color:#000;
    border-radius:40px;
    font-weight:800;
    transition:.3s;
}

.empty-basket a:hover{
    background:#ddd;
    transform:translateY(-2px);
}


/* =====================================
   BASKET MOBILE
===================================== */

@media(max-width:700px){

    .basket-page{
        padding:140px 18px 70px;
    }

    .basket-page > h1{
        font-size:38px;
        letter-spacing:3px;
    }

    .basket-subtitle{
        font-size:15px;
        margin-bottom:35px;
    }

    .basket-item{
        grid-template-columns:90px 1fr;
        gap:15px;
        padding:12px;
    }

    .basket-item img{
        width:90px;
        height:90px;
    }

    .basket-item-info h2{
        font-size:16px;
    }

    .basket-item-info strong{
        font-size:17px;
    }

    .remove-btn{
        grid-column:1 / -1;
        width:100%;
    }

    .basket-summary{
        max-width:none;
        padding:22px;
    }

}

/* =====================================
   CHECKOUT PAGE
===================================== */

.checkout-page{
    max-width:1100px;
    margin:150px auto 80px;
    padding:30px 25px;
}

.checkout-page h1{
    text-align:center;
    font-size:52px;
    font-weight:800;
    letter-spacing:5px;
    margin-bottom:10px;
}

.checkout-subtitle{
    text-align:center;
    color:#aaa;
    font-size:17px;
    margin-bottom:55px;
}

.checkout-layout{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:35px;
    align-items:start;
}

.checkout-box{
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:32px;
    box-shadow:0 20px 50px rgba(255,255,255,.04);
}

.checkout-box h2{
    font-size:21px;
    letter-spacing:2px;
    margin-bottom:28px;
}

.checkout-form{
    display:flex;
    flex-direction:column;
}

.checkout-form label{
    font-size:14px;
    font-weight:600;
    color:#ccc;
    margin-bottom:8px;
}

.checkout-form input{
    width:100%;
    padding:15px 16px;
    margin-bottom:20px;

    background:#1b1b1b;
    color:white;

    border:1px solid #333;
    border-radius:10px;

    font-family:'Montserrat',sans-serif;
    font-size:14px;

    outline:none;

    transition:.25s;
}

.checkout-form input::placeholder{
    color:#777;
}

.checkout-form input:focus{
    background:#252525;
    border-color:white;
}

.address-title{
    margin-top:15px;
}

.order-box{
    position:sticky;
    top:120px;
}

#checkoutItems{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.checkout-item{
    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:20px;

    padding:17px;

    background:#151515;

    border:1px solid #252525;

    border-radius:14px;
}

.checkout-item h3{
    font-size:15px;
    margin-bottom:7px;
}

.checkout-item p{
    color:#999;
    font-size:12px;
    margin-top:3px;
}

.checkout-item strong{
    font-size:15px;
    white-space:nowrap;
}

.checkout-total{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:25px;
    padding-top:22px;

    border-top:1px solid #333;

    font-size:18px;
}

.checkout-total strong{
    font-size:24px;
}

.place-order-btn{
    width:100%;

    margin-top:25px;

    padding:17px;

    background:white;
    color:black;

    border:none;
    border-radius:40px;

    font-family:'Montserrat',sans-serif;
    font-size:15px;
    font-weight:800;

    cursor:pointer;

    transition:.3s;
}

.place-order-btn:hover{
    background:#e8e8e8;
    transform:translateY(-2px);
}

.back-basket{

     display:block;

    text-align:center;

    margin-top:18px;

    color:#999;

    font-size:13px;

    transition:.25s;
}

.back-basket:hover{
    color:white;
}

.empty-checkout{
    text-align:center;
    color:#888;
    padding:25px 0;
}

.loading-order{
    color:#888;
    text-align:center;
    padding:20px 0;
}


/* =====================================
   CHECKOUT PHONE
===================================== */

@media(max-width:850px){

    .checkout-page{
        margin-top:140px;
        padding:25px 18px;
    }

    .checkout-page h1{
        font-size:38px;
        letter-spacing:3px;
    }

    .checkout-subtitle{
        margin-bottom:35px;
    }

    .checkout-layout{
        grid-template-columns:1fr;
    }

    .order-box{
        position:static;
    }

    .checkout-box{
        padding:25px 20px;
    }

}


/* =====================================
   SMALL PHONE
===================================== */

@media(max-width:500px){

    .checkout-page h1{
        font-size:32px;
    }

    .checkout-item{
        padding:14px;
    }

    .checkout-item h3{
        font-size:14px;
    }

    .checkout-total strong{
        font-size:21px;
    }

}

/* =====================================
   PAYMENT PAGE
===================================== */

.payment-page{
    max-width:1000px;
    margin:150px auto 80px;
    padding:30px 25px;
}

.payment-page h1{
    text-align:center;
    font-size:52px;
    font-weight:800;
    letter-spacing:5px;
    margin-bottom:10px;
}

.payment-subtitle{
    text-align:center;
    color:#aaa;
    margin-bottom:50px;
}

.payment-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.payment-box{
    background:#0b0b0b;
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:30px;
}

.payment-box h2{
    font-size:20px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.payment-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    background:#151515;
    border:1px solid #252525;
    border-radius:14px;
    padding:16px;
    margin-bottom:12px;
}

.payment-item h3{
    font-size:15px;
    margin-bottom:7px;
}

.payment-item p{
    color:#999;
    font-size:12px;
    margin-top:3px;
}

.payment-item strong{
    white-space:nowrap;
}

.payment-total{
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #333;
    padding-top:22px;
    margin-top:20px;
}

.payment-total strong{
    font-size:25px;
}

.payment-method{
    display:flex;
    align-items:center;
    gap:15px;
    background:#151515;
    border:1px solid #252525;
    border-radius:15px;
    padding:20px;
    margin-bottom:25px;
}

.payment-icon{
    font-size:28px;
}

.payment-method h3{
    font-size:16px;
    margin-bottom:6px;
}

.payment-method p{
    color:#999;
    font-size:13px;
    line-height:1.5;
}

.pay-button{
    width:100%;
    padding:17px;
    background:white;
    color:black;
    border:none;
    border-radius:40px;
    font-family:'Montserrat',sans-serif;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.pay-button:hover{
    background:#e8e8e8;
    transform:translateY(-2px);
}

.back-payment{
    display:block;
    text-align:center;
    margin-top:18px;
    color:#888;
    font-size:13px;
}

.back-payment:hover{
    color:white;
}

.payment-empty,
.payment-loading{
    color:#888;
    text-align:center;
    padding:20px;
}


@media(max-width:800px){

    .payment-page{
        margin-top:140px;
    }

    .payment-page h1{
        font-size:38px;
    }

    .payment-layout{
        grid-template-columns:1fr;
    }

}

/* =====================================
   ELEMENTI PAYMENT PAGE
===================================== */

.payment-page{
min-height:100vh;
padding:170px 25px 100px;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
}

.payment-content{
width:100%;
max-width:700px;
}

.payment-small{
font-size:13px;
font-weight:700;
letter-spacing:4px;
color:#999;
margin-bottom:25px;
}

.payment-content h1{
font-size:64px;
line-height:1;
font-weight:800;
letter-spacing:3px;
margin-bottom:25px;
}

.payment-description{
font-size:17px;
color:#aaa;
margin-bottom:45px;
line-height:1.7;
}

.payment-card{
background:#fff;
color:#000;
border-radius:28px;
padding:35px;
max-width:520px;
margin:0 auto 30px;
box-shadow:0 25px 70px rgba(255,255,255,.12);
}

.payment-card-top{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.payment-card-top span{
font-size:13px;
font-weight:700;
letter-spacing:2px;
color:#777;
}

.payment-card-top strong{
font-size:32px;
font-weight:800;
}

.payment-divider{
height:1px;
background:#ddd;
margin:25px 0;
}

.payment-details{
display:flex;
justify-content:space-between;
text-align:left;
gap:30px;
margin-bottom:30px;
}

.payment-details div{
display:flex;
flex-direction:column;
gap:6px;
}

.payment-details span{
font-size:12px;
color:#888;
text-transform:uppercase;
letter-spacing:1px;
}

.payment-details strong{
font-size:15px;
}

.payment-button{
display:flex;
align-items:center;
justify-content:center;
gap:15px;
width:100%;
padding:18px 25px;
background:#000;
color:#fff;
border-radius:50px;
font-size:16px;
font-weight:800;
letter-spacing:1px;
transition:.3s;
}

.payment-button span{
font-size:22px;
transition:.3s;
}

.payment-button:hover{
background:#222;
transform:translateY(-3px);
box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.payment-button:hover span{
transform:translateX(5px);
}

.secure-text{
font-size:12px;
color:#888;
margin-top:18px;
}

.back-link{
display:inline-block;
font-size:13px;
font-weight:700;
letter-spacing:1px;
color:#aaa;
transition:.3s;
}

.back-link:hover{
color:#fff;
}


@media(max-width:600px){

.payment-page{
padding:150px 18px 80px;
}

.payment-content h1{
font-size:43px;
}

.payment-description{
font-size:15px;
}

.payment-card{
padding:25px 20px;
}

.payment-card-top strong{
font-size:26px;
}

.payment-details{
gap:15px;
}

}

/* =====================================
   ELEMENTI BASKET
===================================== */

.basket-page{
min-height:100vh;
padding:160px 25px 100px;
}

.basket-container{
max-width:1000px;
margin:auto;
}

.basket-container > h1{
text-align:center;
font-size:52px;
font-weight:800;
letter-spacing:4px;
margin-bottom:12px;
}

.basket-subtitle{
text-align:center;
color:#aaa;
font-size:16px;
margin-bottom:50px;
}

.basket-item{
display:grid;
grid-template-columns:120px 1fr auto;
gap:25px;
align-items:center;
background:#fff;
color:#000;
padding:20px;
border-radius:22px;
margin-bottom:18px;
}

.basket-image{
width:120px;
height:120px;
background:#f5f5f5;
border-radius:15px;
overflow:hidden;
}

.basket-image img{
width:100%;
height:100%;
object-fit:cover;
}

.basket-item-info h2{
font-size:20px;
font-weight:800;
margin-bottom:8px;
}

.basket-item-info p{
color:#777;
font-size:14px;
margin-bottom:5px;
}

.basket-controls{
display:flex;
align-items:center;
gap:10px;
margin-top:15px;
}

.basket-controls button{
width:35px;
height:35px;
border:none;
border-radius:9px;
background:#ddd;
color:#000;
font-size:20px;
font-weight:700;
cursor:pointer;
}

.basket-controls button:hover{
background:#bbb;
}

.basket-controls span{
min-width:30px;
text-align:center;
font-weight:700;
}

.basket-item-right{
display:flex;
flex-direction:column;
align-items:flex-end;
gap:20px;
}

.basket-item-right strong{
font-size:21px;
}

.remove-button{
border:none;
background:#eee;
color:#555;
padding:9px 14px;
border-radius:20px;
font-size:11px;
font-weight:700;
cursor:pointer;
}

.remove-button:hover{
background:#ddd;
color:#000;
}

.basket-summary{
background:#111;
border:1px solid #292929;
border-radius:24px;
padding:30px;
max-width:550px;
margin:45px 0 0 auto;
}

.summary-row{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
margin-bottom:16px;
color:#bbb;
}

.summary-row strong{
color:#fff;
font-size:20px;
}

.summary-line{
height:1px;
background:#333;
margin:25px 0;
}

.total-row{
font-size:20px;
color:#fff;
}

.total-row strong{
font-size:28px;
}

.checkout-button{
display:flex;
align-items:center;
justify-content:center;
gap:12px;
width:100%;
padding:17px;
margin-top:25px;
background:#fff;
color:#000;
border-radius:50px;
font-size:15px;
font-weight:800;
letter-spacing:1px;
transition:.3s;
}

.checkout-button:hover{
background:#e8e8e8;
transform:translateY(-2px);
}

.checkout-button span{
font-size:20px;
}

.continue-shopping{
display:block;
text-align:center;
margin-top:20px;
color:#aaa;
font-size:13px;
font-weight:600;
}

.continue-shopping:hover{
color:#fff;
}

.empty-basket{
text-align:center;
padding:70px 20px;
background:#111;
border:1px solid #222;
border-radius:25px;
}

.empty-basket h2{
font-size:28px;
margin-bottom:12px;
}

.empty-basket p{
color:#999;
margin-bottom:25px;
}

.empty-basket a{
display:inline-block;
padding:14px 30px;
background:#fff;
color:#000;
border-radius:40px;
font-weight:800;
}


/* MOBILE */

@media(max-width:700px){

.basket-container > h1{
font-size:38px;
}

.basket-item{
grid-template-columns:90px 1fr;
gap:15px;
}

.basket-image{
width:90px;
height:90px;
}

.basket-item-right{
grid-column:2;
align-items:flex-start;
flex-direction:row;
justify-content:space-between;
}

.basket-summary{
margin-top:30px;
}

}

/* =====================================
   PAYMENT PAGE
===================================== */

.payment-page{

min-height:100vh;

padding:160px 20px 100px;

display:flex;

justify-content:center;

}

.payment-container{

width:100%;

max-width:650px;

text-align:center;

}

.payment-label{

font-size:11px;

font-weight:800;

letter-spacing:4px;

color:#888;

margin-bottom:20px;

}

.payment-container h1{

font-size:58px;

font-weight:800;

letter-spacing:4px;

margin-bottom:15px;

}

.payment-intro{

color:#aaa;

font-size:16px;

margin-bottom:45px;

}

.payment-card{

background:white;

color:black;

padding:35px;

border-radius:28px;

text-align:left;

box-shadow:0 25px 70px rgba(255,255,255,.12);

}

.order-total{

display:flex;

justify-content:space-between;

align-items:center;

}

.order-total span{

font-size:11px;

font-weight:800;

letter-spacing:2px;

color:#777;

}

.order-total strong{

font-size:30px;

}

.payment-line{

height:1px;

background:#ddd;

margin:28px 0;

}

.payment-card h2{

font-size:24px;

margin-bottom:12px;

}

.payment-text{

font-size:14px;

line-height:1.7;

color:#666;

margin-bottom:25px;

}

.bank-details{

background:#f5f5f5;

border-radius:16px;

padding:8px 20px;

}

.bank-row{

display:flex;

justify-content:space-between;

gap:20px;

padding:17px 0;

border-bottom:1px solid #ddd;

}

.bank-row:last-child{

border-bottom:none;

}

.bank-row span{

font-size:10px;

font-weight:800;

letter-spacing:1px;

color:#777;

}

.bank-row strong{

font-size:14px;

text-align:right;

}

.important-payment{

background:#f4f4f4;

border-left:4px solid #000;

padding:18px;

margin-bottom:20px;

}

.important-payment h3{

font-size:13px;

margin-bottom:10px;

letter-spacing:1px;

}

.important-payment p{

font-size:13px;

line-height:1.7;

color:#555;

margin-bottom:8px;

}

.important-payment p:last-child{

margin-bottom:0;

}

.payment-steps{

padding:5px 0;

}

.payment-steps h3{

font-size:13px;

letter-spacing:1px;

margin-bottom:15px;

}

.payment-steps p{

font-size:13px;

color:#666;

margin-bottom:10px;

line-height:1.5;

}

.payment-safety{

margin-top:25px;

padding:18px;

background:#111;

color:white;

border-radius:15px;

}

.payment-safety h3{

font-size:12px;

margin-bottom:8px;

}

.payment-safety p{

font-size:11px;

line-height:1.6;

color:#aaa;

}

.back-basket{

display:block;

text-align:center;

margin-top:25px;

font-size:13px;

font-weight:700;

color:#777;

}

.back-basket:hover{

color:#000;

}


@media(max-width:600px){

.payment-container h1{

font-size:42px;

}

.payment-card{

padding:25px 20px;

}

.order-total strong{

font-size:25px;

}

.bank-row{

flex-direction:column;

gap:6px;

}

.bank-row strong{

text-align:left;

}

}

/* =====================================
   PAYMENT FORM
===================================== */

#orderForm{
margin-top:25px;
}

#orderForm label{
display:block;
font-size:12px;
font-weight:800;
margin:18px 0 8px;
letter-spacing:.5px;
}

#orderForm input,
#orderForm textarea{

width:100%;

padding:15px;

border:1px solid #ddd;

border-radius:12px;

font-family:'Montserrat',sans-serif;

font-size:14px;

outline:none;

background:#fafafa;

transition:.2s;

}

#orderForm input:focus,
#orderForm textarea:focus{

border-color:#000;

background:white;

}

.submit-order{

width:100%;

margin-top:25px;

padding:17px;

border:none;

border-radius:40px;

background:#000;

color:white;

font-size:15px;

font-weight:800;

letter-spacing:1px;

cursor:pointer;

transition:.3s;

}

.submit-order:hover{

background:#222;

transform:translateY(-2px);

}

/* =========================================
   PREMIUM IPHONE OPTIMISATION
========================================= */

@media screen and (max-width: 768px){

html{
    -webkit-text-size-adjust:100%;
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
    padding-top:env(safe-area-inset-top);
    padding-bottom:env(safe-area-inset-bottom);
    background:#000;
}

/* Navigation */

.header{
    padding-top:25px;
    padding-left:18px;
    padding-right:18px;
}

.header nav{
    width:100%;
    max-width:760px;
    margin:auto;
    border-radius:35px;
    padding:22px 15px;
}

/* Payment & Thank You Pages */

.payment-page,
.product-page,
.contact-page,
.basket-page{
    padding-top:90px;
    padding-left:20px;
    padding-right:20px;
}

/* Product Images */

.main-product-image{
    width:100%;
    border-radius:22px;
}

.thumbnail{
    border-radius:14px;
}

/* Product Card */

.product-info{
    margin-top:25px;
}

.product-info h1{
    font-size:34px;
    line-height:1.15;
    letter-spacing:1px;
}

.price{
    font-size:32px;
}

.description{
    font-size:17px;
    line-height:1.7;
    color:#888;
}

/* Size Buttons */

.sizes{
    gap:12px;
}

.size-btn{
    width:60px;
    height:55px;
    border-radius:14px;
    font-size:17px;
    transition:.25s;
}

.size-btn.selected{
    transform:scale(1.05);
}

/* Quantity */

.quantity-box{
    height:60px;
    border-radius:15px;
}

.quantity-box button{
    width:60px;
    font-size:28px;
}

.quantity-box span{
    font-size:22px;
}

/* Main Buttons */

.addBasket,
.submit-order,
.button{
    width:100%;
    border-radius:16px;
    padding:18px;
    font-size:17px;
    font-weight:700;
    letter-spacing:2px;
    transition:.3s;
}

.addBasket:active,
.submit-order:active,
.button:active{
    transform:scale(.98);
}

/* Cards */

.payment-card,
.box,
.basket-card{
    border-radius:24px;
    padding:30px 24px;
}

/* Footer */

.footer-content{
    padding:40px 20px;
}

.footer-content h2{
    letter-spacing:8px;
    font-size:26px;
}

/* Smooth Animations */

*{
    -webkit-tap-highlight-color:transparent;
}

button,
a{
    transition:.25s ease;
}

}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-header,
.mobile-menu,
.overlay{
display:none;
}

.desktop-nav{
display:flex;
}

@media (max-width:768px){

/* Hide desktop nav */

.desktop-nav{
display:none;
}

/* Top Bar */

.mobile-header{
display:flex;
align-items:center;
justify-content:space-between;

position:fixed;
top:0;
left:0;

width:100%;
height:72px;

padding:0 22px;

background:#111;
border-bottom:1px solid rgba(255,255,255,.08);

z-index:9999;

box-sizing:border-box;
}

.mobile-logo{
color:#fff;
text-decoration:none;
font-size:24px;
font-weight:800;
letter-spacing:3px;
}

.menu-btn{
background:none;
border:none;
color:#fff;
font-size:34px;
cursor:pointer;
}

/* Sidebar */

.mobile-menu{

display:flex;
flex-direction:column;

position:fixed;
top:0;
left:-100%;

width:280px;
height:100vh;

background:#0b0b0b;

padding-top:90px;

transition:left .35s ease;

z-index:10000;
}

.mobile-menu.active{
left:0;
}

.mobile-menu a{
color:white;
text-decoration:none;
padding:18px 30px;
font-size:18px;
font-weight:600;
border-bottom:1px solid rgba(255,255,255,.05);
}

.mobile-menu a:hover{
background:#171717;
}

/* Close */

.close-btn{
position:absolute;
top:18px;
right:18px;

background:none;
border:none;

color:white;

font-size:34px;

cursor:pointer;
}

/* Overlay */

.overlay{

position:fixed;
top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.55);

opacity:0;
visibility:hidden;

transition:.3s;

z-index:9998;
}

.overlay.active{
opacity:1;
visibility:visible;
}

/* Hero */

.hero{
padding-top:120px;
}

/* Products */

.products{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
padding:18px;
}

.product-card img{
height:170px;
object-fit:cover;
}

.product-info h3{
font-size:16px;
}

.product-info p{
font-size:11px;
}

.product-info button{
font-size:11px;
padding:10px;
}

.hero h1{
font-size:44px;
letter-spacing:3px;
}

.hero p{
font-size:16px;
}

.featured h2{
font-size:34px;
}

}

/* Move Contact page down on mobile */
@media (max-width: 768px) {

    .contact-page {
        padding-top: 180px !important;
    }

}

/* Move Basket page down on mobile */
@media (max-width: 768px) {

    .basket-page {
        padding-top: 180px !important;
    }

}

@media (max-width: 768px) {

    .shop-grid,
    .products {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .shop-item,
    .card {
        width: 100% !important;
        max-width: none !important;
    }

}

/* ==========================
   SHORTS PRODUCT IMAGES
========================== */

.shop-item img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ==========================
   INDEX PRODUCT IMAGES
========================== */

.shop-item img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    object-position: center;
    display: block;
}


/* MOBILE */

@media (max-width: 768px) {

    .shop-item img {
        height: 380px;
        object-fit: contain;
    }

}

/* INDEX PRODUCT IMAGES */

.products .product-card img {
    width: 100%;
    height: 420px;
    object-fit: contain !important;
    object-position: center;
    display: block;
}

/* MOBILE */

@media (max-width: 768px) {
    .products .product-card img {
        height: 380px;
        object-fit: contain !important;
    }
}