/* ========================================= */
/* SAINTS V3 */
/* Global Styling */
/* ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{

    --black:#050505;
    --card:#0D0D0D;
    --gold:#C7A052;
    --white:#F5F5F5;
    --gray:#A4A4A4;
    --border:rgba(255,255,255,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;

}

body{

    background:var(--black);
    color:var(--white);
    overflow-x:hidden;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:var(--black);

}

::-webkit-scrollbar-thumb{

    background:var(--gold);
    border-radius:100px;

}

/* ========================================= */
/* HEADER */
/* ========================================= */

header{

    position:fixed;

    width:100%;

    top:0;
    left:0;

    z-index:999;

    transition:.4s;

}

/* this class will be added later with JavaScript */

header.scrolled{

    background:rgba(5,5,5,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.navbar{

    width:90%;

    margin:auto;

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo img{

    height:65px;

    cursor:pointer;

    transition:.35s;

}

.logo img:hover{

    transform:scale(1.05);

}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.nav-links{

    display:flex;

    list-style:none;

    gap:45px;

}

.nav-links li{

    position:relative;

}

.nav-links a{

    text-decoration:none;

    color:var(--white);

    font-weight:500;

    transition:.35s;

}

.nav-links a:hover{

    color:var(--gold);

}

/* Animated underline */

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0%;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

/* ========================================= */
/* LOGIN BUTTON */
/* ========================================= */

.login-btn{

    background:transparent;

    color:var(--gold);

    border:2px solid var(--gold);

    padding:12px 30px;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    transition:.35s;

}

.login-btn:hover{

    background:var(--gold);

    color:black;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(199,160,82,.35);

}

/* ========================================= */
/* LOGIN BUTTON */
/* ========================================= */

.login-btn{

    background:transparent;

    color:var(--gold);

    border:2px solid var(--gold);

    padding:12px 30px;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    transition:.35s;

}

.login-btn:hover{

    background:var(--gold);

    color:black;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(199,160,82,.35);

}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero{

    width:100%;

    margin:0;

    position:relative;

    overflow:hidden;

    background:
        url("../images/hero-bg-desktop.png")
        center center / cover no-repeat;

}

.hero-container{

    width:90%;

    max-width:1400px;

    margin:auto;

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:80px;

    padding-top:120px;

}

.hero-text{

    flex:1;

    animation:slideLeft 1.1s ease;

}

.hero-subtitle{

    color:var(--gold);

    text-transform:uppercase;

    letter-spacing:6px;

    font-size:14px;

    margin-bottom:18px;

}

.hero-text h1{

    font-size:78px;

    line-height:1;

    margin-bottom:25px;

}

.hero-text h1 span{

    color:var(--gold);

}

.hero-text p{

    max-width:520px;

    color:var(--gray);

    line-height:1.9;

    font-size:17px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.hero-buttons a{

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    justify-content:center;

}

.shop-btn{

    background:var(--gold);

    color:black;

    border:none;

    padding:16px 36px;

    border-radius:50px;

    cursor:pointer;

    font-weight:600;

    transition:.35s;

}

.shop-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(199,160,82,.35);

}

.secondary-btn{

    background:transparent;

    color:white;

    border:1px solid rgba(255,255,255,.15);

    padding:16px 36px;

    border-radius:50px;

    cursor:pointer;

    transition:.35s;

}

.secondary-btn:hover{

    border-color:var(--gold);

    color:var(--gold);

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    animation:fadeImage 1.4s ease;

}

.hero-image img{

    width:100%;

    max-width:540px;

    border-radius:20px;

    transition:.45s;

    filter:brightness(.96);

}

.hero-image img:hover{

    transform:scale(1.03);

}

@keyframes slideLeft{

    from{

        opacity:0;

        transform:translateX(-80px);

    }

    to{

        opacity:1;

        transform:translateX(0);

    }

}

@keyframes fadeImage{

    from{

        opacity:0;

        transform:translateY(40px) scale(.95);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(70px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/* ========================================= */
/* FEATURED COLLECTION */
/* ========================================= */

.featured{

    width:100%;

    margin:0;

    padding:120px 0;

    background:
        #FAF8F4
        url("../images/featured-bg.png")
        center center / cover no-repeat;

    position:relative;

    overflow:hidden;

}

.featured-overlay{

    width:90%;

    max-width:1400px;

    margin:auto;

    position:relative;

    z-index:2;

}

.section-header{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    margin-bottom:70px;

}

.section-subtitle{

    color:var(--gold);

    letter-spacing:5px;

    font-size:13px;

    text-transform:uppercase;

    margin-bottom:14px;

}

.section-title{

    font-size:52px;

    line-height:1.1;

    color:#111;

    margin-bottom:22px;

}

.section-description{

    color:#555;

    max-width:430px;

    text-align:right;

    line-height:1.9;

}

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.product-card{

    background:#FFFFFF;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    cursor:pointer;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.product-image{

    height:380px;

    overflow:hidden;

    background:#EFE9DF;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.product-card:hover .product-image img{

    transform:scale(1.06);

}

.product-info{

    padding:30px;

    background:white;

}

.product-category{

    color:var(--gold);

    font-size:13px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.product-name{

    color:#111;

    font-size:26px;

    margin-bottom:14px;

}

.product-price{

    color:#111;

    font-size:20px;

    font-weight:700;

}

.product-arrow{

    margin-top:24px;

    color:var(--gold);

    display:inline-block;

    transition:.3s;

}

.product-card:hover .product-arrow{

    transform:translateX(8px);

}
/* ========================================= */
/* ABOUT */
/* ========================================= */

.about{

    width:100%;

    margin:0;

    padding:140px 0;

    background:
        #090909
        url("../images/about-bg.png")
        center center / cover no-repeat;

    position:relative;

    overflow:hidden;

}

.about-overlay{

    width:90%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:90px;

}

.about-content{

    animation:fadeUp 1s ease;

}

.about-tag{

    color:var(--gold);

    letter-spacing:6px;

    font-size:13px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.about-content h2{

    font-size:72px;

    line-height:1;

    margin-bottom:25px;

    color:white;

}

.about-content h2 span{

    color:var(--gold);

}

.about-content p{

    color:#BDBDBD;

    line-height:2;

    font-size:17px;

    margin-bottom:22px;

    max-width:620px;

}

.about-content blockquote{

    margin-top:45px;

    padding-left:25px;

    border-left:3px solid var(--gold);

    color:white;

    font-size:22px;

    line-height:1.7;

    font-style:italic;

}

.about-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:45px;

    padding:16px 36px;

    border:2px solid var(--gold);

    border-radius:50px;

    color:var(--gold);

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.about-button:hover{

    background:var(--gold);

    color:black;

    transform:translateY(-5px);

}

.about-image{

    display:flex;

    justify-content:center;

}

.about-image img{

    width:100%;

    max-width:520px;

    border-radius:24px;

    box-shadow:0 30px 70px rgba(0,0,0,.55);

    transition:.45s;

}

.about-image img:hover{

    transform:scale(1.03);

}

/* ========================================= */
/* THE SAINTS EXPERIENCE */
/* ========================================= */

.experience{

    width:100%;

    margin:0;

    padding:120px 0;

    background: url("../images/about-bg.png") 
    center center / cover no-repeat;

    position:relative;

    overflow:hidden;

}

.experience-header{

    text-align:center;
    max-width:760px;
    margin:auto auto 80px;

}

.experience-tag{

    color:var(--gold);
    letter-spacing:8px;
    font-size:14px;
    margin-bottom:20px;

}

.experience-header h2{

    font-size:58px;
    margin-bottom:25px;

}

.experience-description{

    color:var(--gray);
    line-height:1.9;
    font-size:18px;

}

.experience-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

}

.experience-card{

    background:#111;
    border:1px solid rgba(255,255,255,.06);
    border-radius:26px;
    overflow:hidden;
    transition:.45s;

}

.experience-card:hover{

    transform:translateY(-12px);
    border-color:rgba(199,160,82,.4);
    box-shadow:0 25px 60px rgba(0,0,0,.45);

}

.experience-card img{

    width:100%;
    height:360px;
    object-fit:cover;
    transition:.5s;

}

.experience-card:hover img{

    transform:scale(1.05);

}

.experience-card h3{

    text-align:center;
    padding:28px;
    color:white;
    letter-spacing:5px;
    font-weight:500;
    text-transform:uppercase;

}

/* ========================================= */
/* LOOKBOOK */
/* ========================================= */

.lookbook{

    width:100%;

    margin:0;

    padding:140px 0;

    background:
        url("../images/lookbook-bg.png")
        center center / cover no-repeat;

    position:relative;

}

.lookbook-container{

    width:90%;

    max-width:1400px;

    margin:auto;

}

.lookbook-grid{

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:28px;

}

.lookbook-large,
.lookbook-small{

    position:relative;
    overflow:hidden;

    border-radius:24px;

    background:#ffffff;

    cursor:pointer;

    border:1px solid rgba(0,0,0,.08);

    transition:.45s;

    box-shadow:
        0 12px 35px rgba(0,0,0,.10);

}

.lookbook-large:hover,
.lookbook-small:hover{

    transform:translateY(-8px);

    border-color:rgba(199,160,82,.45);

    box-shadow:
        0 30px 70px rgba(0,0,0,.18);

}

.lookbook-small-wrapper{

    display:grid;

    gap:28px;

}

.lookbook-large{

    height:760px;

}

.lookbook-small{

    height:366px;

}

.lookbook-large img,
.lookbook-small img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.8s;

}

.lookbook-large:hover img,
.lookbook-small:hover img{

    transform:scale(1.05);

}

.lookbook-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:38px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.72),
            rgba(0,0,0,.18),
            rgba(0,0,0,0)
        );

}

.lookbook-overlay h3{

    color:#ffffff;

    font-size:34px;

    font-weight:600;

    margin-bottom:14px;

    transition:.35s;

}

.lookbook-overlay p{

    color:rgba(255,255,255,.90);

    line-height:1.8;

    max-width:430px;

}

.lookbook-large:hover h3,
.lookbook-small:hover h3{

    color:#D4AF37;

}

.lookbook-large::after,
.lookbook-small::after{

    content:"";

    position:absolute;

    left:38px;

    bottom:28px;

    width:0;

    height:2px;

    background:#D4AF37;

    transition:.45s;

}

.lookbook-large:hover::after,
.lookbook-small:hover::after{

    width:90px;

}

/* ========================================= */
/* NEWSLETTER BACKGROUND */
/* ========================================= */

.newsletter-section{

    width:100%;

    padding:120px 0;

    background:
        url("../images/about-bg.png")
        center center / cover no-repeat;

}

/* ========================================= */
/* NEWSLETTER */
/* ========================================= */

.newsletter{
    width:90%;
    margin:160px auto;
    background:linear-gradient(135deg,#0F0F0F,#171717);
    border:1px solid var(--border);
    border-radius:25px;
    padding:90px 70px;
    text-align:center;
    overflow:hidden;
    position:relative;
}

.newsletter::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,rgba(199,160,82,.18),transparent 70%);
    top:-180px;
    right:-120px;
}

.newsletter h2{
    font-size:52px;
    margin-bottom:18px;
}

.newsletter p{
    color:var(--gray);
    max-width:650px;
    margin:auto;
    line-height:1.8;
    margin-bottom:40px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter-form input{
    width:380px;
    padding:18px 22px;
    border:none;
    outline:none;
    background:#1A1A1A;
    color:white;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.newsletter-form input:focus{
    border-color:var(--gold);
}

.newsletter-form button{
    padding:18px 38px;
    border:none;
    border-radius:50px;
    background:var(--gold);
    color:black;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
}

.newsletter-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(199,160,82,.35);
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

footer{

    width:100%;
    background:#080808;
    border-top:1px solid rgba(255,255,255,.06);
    margin-top:150px;

}

.footer-container{

    width:90%;
    margin:auto;
    padding:80px 0 50px;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:180px;
    align-items:start;

}

.footer-logo img{

    width:170px;
    margin-bottom:20px;

}

.footer-logo p{

    color:var(--gray);
    line-height:1.9;
    max-width:360px;

}

.footer-column{

    display:flex;
    flex-direction:column;

}

.footer-column h4{

    color:var(--gold);
    font-size:20px;
    margin-bottom:25px;

}

.footer-column a{

    text-decoration:none;
    color:var(--gray);
    margin-bottom:18px;
    transition:.3s;

}

.footer-column a:hover{

    color:var(--gold);
    padding-left:6px;

}

.footer-bottom{

    width:90%;
    margin:auto;

    border-top:1px solid rgba(255,255,255,.06);

    padding:25px 0;

    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#888;
    font-size:14px;

}

.footer-social{

    display:flex;
    gap:18px;

}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;
    justify-content:center;
    align-items:center;

    border:1px solid rgba(255,255,255,.08);
    border-radius:50%;

    text-decoration:none;
    color:white;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--gold);
    color:black;
    border-color:var(--gold);
    transform:translateY(-5px);

}

/* ========================================= */
/* MOBILE FOOTER */
/* ========================================= */

@media (max-width:768px){

    .footer-container{

        grid-template-columns:1fr;
        gap:50px;
        text-align:center;

    }

    .footer-logo{

        display:flex;
        flex-direction:column;
        align-items:center;

    }

    .footer-logo p{

        max-width:100%;

    }

    .footer-column{

        align-items:center;

    }

    .footer-bottom{

        flex-direction:column;
        gap:20px;
        text-align:center;

    }

    .footer-social{

        justify-content:center;

    }

}
/* ========================================= */
/* RESPONSIVE DESIGN */
/* ========================================= */

@media (max-width:1200px){

    .hero h1{
        font-size:64px;
    }

    .section-title{
        font-size:42px;
    }

}

@media (max-width:992px){

    .navbar{
        height:80px;
    }

    .nav-links{
        gap:25px;
    }

    .hero{
        flex-direction:row;
    }

    .hero-text p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        margin-top:60px;
    }

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .about{
        grid-template-columns:1fr;
        gap:60px;
    }

    .stats{
        grid-template-columns:repeat(2,1fr);
    }

    .lookbook-grid{
        grid-template-columns:1fr;
    }

    .lookbook-large{
        height:550px;
    }

    .footer-container{
        grid-template-columns:1fr 1fr;
    }

}

@media (max-width:480px){

    .hero h1{
        font-size:38px;
    }

    .section-title{
        font-size:34px;
    }

    .stat-number{
        font-size:42px;
    }

}

/* ========================================= */
/* PREMIUM EFFECTS */
/* ========================================= */

/* Gold text selection */

::selection{
    background:var(--gold);
    color:black;
}

/* Smooth section appearance */

.hero,
.featured,
.about,
.stats,
.lookbook,
.newsletter,
footer{

    animation:fadeUp .9s ease both;

}

/* Floating Hero Image */

.hero-image img{

    animation:float 6s ease-in-out infinite;

}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* Gold Glow Behind Hero */

.hero{

    position:relative;

}

/* Section Divider */

.section-divider{

    width:80px;

    height:3px;

    background:var(--gold);

    border-radius:50px;

    margin:18px 0 35px;

}

/* Card Shine */

.product-card{

    position:relative;

}

.product-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );

    transform:translateX(-120%);

    transition:.8s;

}

.product-card:hover::before{

    transform:translateX(120%);

}

/* Premium Shadow */

.product-card,
.stat-card,
.newsletter{

    box-shadow:
    0 10px 40px rgba(0,0,0,.35);

}

/* Button Active */

button:active{

    transform:scale(.97);

}

/* Images cannot be selected */

img{

    user-select:none;

    -webkit-user-drag:none;

}

/* ========================================= */
/* MODALS */
/* ========================================= */

.modal{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:flex-start;

    overflow-y:auto;

    padding:20px;

    background:rgba(0,0,0,.75);

    backdrop-filter:blur(10px);

    z-index:9999;

    animation:fadeModal .3s ease;

}

.modal-content{

    width:100%;

    max-width:500px;

    max-height:calc(100vh - 40px);

    overflow-y:auto;

    background:#0B0B0B;

    border:1px solid rgba(199,160,82,.25);

    border-radius:22px;

    padding:30px;

    position:relative;

    margin:auto;

    box-shadow:0 30px 80px rgba(0,0,0,.55);

}

.modal-content h2{

    font-size:36px;

    margin-bottom:10px;

}

.modal-divider{

    width:80px;

    height:3px;

    background:var(--gold);

    border-radius:50px;

    margin-bottom:35px;

}

.close-btn{

    position:absolute;

    top:20px;

    right:25px;

    font-size:34px;

    color:var(--gray);

    cursor:pointer;

    transition:.3s;

}

.close-btn:hover{

    color:var(--gold);

    transform:rotate(90deg);

}

.modal.show{

    display:flex;

}

/* CONTACT */

.contact-item{

    margin-bottom:28px;

}

.contact-item h3{

    color:var(--gold);

    margin-bottom:10px;

    font-size:18px;

}

.contact-item p{

    color:var(--white);

    line-height:1.8;

}

.contact-item a{

    color:var(--white);

    text-decoration:none;

    transition:.3s;

}

.contact-item a:hover{

    color:var(--gold);

}

/* ORDER FORM */
#orderForm{

    display:flex;

    flex-direction:column;

    gap:12px;

}

#orderForm label{

    color:var(--gold);

    font-weight:500;

}
#orderForm input,
#orderForm textarea,
#orderForm select{

    width:100%;

    padding:13px 16px;

    border:none;

    outline:none;

    border-radius:12px;

    background:#141414;

    color:var(--white);

    border:1px solid rgba(255,255,255,.08);

    font-size:15px;

    transition:.3s;

}

#orderForm input:focus,
#orderForm textarea:focus,
#orderForm select:focus{

    border-color:var(--gold);

}

#orderForm textarea{

    resize:vertical;

}
.submit-order{

    margin-top:15px;

    padding:15px;

    border:none;

    border-radius:50px;

    background:var(--gold);

    color:black;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.submit-order:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(199,160,82,.35);

}

/* SHOW MODAL */

.modal.show{

    display:flex;

}

/* ANIMATION */

@keyframes fadeModal{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/* ========================================= */
/* PRODUCT PREVIEW MODAL */
/* ========================================= */

.product-modal-content{

    width:100%;

    max-width:520px;

    max-height:calc(100vh - 40px);

    overflow-y:auto;

    background:#0B0B0B;

    border:1px solid rgba(199,160,82,.25);

    border-radius:22px;

    padding:30px;

    text-align:center;

    position:relative;

    margin:auto;

    animation:fadeUp .35s ease;

}

.product-modal-content img{

    width:100%;

    max-height:420px;

    object-fit:contain;

    border-radius:16px;

    margin-bottom:25px;

}

.product-modal-content h3{

    font-size:30px;

    margin-bottom:18px;

}

.sizes-title{

    color:var(--gray);

    margin-bottom:15px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:13px;

}

.sizes{

    display:flex;

    justify-content:center;

    gap:15px;

}

.sizes span{

    width:48px;

    height:48px;

    border:1px solid rgba(199,160,82,.5);

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--gold);

    font-weight:600;

    transition:.3s;

}

.sizes span:hover{

    background:var(--gold);

    color:black;

}

.product-price{

    color:var(--gold);

    font-size:1.15rem;

    font-weight:700;

    margin-top:10px;

}

.product-preview-price{

    color:var(--gold);

    font-size:1.4rem;

    font-weight:700;

    margin-top:10px;

    margin-bottom:20px;

}

/* ========================================= */
/* NEW RESPONSIVE HEADER */
/* ========================================= */

.hamburger{

    display:none;

    width:48px;

    height:48px;

    border:none;

    background:transparent;

    cursor:pointer;

    z-index:10002;

    position:relative;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    margin:6px auto;

    background:var(--white);

    border-radius:50px;

    transition:.35s;

}

.mobile-menu{

    display:none;

}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

}

.mobile-logo{

    width:90px;

    margin-bottom:45px;

}

.mobile-menu ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:30px;

    text-align:center;

    padding:0;

    margin:0;

}

.mobile-menu a{

    color:var(--white);

    text-decoration:none;

    font-size:30px;

    font-weight:600;

    transition:.3s;

}

.mobile-menu a:hover{

    color:var(--gold);

}

.mobile-order-btn{

    margin-top:45px;

    padding:15px 45px;

    border:none;

    border-radius:50px;

    background:var(--gold);

    color:black;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.mobile-order-btn:hover{

    transform:translateY(-4px);

}

.close-mobile{

    position:absolute;

    top:35px;

    right:35px;

    border:none;

    background:none;

    color:white;

    font-size:42px;

    cursor:pointer;

}

.menu-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.55);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:10000;

}

.menu-overlay.active{

    opacity:1;

    visibility:visible;

}

/* ========================================= */
/* MOBILE HERO */
/* ========================================= */

@media (max-width:768px){

    header{

    position:relative;

}

.navbar{

    width:92%;

    margin:auto;

    padding:20px 0;

    height:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:18px;

}

.logo{

    display:flex;

    justify-content:center;

}

.nav-links{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:22px;

    width:100%;

    padding:0;

    margin:0;

}

.nav-links li{

    list-style:none;

}

.login-btn{

    margin-top:10px;

}
.hero{

    width:92%;

    margin:auto;

    padding-top:40px;

    padding-bottom:80px;

    min-height:auto;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:50px;

    text-align:center;

    background:
        url("../images/hero-bg-mobile.webp")
        center center / cover no-repeat;

    border-radius:24px;

}

    .hero-text{

        width:100%;

    }

    .hero-subtitle{

        font-size:13px;

        letter-spacing:4px;

    }

    .hero-text h1{

        font-size:54px;

        line-height:1.05;

        margin-bottom:25px;

    }

    .hero-text p{

        max-width:100%;

        font-size:18px;

        line-height:1.8;

        margin:auto;

        margin-bottom:35px;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

        gap:18px;

    }

    .shop-btn,
    .secondary-btn{

        width:200px;

    }

    .hero-image{

        width:100%;

        display:flex;

        justify-content:center;

    }

    .hero-image img{

        width:100%;

        max-width:420px;

    }

    .about-overlay{

    grid-template-columns:1fr;

    gap:50px;

    text-align:center;

    }

    /* ========================================= */
    /* MOBILE SAINTS EXPERIENCE */
    /* ========================================= */

    .experience-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .experience-card{

        width:100%;

    }

    .experience-card img{

        height:230px;

        object-fit:cover;

    }

    .experience-card h3{

        font-size:16px;

        letter-spacing:2px;

        white-space:nowrap;

    }

}

/* ========================================= */
/* MOBILE MODALS */
/* ========================================= */

@media (max-width:768px){

    .modal{

        padding:15px;

    }

    .modal-content,
    .product-modal-content{

        width:100%;

        max-width:100%;

        max-height:calc(100vh - 30px);

        padding:20px;

        overflow-y:auto;

        border-radius:20px;

    }

    .modal-content h2,
    .product-modal-content h3{

    font-size:2rem;

    text-align:center;

    }

    .product-modal-content img{

    max-height:300px;

    width:100%;

    object-fit:contain;

    }   

    .sizes{

    flex-wrap:wrap;

    gap:10px;

    }

    #orderForm input,
    #orderForm textarea,
    #orderForm select{

    font-size:16px;

    }

}

/* ========================================= */
/* PAYMENT MODAL */
/* ========================================= */

.payment-message{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:30px;

}

.payment-qr{

    width:100%;

    max-width:280px;

    display:block;

    margin:30px auto;

    border-radius:18px;

    border:1px solid rgba(199,160,82,.2);

    background:#111;

    padding:12px;

}

.payment-methods{

    margin-top:25px;

}

.payment-methods strong{

    color:var(--gold);

    display:block;

    margin-bottom:15px;

    font-size:18px;

}

.payment-methods ul{

    margin-left:20px;

    color:var(--gray);

    line-height:2;

}

.payment-help{

    margin-top:35px;

}

.payment-help h3{

    color:var(--gold);

    margin-bottom:15px;

}

.payment-help p{

    color:var(--gray);

    line-height:1.9;

}

.payment-help ul{

    margin:15px 0 15px 20px;

    color:var(--gray);

    line-height:2;

}

.facebook-btn{

    display:inline-block;

    margin-top:20px;

    padding:14px 28px;

    background:var(--gold);

    color:black;

    text-decoration:none;

    font-weight:600;

    border-radius:50px;

    transition:.3s;

}

.facebook-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(199,160,82,.35);

}

/* ========================================= */
/* PAYMENT NOTICE */
/* ========================================= */

.payment-note{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:25px;

    padding:18px;

    border:1px solid rgba(199,160,82,.25);

    border-radius:16px;

    background:rgba(199,160,82,.06);

}

.payment-note i{

    color:var(--gold);

    font-size:20px;

    margin-top:2px;

}

.payment-note p{

    margin:0;

    color:var(--gray);

    line-height:1.7;

    font-size:15px;

}

.payment-note strong{

    color:var(--gold);

}

/* ========================================= */
/* SHOP COLLECTION GALLERY */
/* ========================================= */

.gallery-content{

    max-width:760px;

    width:90%;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.gallery-content img{

    width:100%;

    max-width:380px;

    border-radius:18px;

    display:block;

    margin:0 auto 30px;

    transition:.35s;

}

.gallery-content h2{

    font-size:42px;

    margin-bottom:12px;

}

.gallery-content p{

    font-size:28px;

    color:var(--gold);

    font-weight:700;

    margin-bottom:35px;

}

.gallery-arrow{

    position:absolute;

    top:45%;

    transform:translateY(-50%);

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:rgba(199,160,82,.15);

    color:var(--gold);

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.gallery-arrow:hover{

    background:var(--gold);

    color:black;

}

.gallery-arrow.left{

    left:25px;

}

.gallery-arrow.right{

    right:25px;

}

.gallery-dots{

    display:flex;

    justify-content:center;

    gap:12px;

}

.gallery-dots .dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:#444;

    transition:.3s;

}

.gallery-dots .dot.active{

    background:var(--gold);

}

@media(max-width:768px){

.gallery-content{

    width:92%;

    padding:35px 25px;

}

.gallery-content img{

    max-width:250px;

}

.gallery-content h2{

    font-size:30px;

}

.gallery-content p{

    font-size:22px;

}

.gallery-arrow{

    width:42px;

    height:42px;

    font-size:18px;

}

.gallery-arrow.left{

    left:10px;

}

.gallery-arrow.right{

    right:10px;

}

.gallery-dots{

    gap:8px;

}

.gallery-dots .dot{

    width:10px;

    height:10px;

}
}

