/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,body{
  width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#faf9f6;
  color:#222;
}

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

/* CONTAINER */

.container{
  max-width:1200px;
  margin:auto;
  padding:0 16px;
}

/* ================= HEADER ================= */

.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #eee;
}

.header-clean{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  height:72px;
}

/* LOGO */

.logo-img{
  height:52px;
  object-fit:contain;
}

/* NAV */

.nav-center{
  display:flex;
  justify-content:center;
  gap:22px;
}

.nav-center a{
  font-size:14px;
  cursor:pointer;
  color:#333;
  font-weight:500;
  transition:0.3s;
}

.nav-center a:hover{
  color:#c3996b;
}

/* RIGHT ICONS */

.header-right{
  display:flex;
  gap:18px;
  align-items:center;
}

.header-right i{
  position:relative;
  cursor:pointer;
  font-size:18px;
}

/* BADGE */

.header-right span{
  position:absolute;
  top:-7px;
  right:-8px;
  background:#c3996b;
  color:white;
  font-size:10px;
  padding:2px 6px;
  border-radius:50%;
}

/* ================= DROPDOWN ================= */

.dropdown{
  position:relative;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:35px;
  left:0;
  background:#fff;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
  padding:10px;
  min-width:190px;
  z-index:999;
}

.dropdown-menu.show{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:10px;
  font-size:13px;
  border-radius:8px;
}

.dropdown-menu a:hover{
  background:#f5f5f5;
}

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

.hero{
  height:62vh;

  background:
  linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
  url('https://images.unsplash.com/photo-1617038220319-276d3cfab638')
  center/cover;

  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-content{
  color:white;
  text-align:center;
  padding:20px;
}

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:3rem;
  margin-bottom:10px;
}

.hero p{
  margin-bottom:20px;
  opacity:0.95;
}

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

.btn-primary{
  background:#c3996b;
  color:white;
  border:none;
  padding:12px 24px;
  border-radius:40px;
  cursor:pointer;
  transition:0.3s;
  font-weight:600;
}

.btn-primary:hover{
  background:#a88252;
}

.btn-secondary{
  border:2px solid #c3996b;
  color:#c3996b;
  padding:12px 24px;
  border-radius:40px;
  background:transparent;
  cursor:pointer;
  font-weight:600;
}

/* ================= CATEGORY ================= */

.categories{
  display:flex;
  overflow-x:auto;
  gap:10px;
  padding:14px;
}

.categories::-webkit-scrollbar{
  display:none;
}

.categories button{
  border:none;
  background:white;
  padding:9px 16px;
  border-radius:24px;
  font-size:13px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  cursor:pointer;
  transition:0.3s;
  white-space:nowrap;
}

.categories button:hover{
  background:#c3996b;
  color:white;
}

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

.products-section{
  padding:30px 0 60px;
}

.section-title{
  margin-bottom:20px;
  font-family:'Playfair Display',serif;
  font-size:30px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

/* CARD */

.product-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  position:relative;
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-5px);
}

/* IMAGE */

.product-card img{
  width:100%;
  height:240px;
  object-fit:cover;
}

/* BADGE */

.badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#c3996b;
  color:white;
  font-size:10px;
  padding:5px 10px;
  border-radius:30px;
  font-weight:600;
}

/* WISHLIST */

.wishlist-icon{
  position:absolute;
  top:10px;
  right:10px;
  background:white;
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#bbb;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:0.3s;
}

.wishlist-icon.active{
  color:red;
  transform:scale(1.1);
}

/* INFO */

.product-info{
  padding:14px;
}

.product-info h3{
  font-size:14px;
  margin-bottom:8px;
  line-height:1.4;
}

.price{
  font-size:18px;
  font-weight:700;
}

.old-price{
  text-decoration:line-through;
  color:#aaa;
  font-size:12px;
  margin-left:6px;
}

/* ================= PREMIUM PRODUCT PAGE ================= */

.product-page{
  padding:20px 16px 120px;
}

.product-container{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* MAIN IMAGE */

.main-product-image{
  width:100%;
  border-radius:22px;
  object-fit:cover;
  background:#fff;
}

/* THUMBNAILS */

.thumbnails{
  display:flex;
  gap:10px;
  margin-top:12px;
  overflow-x:auto;
}

.thumbnails img{
  width:70px;
  height:70px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  border:2px solid transparent;
  transition:0.3s;
}

.thumbnails img:hover{
  border:2px solid #c3996b;
}

/* DETAILS */

.product-details{
  background:white;
  padding:22px;
  border-radius:22px;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.product-details h1{
  font-size:30px;
  margin-bottom:14px;
  line-height:1.3;
}

.product-details p{
  color:#666;
  line-height:1.7;
  margin-top:14px;
}

/* PRICE */

.product-price{
  margin-top:10px;
  margin-bottom:20px;
}

.product-price .price{
  font-size:34px;
}

.product-price .old-price{
  font-size:18px;
}

/* BUTTONS */

.product-buttons{
  display:flex;
  gap:14px;
  margin-top:24px;
}

.product-buttons button{
  flex:1;
  padding:16px;
  border-radius:40px;
  font-size:15px;
  font-weight:600;
}

/* ================= LOGIN ================= */

.login-body{
  background:#f8f5f1;
}

.login-section{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px;
}

.login-card{
  width:100%;
  max-width:420px;
  background:white;
  padding:32px;
  border-radius:26px;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
}

.login-card h1{
  font-size:34px;
  margin-bottom:10px;
  font-family:'Playfair Display',serif;
}

.login-card p{
  color:#777;
  margin-bottom:30px;
}

.form-box{
  margin-bottom:28px;
}

.form-box h2{
  margin-bottom:14px;
}

.form-box input{
  width:100%;
  padding:15px;
  margin-bottom:12px;
  border-radius:16px;
  border:1px solid #ddd;
  font-size:15px;
  outline:none;
}

.form-box input:focus{
  border:1px solid #c3996b;
}

.full-btn{
  width:100%;
}

/* ================= WHATSAPP ================= */

.whatsapp-float{
  position:fixed;
  bottom:95px;
  right:16px;
  background:#25D366;
  width:54px;
  height:54px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-size:22px;
  z-index:999;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* ================= LOADER ================= */

#loader{
  position:fixed;
  width:100%;
  height:100%;
  background:#faf9f6;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.loader-logo{
  width:120px;
}

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

@media(max-width:768px){

  .hero{
    height:55vh;
  }

  .hero h1{
    font-size:2.2rem;
  }

  .nav-center{
    display:none;
  }

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

  .product-card img{
    height:200px;
  }

  .product-details h1{
    font-size:22px;
  }

  .product-price .price{
    font-size:28px;
  }

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

}
.user-email{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  font-weight:600;
  color:#c3996b;
  cursor:pointer;
}

.user-email i{
  font-size:16px;
}
