.desktop-header{
    display:block;
}
.top-bar{
height:35px;
background:#111;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:12px;
letter-spacing:2px;
}

.header{
height:75px;
display:flex;
justify-content:space-between;
align-items:center;
padding:0 20px;
background:#fff;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #eee;
}

#menu-btn{
border:none;
background:none;
font-size:28px;
cursor:pointer;
}

.logo{
font-size:32px;
font-weight:800;
letter-spacing:5px;
}

.header-icons{
display:flex;
gap:20px;
font-size:22px;
}

#mobile-menu{
position:fixed;
top:0;
left:-320px;
width:300px;
height:100%;
background:#fff;
padding:30px;
display:flex;
flex-direction:column;
transition:.3s;
z-index:9999;
}

#mobile-menu.show{
left:0;
}

.mobile-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
font-size:22px;
font-weight:bold;
}

#mobile-menu a{
padding:15px 0;
border-bottom:1px solid #eee;
font-size:17px;
}

#overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
display:none;
z-index:9998;
}

#overlay.show{
display:block;
}
/* ==========================
   VIVI AURA
   Premium Fashion Theme
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#fff;
    color:#111;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    background:none;
    cursor:pointer;
}

.container{
    width:92%;
    max-width:1400px;
    margin:auto;
}
/*=========================
HEADER
=========================*/

.top-bar{
    height:34px;
    background:#111;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:12px;
    letter-spacing:2px;
}

.header{

    position:sticky;

    top:0;

    background:#fff;

    height:72px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 18px;

    border-bottom:1px solid #ececec;

    z-index:9999;

}

.menu-btn{

    font-size:30px;

}

.logo{

    font-size:34px;

    font-weight:800;

    letter-spacing:5px;

    flex:1;

    text-align:center;

}

.header-icons{

    display:flex;

    gap:22px;

}

.header-icons i{

    font-size:23px;

}

/* Drawer */

.drawer{

    position:fixed;

    left:-320px;

    top:0;

    width:300px;

    height:100%;

    background:#fff;

    padding:30px;

    transition:.35s;

    display:flex;

    flex-direction:column;

    z-index:99999;

}

.drawer.active{

    left:0;

}

.drawer-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.drawer a{

    padding:16px 0;

    border-bottom:1px solid #eee;

    font-size:18px;

}

.drawer-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

}

.drawer-overlay.active{

    opacity:1;

    visibility:visible;

}

@media(min-width:769px){

.menu-btn{

display:none;

}

.drawer{

display:none;

}

.drawer-overlay{

display:none;

}

}
/* ===============================
   PRODUCTS
================================ */
.shop-page{
    max-width:1450px;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    padding:0 25px;
}

.shop-card{
    transition:.35s;
}

.shop-image{
    position:relative;
    overflow:hidden;
}

.shop-image img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.shop-info{
    text-align:center;
    padding:18px 5px;
}

.shop-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:-70px;
    background:#fff;
    text-align:center;
    padding:15px;
    transition:.35s;
}

.shop-card:hover .shop-overlay{
    bottom:0;
}
/* ==========================
   PREMIUM SHOP GRID
========================== */

.shop-container{
    max-width:1450px;
    margin:60px auto;
    padding:0 25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    position:relative;
    background:#fff;
    transition:.35s ease;
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:520px;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card:hover img{
    transform:scale(1.05);
}

/* Quick View */

.product-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:-70px;
    background:rgba(255,255,255,.96);
    text-align:center;
    padding:15px;
    transition:.35s ease;
}

.product-card:hover .product-overlay{
    bottom:0;
}

.product-overlay a{
    display:inline-block;
    background:#111;
    color:#fff;
    text-decoration:none;
    padding:12px 30px;
    font-size:13px;
    letter-spacing:2px;
    transition:.3s;
}

.product-overlay a:hover{
    background:#333;
}

/* Product Details */

.product-info{
    padding:18px 5px;
    text-align:center;
}

.product-info h3{
    font-size:18px;
    font-weight:600;
    margin-bottom:10px;
}

.price{
    font-size:22px;
    font-weight:700;
    color:#111;
}

/* Responsive */

@media(max-width:992px){

.shop-container{
    grid-template-columns:repeat(2,1fr);
}

.product-image img{
    height:420px;
}

}

@media(max-width:600px){

.shop-container{
    grid-template-columns:1fr;
}

.product-image img{
    height:380px;
}

}
/* Tablet */

@media(max-width:992px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:768px){

.products{
    padding:60px 20px;
}

.product-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.product-card h3{
    font-size:16px;
}

.shop-btn{
    width:100%;
}

}
/*====================================
  MEN & WOMEN COLLECTIONS
====================================*/

.collections{
    max-width:1500px;
    margin:80px auto;
    padding:0 40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.collection{
    position:relative;
    overflow:hidden;
    border-radius:8px;
}

.collection img{
    width:100%;
    height:520px;
    object-fit:cover;
}

.collection:hover img{
    transform:scale(1.05);
}

.collection-text{
    position:absolute;
    bottom:40px;
    left:40px;
    color:#fff;
}

.collection-text h2{
    font-size:42px;
    margin-bottom:15px;
    font-weight:700;
}

.collection-text a{
    color:#fff;
    border:2px solid #fff;
    padding:12px 28px;
    display:inline-block;
    transition:.3s;
}

.collection-text a:hover{
    background:#fff;
    color:#111;
}

/* Tablet */

@media(max-width:992px){

.collections{
grid-template-columns:repeat(2,1fr);
}


}

/* Mobile */

@media(max-width:768px){

.collections{
    padding:0 20px;
    margin:60px auto;
}

.collection img{
    height:420px;
}

.collection-text{
    left:25px;
    bottom:25px;
}

.collection-text h2{
    font-size:32px;
}

}
/* ===========================
   HERO BLACKSMITH STYLE
=========================== */

.hero{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.28);
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    color:#fff;
    max-width:520px;
    z-index:2;
}

.hero-content span{
    font-size:15px;
    letter-spacing:3px;
}

.hero-content h1{
    font-size:72px;
    line-height:1;
    margin:20px 0;
    font-weight:800;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    border:2px solid #fff;
    color:#fff;
    transition:.3s;
}

.hero-btn:hover{
    background:#fff;
    color:#111;
}

@media(max-width:768px){

.hero{
    height:80vh;
}

.hero-content{
    left:30px;
    right:30px;
}

.hero-content h1{
    font-size:42px;
}

.hero-content p{
    font-size:17px;
}

}
.section-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
    margin-bottom:50px;
}

.section-header h2{
    margin:0;
    font-size:42px;
    font-weight:500;
}

.view-all{
    margin-left:auto;
    border:1px solid #111;
    padding:14px 35px;
    font-size:13px;
    letter-spacing:3px;
    font-weight:500;
    transition:.3s;
}

.view-all:hover{
    background:#111;
    color:#fff;
}
/*==========================
FOOTER
==========================*/

.footer{
    background:#fff;
    padding:70px 7%;
    border-top:1px solid #eee;
}

.footer-top{
    text-align:center;
    margin-bottom:60px;
}

.footer-logo{
    width:120px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:100px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-links a{
    font-size:18px;
    transition:.3s;
}

.footer-links a:hover{
    color:#888;
}

.footer-newsletter{
    width:420px;
}

.footer-newsletter h3{
    letter-spacing:5px;
    margin-bottom:25px;
    font-weight:500;
}

.footer-newsletter p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.footer-newsletter form{
    display:flex;
    border-bottom:2px solid #111;
}

.footer-newsletter input{
    flex:1;
    border:none;
    padding:15px 0;
    font-size:17px;
    outline:none;
}

.footer-newsletter button{
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

.socials{
    margin-top:35px;
    display:flex;
    gap:25px;
}

.socials i{
    font-size:32px;
}

.footer-bottom{
    text-align:center;
    margin-top:70px;
}

.footer-bottom p{
    margin:10px 0;
    font-size:18px;
}

@media(max-width:768px){

.footer-content{
    flex-direction:column;
    gap:50px;
}

.footer-newsletter{
    width:100%;
}

}
/*=========================
  NEWSLETTER
=========================*/

.newsletter{
    background:#fafafa;
    padding:100px 20px;
    text-align:center;
}

.newsletter-container{
    max-width:900px;
    margin:auto;
}

.newsletter h2{
    font-size:52px;
    font-weight:400;
    margin-bottom:35px;
}

.newsletter p{
    font-size:26px;
    color:#222;
    line-height:1.8;
    margin-bottom:50px;
}

.newsletter-form{
    display:flex;
    justify-content:center;
    align-items:center;
    max-width:650px;
    margin:auto;
}

.newsletter-form input{
    flex:1;
    height:65px;
    padding:0 22px;
    font-size:22px;
    border:1px solid #111;
    outline:none;
}

.newsletter-form button{
    height:65px;
    width:240px;
    background:#111;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:18px;
    letter-spacing:5px;
    font-weight:600;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#333;
}

/* Mobile */

@media(max-width:768px){

.newsletter{
    padding:70px 20px;
}

.newsletter h2{
    font-size:34px;
}

.newsletter p{
    font-size:18px;
}

.newsletter-form{
    flex-direction:column;
}

.newsletter-form input,
.newsletter-form button{
    width:100%;
}

.newsletter-form button{
    margin-top:15px;
}

}
.mega-parent{
    position:relative;
}

.desktop-header{
    position:relative;
}

.shop-menu{

    position:relative;

    display:flex;
    align-items:center;

    height:82px;

}


.shop-menu>a{

display:flex;

align-items:center;

justify-content:center;

gap:8px;

height:82px;

font-size:14px;

font-weight:600;

letter-spacing:2px;

color:#111;

}

.mega-menu{

position:absolute;

top:82px;

left:-160px;

width:1250px;

background:#fff;

display:none;

border-top:1px solid #eee;

box-shadow:0 18px 45px rgba(0,0,0,.12);

z-index:99999;

}

.mega-menu{

position:absolute;

top:82px;

left:-160px;

width:1250px;

background:#fff;

display:none;

border-top:1px solid #eee;

box-shadow:0 18px 45px rgba(0,0,0,.12);

z-index:99999;

}

.shop-menu:hover .mega-menu,
.mega-menu:hover{
    display:block;
}

.mega-container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:35px;

padding:35px;

}

.mega-column img{

width:100%;

height:170px;

object-fit:cover;

margin-bottom:15px;

}

.mega-column h4{

font-size:13px;

letter-spacing:3px;

margin-bottom:15px;

}

.mega-column a{

display:block;

text-decoration:none;

color:#222;

padding:7px 0;

transition:.3s;

}

.mega-column a:hover{

padding-left:8px;

}
/* ======================================================
   VIVI AURA - PREMIUM BLACKSMITH HEADER
====================================================== */

.desktop-header{
    display:block;
    position:sticky;
    top:34px;
    background:#fff;
    border-bottom:1px solid #ececec;
    z-index:9999;
}

.desktop-container{
    max-width:1450px;
    margin:auto;
    height:82px;

    display:grid;
    grid-template-columns:420px 1fr 420px;

    align-items:center;
}

.desktop-left{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:38px;
    height:82px;
}

.desktop-right{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:35px;
    height:82px;
}

.desktop-left>a,
.desktop-right>a{

    display:flex;
    align-items:center;
    justify-content:center;

    height:82px;

    font-size:14px;
    font-weight:600;
    letter-spacing:2px;

    color:#111;

    transition:.3s;

}

.desktop-left a:hover,
.desktop-right a:hover{
    color:#777;
}

.desktop-logo{
    display:flex;
    justify-content:center;
    align-items:center;
}

.desktop-logo a{
    font-size:56px;
    font-weight:800;
    letter-spacing:6px;
    color:#111;
}


.shop-menu{
    position:relative;
    top:1px;
}


.shop-menu>a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* ---------- Mega Menu ---------- */
.mega-menu{

position:absolute;

top:82px;

left:-180px;

width:1280px;

background:#fff;

border-top:1px solid #eee;

box-shadow:0 20px 40px rgba(0,0,0,.12);

padding:0;

z-index:99999;

opacity:0;

visibility:hidden;

transform:translateY(15px);

transition:.35s;

}

.mega-menu{
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
}

.mega-menu.show-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


.mega-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:35px;
    padding:40px;
}

.mega-column img{
    width:100%;
    height:190px;
    object-fit:cover;
    margin-bottom:15px;
}

.mega-column h4{
    font-size:13px;
    letter-spacing:3px;
    margin-bottom:15px;
}

.mega-column a{
    display:block;
    padding:8px 0;
    font-size:14px;
    color:#333;
}

.mega-column a:hover{
    padding-left:8px;
}

/* ---------- Icons ---------- */

.desktop-right span,
.mobile-icons span{
    background:#111;
    color:#fff;
    font-size:10px;
    padding:2px 6px;
    border-radius:50%;
    margin-left:4px;
}

/* ---------- Mobile ---------- */

@media(max-width:991px){

.desktop-header{
    display:none;
}

.mobile-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    background:#fff;
    position:sticky;
    top:34px;
    z-index:9999;
    border-bottom:1px solid #eee;
}

.mobile-icons{
    display:flex;
    gap:18px;
    align-items:center;
}

.logo{
    font-size:24px;
    letter-spacing:4px;
    font-weight:800;
}

}
.desktop-left{
    position:relative;
}

.shop-menu{
    position:relative;
    top:1px;
}
.desktop-left{
    display:flex;
    align-items:center;
    gap:35px;
    height:82px;
}

.desktop-left > a,
.shop-menu > a{
    height:82px;
    display:flex;
    align-items:center;
}
.mega-column img{

width:100%;

height:180px;

object-fit:cover;

transition:.4s;

}

.mega-column{

overflow:hidden;

}

.mega-column:hover img{

transform:scale(1.06);

}
.mega-column a{

display:block;

padding:8px 0;

transition:.25s;

}

.mega-column a:hover{

padding-left:10px;

color:#000;

}
/* =====================================================
   BLACKSMITH PREMIUM HEADER
===================================================== */

.desktop-header{

    position:sticky;
    top:34px;
    background:#fff;
    border-bottom:1px solid #ececec;
    z-index:9999;

}

.desktop-container{

    max-width:1450px;
    margin:auto;

    height:82px;

    display:grid;
    grid-template-columns:420px auto 420px;

    align-items:center;

}

.desktop-left,
.desktop-right{

    display:flex;
    align-items:center;
    gap:32px;

}

.desktop-right{

    justify-content:flex-end;

}

.desktop-left a,
.desktop-right a{

    text-decoration:none;

    color:#111;

    font-size:13px;

    letter-spacing:2px;

    font-weight:600;

    transition:.3s;

}

.desktop-left a:hover,
.desktop-right a:hover{

    color:#777;

}

.desktop-logo{

    display:flex;

    justify-content:center;

}

.desktop-logo a{

    font-size:34px;

    font-weight:800;

    letter-spacing:6px;

    color:#111;

}

/* SHOP */

.shop-menu{

    position:relative;

    height:82px;

    display:flex;

    align-items:center;

}

.shop-menu>a{

    display:flex;

    align-items:center;

    gap:8px;

    height:82px;

}

/* MEGA MENU */

.mega-menu{

    position:absolute;

    top:82px;

    left:-150px;

    width:1200px;

    background:#fff;

    border-top:1px solid #eee;

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.35s;

    z-index:99999;

}

.shop-menu:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.mega-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

    padding:40px;

}

.mega-column h4{

    margin-bottom:20px;

    font-size:13px;

    letter-spacing:3px;

}

.mega-column a{

    display:block;

    padding:8px 0;

    color:#333;

}

.mega-column a:hover{

    padding-left:8px;

}

/* MOBILE */

@media(max-width:991px){

.desktop-header{

display:none;

}

.mobile-header{

display:flex;

}

}
/*======================================
  PREMIUM SHOP PAGE
=======================================*/

.premium-shop{

    max-width:1450px;

    margin:60px auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:0 30px;

}

.premium-card{

    background:#fff;

    transition:.35s;

}

.premium-image{

    position:relative;

    overflow:hidden;

}

.premium-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:.45s;

}

.premium-card:hover img{

    transform:scale(1.05);

}

.premium-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:-65px;

    background:rgba(255,255,255,.95);

    padding:15px;

    text-align:center;

    transition:.35s;

}

.premium-card:hover .premium-overlay{

    bottom:0;

}

.premium-overlay a{

    display:inline-block;

    padding:12px 30px;

    background:#111;

    color:#fff;

    text-decoration:none;

    letter-spacing:2px;

}

.premium-info{

    text-align:center;

    padding:18px;

}

.premium-info h3{

    font-size:18px;

    margin-bottom:10px;

}

.premium-info .price{

    font-size:22px;

    font-weight:700;

}

@media(max-width:992px){

.premium-shop{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.premium-shop{

grid-template-columns:1fr;

}

.premium-image img{

height:380px;

}

}