/* ===========================
   RESET
=========================== */

*{
    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;
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
    height:auto;
}

/* ===========================
   NAVBAR
=========================== */

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 7%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    border-bottom:1px solid #eee;
}

.brand-logo{
    height:55px;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.nav-links a:hover,
.nav-links .active{
    color:#b39257;
}

.nav-icons{
    display:flex;
    align-items:center;
    gap:18px;
    font-size:20px;
    cursor:pointer;
}

/* ===========================
   HERO
=========================== */

.hero{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    padding:80px 7%;
    background:#fdfbf7;
}

.hero-text{
    flex:1;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:560px;
}

.hero h3{
    color:#b39257;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:10px;
}

.hero h1{
    font-size:58px;
    font-weight:300;
    letter-spacing:3px;
    margin-bottom:20px;
}

.title-divider{
    width:60px;
    border:1px solid #b39257;
    margin-bottom:20px;
}

.hero h2{
    font-size:18px;
    margin-bottom:20px;
}

.hero p{
    max-width:500px;
    color:#666;
    margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#b39257;
    color:#fff;
    padding:14px 30px;
    border:none;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#96763e;
}

.btn-secondary{
    padding:14px 30px;
    border:1px solid #ccc;
    color:#111;
    text-decoration:none;
    transition:.3s;
}

.btn-secondary:hover{
    background:#111;
    color:#fff;
}

/* BADGES */

.hero-badges{
    display:flex;
    gap:25px;
    margin-top:35px;
    flex-wrap:wrap;
    font-size:12px;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width:992px){

.hero{
    flex-direction:column-reverse;
    text-align:center;
    padding:50px 6%;
}

.hero-text p{
    max-width:100%;
}

.hero-buttons{
    justify-content:center;
}

.hero-badges{
    justify-content:center;
}

.hero h1{
    font-size:42px;
}

}

@media (max-width:768px){

.navbar{
    flex-direction:column;
    gap:15px;
}

.nav-links{
    gap:15px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero{
    padding:40px 5%;
}

.hero h1{
    font-size:34px;
}

.hero h2{
    font-size:16px;
}

.hero-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    width:100%;
    text-align:center;
}

.hero-badges{
    flex-direction:column;
    gap:10px;
}

}
/* ===========================
   FEATURES
=========================== */

.features-ribbon{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:60px 7%;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    background:#fff;
}

.feature-item{
    text-align:center;
}

.feature-item .icon{
    font-size:32px;
    margin-bottom:12px;
    display:block;
}

.feature-item h4{
    font-size:14px;
    margin-bottom:10px;
    letter-spacing:1px;
}

.feature-item p{
    color:#666;
    font-size:13px;
}

/* ===========================
   COLLECTION
=========================== */

.collection{
    padding:80px 7%;
    text-align:center;
}

.sub-heading{
    color:#b39257;
    letter-spacing:2px;
    font-size:13px;
    font-weight:600;
}

.collection h2{
    font-size:38px;
    margin:15px 0;
    font-weight:400;
}

.section-desc{
    color:#666;
    margin-bottom:50px;
}

/* ===========================
   PRODUCTS
=========================== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border:1px solid #eee;
    padding:25px;
    position:relative;
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.product-card img{
    width:100%;
    max-width:220px;
    margin:auto;
}

.product-card h3{
    margin-top:20px;
    font-size:15px;
    letter-spacing:1px;
}

.price{
    margin:12px 0 18px;
    font-size:17px;
    font-weight:600;
}

.btn-cart{
    width:100%;
    padding:14px;
    border:none;
    background:#111;
    color:#fff;
    cursor:pointer;
    transition:.3s;
}

.btn-cart:hover{
    background:#b39257;
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#b39257;
    color:#fff;
    padding:5px 10px;
    font-size:11px;
    border-radius:4px;
}

/* ===========================
   MODAL
=========================== */

.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:9999;
}

.modal-content{
    width:92%;
    max-width:430px;
    background:#fff;
    padding:30px;
    margin:80px auto;
    border-radius:10px;
    position:relative;
}

.close-btn{
    position:absolute;
    right:18px;
    top:12px;
    cursor:pointer;
    font-size:28px;
}

.modal-content input{
    width:100%;
    margin-top:15px;
    padding:14px;
    border:1px solid #ddd;
    outline:none;
}

.modal-content input:focus{
    border-color:#b39257;
}

/* ===========================
   FOOTER
=========================== */

.main-footer{
    margin-top:80px;
    background:#f8f8f8;
    padding:60px 7% 25px;
}

.main-footer>div:first-child{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-brand h2{
    margin-bottom:10px;
}

.footer-links h4{
    margin-bottom:15px;
}

.footer-links a{
    text-decoration:none;
    color:#555;
}

.footer-links p{
    margin-bottom:10px;
}

.main-footer>div:last-child{
    text-align:center;
    margin-top:40px;
    color:#777;
    font-size:13px;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:992px){

.features-ribbon{
    grid-template-columns:repeat(2,1fr);
}

.collection h2{
    font-size:30px;
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.features-ribbon{
    grid-template-columns:1fr;
}

.product-grid{
    grid-template-columns:1fr;
}

.collection{
    padding:50px 5%;
}

.collection h2{
    font-size:26px;
}

.main-footer>div:first-child{
    flex-direction:column;
    text-align:center;
}

.modal-content{
    margin:40px auto;
}

}/* ===========================
   HERO IMPROVEMENTS
=========================== */

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-tag{
    color:#b39257;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
}

.hero-line{
    width:70px;
    height:2px;
    background:#b39257;
    margin:20px 0;
}

.hero-image img{
    transition:.5s;
}

.hero-image img:hover{
    transform:scale(1.05);
}

/* ===========================
   PRODUCT EFFECTS
=========================== */

.product-card{
    border-radius:12px;
    overflow:hidden;
}

.product-card img{
    transition:.4s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-card h3{
    margin-top:18px;
    font-size:16px;
    font-weight:600;
}

.price{
    color:#b39257;
    font-size:22px;
    font-weight:700;
}

.badge{
    border-radius:30px;
    padding:6px 14px;
    font-weight:600;
}

/* ===========================
   CUSTOMIZE SECTION
=========================== */

.customize{

display:flex;

justify-content:space-between;

align-items:center;

gap:70px;

padding:100px 7%;

background:#f9f8f5;

}

.customize-text{

flex:1;

}

.customize-text h2{

font-size:42px;

margin:20px 0;

font-weight:500;

}

.customize-text p{

color:#666;

margin-bottom:30px;

max-width:500px;

}

.customize-image{

flex:1;

display:flex;

justify-content:center;

}

.customize-image img{

max-width:520px;

transition:.5s;

}

.customize-image img:hover{

transform:scale(1.05);

}

/* ===========================
   BUTTONS
=========================== */

.btn-primary{

border-radius:40px;

padding:16px 34px;

}

.btn-secondary{

border-radius:40px;

}

/* ===========================
   NAVBAR
=========================== */

.navbar{

backdrop-filter:blur(12px);

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.nav-links a{

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:#b39257;

transition:.3s;

}

.nav-links a:hover::after,

.nav-links .active::after{

width:100%;

}

/* ===========================
   ICONS
=========================== */

.nav-icons i{

transition:.3s;

}

.nav-icons i:hover{

color:#b39257;

transform:translateY(-3px);

}

.cart-icon{

position:relative;

cursor:pointer;

}

.cart-icon sup{

position:absolute;

top:-10px;

right:-10px;

background:#b39257;

color:#fff;

padding:2px 6px;

border-radius:50%;

font-size:11px;

}

/* ===========================
   FOOTER
=========================== */

.footer-container{

display:flex;

justify-content:space-between;

flex-wrap:wrap;

gap:40px;

}

.footer-logo{

margin-bottom:15px;

}

.footer-links a{

display:block;

margin-bottom:10px;

color:#555;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#b39257;

padding-left:6px;

}

/* ===========================
   MODAL
=========================== */

.modal-content{

animation:popup .35s ease;

}

@keyframes popup{

from{

opacity:0;

transform:translateY(-30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* ===========================
   MOBILE MENU
=========================== */

.menu-toggle{

display:none;

font-size:26px;

cursor:pointer;

}

@media(max-width:768px){

.menu-toggle{

display:block;

}

.nav-links{

display:none;

flex-direction:column;

position:absolute;

top:90px;

left:0;

width:100%;

background:#fff;

padding:20px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.nav-links.active{

display:flex;

}

.customize{

flex-direction:column-reverse;

text-align:center;

padding:60px 5%;

}

.customize-text p{

max-width:100%;

}

.customize-text h2{

font-size:32px;

}

.hero{

padding-top:40px;

}

}
