:root{
  --primary:#CFC3C0;
  --bg:#F5F4F3;
  --text:#1C1C1C;
  --muted:#7A7A7A;
  --line:#ece7e5;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --danger:#c25b67;
  --success:#8b756f;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  margin:0;
  padding:0;
}

body{
  font-family:Montserrat, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

button,
input,
textarea,
select{
  font-family:inherit;
}

.page{
  width:100%;
  max-width:100%;
  display:block;
  padding:0;
  margin:0;
}

.site-shell{
  width:100%;
  max-width:100%;
  margin:0;
  background:var(--white);
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
}

/* =========================
   HEADER
========================= */

.topbar{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:16px 28px;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.96);
  position:sticky;
  top:0;
  z-index:50;
}

.topbar-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.topbar-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.topbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  position:relative;
}

.brand{
  font-family:"Playfair Display", serif;
  font-size:22px;
  letter-spacing:2px;
}

.brand-with-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.brand-logo{
  width:150px;
  height:50px;
  object-fit:contain;
}

.brand-text{
  display:none;
}

.iconbtn{
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  border-radius:12px;
  transition:.2s ease;
  flex-shrink:0;
}

.iconbtn:hover{
  background:rgba(207,195,192,.18);
}

.header-icon-img{
  width:22px;
  height:22px;
  object-fit:contain;
}

.badge{
  position:relative;
}

.badge .dot{
  position:absolute;
  top:-5px;
  right:-4px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:#000;
  color:#fff;
  font-size:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* =========================
   SEARCH
========================= */

.search-box{
  position:relative;
  display:flex;
  align-items:center;
}

.search-toggle{
  position:relative;
  z-index:3;
}

.search-dropdown{
  position:absolute;
  top:50%;
  right:0;
  transform:translateY(-50%) scale(.96);
  width:0;
  height:52px;
  opacity:0;
  visibility:hidden;
  overflow:hidden;
  display:flex;
  align-items:center;
  gap:8px;
  padding:0;
  border:1px solid transparent;
  border-radius:16px;
  background:rgba(255,255,255,.98);
  box-shadow:0 18px 45px rgba(0,0,0,.12);
  transition:
    width .25s ease,
    opacity .2s ease,
    visibility .2s ease,
    transform .25s ease,
    padding .25s ease,
    border-color .25s ease;
}

.search-box.open .search-dropdown{
  width:360px;
  opacity:1;
  visibility:visible;
  padding:8px;
  border-color:rgba(0,0,0,.08);
  transform:translateY(-50%) scale(1);
}

.search-dropdown input{
  flex:1;
  min-width:0;
  height:36px;
  border:1px solid rgba(0,0,0,.10);
  outline:none;
  border-radius:10px;
  padding:0 14px;
  background:#fafafa;
  font-size:14px;
}

.search-dropdown input:focus{
  background:#fff;
  border-color:#cdbebb;
}

.search-submit{
  height:36px;
  border:none;
  border-radius:10px;
  background:var(--primary);
  color:var(--text);
  padding:0 14px;
  cursor:pointer;
  font-weight:600;
  white-space:nowrap;
}

/* =========================
   MAIN
========================= */

.content{
  width:100%;
  padding:30px 28px 40px;
}

.breadcrumb{
  font-size:13px;
  color:var(--muted);
  margin-bottom:16px;
}

.home-section{
  margin-top:38px;
}

.section-title{
  text-align:center;
  margin-bottom:20px;
}

.h1,
.h2{
  font-family:"Playfair Display", serif;
  margin:0;
}

.h1{
  font-size:46px;
  line-height:1.1;
}

.h2{
  font-size:36px;
  line-height:1.2;
}

.tag{
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  font-weight:600;
  transition:.2s ease;
}

.btn.primary{
  background:var(--primary);
  color:var(--text);
}

.btn.primary:hover,
.all-products-btn:hover{
  opacity:.92;
}

/* =========================
   REVEAL + FLOAT
========================= */

.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}

.fade-up.in-view{
  opacity:1;
  transform:translateY(0);
}

.floating-image{
  animation:floatY 4s ease-in-out infinite;
}

@keyframes floatY{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-8px); }
}

/* =========================
   HERO SLIDER
========================= */

.hero-slider-section{
  margin-top:10px;
}

.hero-slider{
  width:100%;
  overflow:hidden;
  border-radius:24px;
  background:linear-gradient(135deg, #f5f1ef 0%, #ebe4e1 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:0 0 18px;
}

.hero-track{
  position:relative;
}

.hero-slide{
  display:none;
  grid-template-columns:1fr 500px;
  align-items:center;
  gap:32px;
  padding:34px 34px 18px;
  min-height:280px;
}

.hero-slide.active{
  display:grid;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-btn{
  width:max-content;
  margin-top:16px;
}

.hero-image-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-image{
  width:500px;
  height:200px;
  object-fit:cover;
  border-radius:18px;
  background:#ddd;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.hero-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:6px;
  padding:0 20px;
}

.hero-dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.18);
  cursor:pointer;
  transition:.2s ease;
  padding:0;
}

.hero-dot.active{
  background:#8a7b76;
  transform:scale(1.15);
}

/* =========================
   GENERIC SLIDER ARROWS
========================= */

.slider-arrow{
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:#efeae8;
  color:#4f4541;
  font-size:26px;
  cursor:pointer;
  flex-shrink:0;
  transition:.2s ease;
}

.slider-arrow:hover{
  background:#ddd3cf;
}

.slider-arrow.dark{
  background:#d8cbc7;
}

/* =========================
   BRANDS
========================= */

.brands-slider-wrap{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  align-items:center;
  gap:14px;
  width:100%;
}

.brands-slider{
  overflow:hidden;
  width:100%;
}

.brands-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:8px 2px;
}

.brands-track::-webkit-scrollbar{
  display:none;
}

.brand-circle{
  width:116px;
  height:116px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  box-shadow:var(--shadow);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.brand-circle:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.brand-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* =========================
   PRODUCT/ACTIONS FIX
========================= */

.product-card,
.arrival-card{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
}

.product-image-box,
.arrival-image-box{
  position:relative;
  overflow:hidden;
  width:100%;
}

.product-main-image{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product-actions{
  position:absolute;
  top:12px;
  right:12px;
  z-index:5;
  display:flex;
  flex-direction:column;
  gap:8px;
  pointer-events:auto;
}

.product-action-btn{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.94);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(0,0,0,.10);
  transition:.2s ease;
  color:#4d4542;
}

.product-action-btn:hover{
  transform:scale(1.08);
  background:#fff;
}

.product-action-btn i{
  font-size:16px;
  line-height:1;
}

.wishlist-btn.active{
  background:#fff1f3;
  color:var(--danger);
}

.wishlist-btn.active i{
  font-weight:900;
}

.cart-btn.active{
  background:#f3ece9;
  color:var(--success);
}

/* =========================
   FEATURED
========================= */

.products-slider-wrap{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  align-items:center;
  gap:14px;
  width:100%;
}

.products-slider{
  overflow:hidden;
  width:100%;
}

.products-track{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:8px 2px;
}

.products-track::-webkit-scrollbar{
  display:none;
}

.product-card{
  flex:0 0 auto;
  width:350px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:transform .25s ease, box-shadow .25s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,0,0,.08);
}

.product-image-box{
  height:350px;
  background:#f3efed;
}

.product-info{
  width:100%;
  display:block;
  padding:18px 18px 20px;
  text-align:left;
}

.product-title{
  font-family:"Playfair Display", serif;
  font-size:24px;
  margin:0 0 10px;
}

.product-price{
  color:#4f4a48;
  font-size:15px;
  font-weight:500;
}

.product-price.sale{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.old-price{
  color:#9b8f8a;
  text-decoration:line-through;
}

.new-price{
  color:#1c1c1c;
  font-weight:700;
}

.center-btn-wrap{
  display:flex;
  justify-content:center;
  margin-top:22px;
}

.all-products-btn{
  background:var(--primary);
  color:var(--text);
  min-width:180px;
}

/* =========================
   NEW ARRIVALS
========================= */

.new-arrivals-section{
  padding:28px;
  background:linear-gradient(180deg, #f8f5f4 0%, #f1ebea 100%);
  border-radius:28px;
  border:1px solid var(--line);
}

.new-arrivals-slider-wrap{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  align-items:center;
  gap:14px;
  width:100%;
}

.new-arrivals-slider{
  overflow:hidden;
  width:100%;
}

.new-arrivals-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:8px 2px;
}

.new-arrivals-track::-webkit-scrollbar{
  display:none;
}

.arrival-card{
  flex:0 0 calc((100% - 36px) / 3);
  min-width:calc((100% - 36px) / 3);
  background:linear-gradient(180deg, #ffffff 0%, #faf6f5 100%);
  border:1px solid #e6dedb;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
  transition:transform .25s ease, box-shadow .25s ease;
}

.arrival-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 34px rgba(0,0,0,.08);
}

.arrival-image-box{
  height:350px;
  background:#f7f1ef;
}

.arrival-info{
  width:100%;
  display:block;
  padding:18px 18px 22px;
  text-align:left;
}

.arrival-title{
  font-family:"Playfair Display", serif;
  font-size:21px;
  margin:0 0 8px;
}

.arrival-price{
  font-size:15px;
  color:#57504d;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:20px;
  padding:28px;
  border-top:1px solid var(--line);
  background:#f8f4f2;
}

.footer-left{
  display:flex;
  flex-direction:column;
  gap:10px;
  justify-content:center;
}

.footer-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex-wrap:wrap;
}

.social-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#e6dcda;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

/* =========================
   DRAWER
========================= */

.drawer{
  position:fixed;
  inset:0;
  display:none;
  z-index:999;
}

.drawer.open{
  display:block;
}

.backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.42);
}

.panel{
  position:absolute;
  left:30px;
  top:30px;
  width:390px;
  max-height:calc(100vh - 60px);
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.panel-head{
  display:grid;
  grid-template-columns:40px 1fr 40px;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid var(--line);
}

.drawer-brand{
  text-align:center;
  font-size:20px;
}

.drawer-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.drawer-tab{
  height:58px;
  border:none;
  background:#f3efed;
  font-family:"Playfair Display", serif;
  font-size:18px;
  cursor:pointer;
}

.drawer-tab.active{
  background:#fff;
  border-bottom:2px solid #000;
}

.panel-body{
  padding:10px 18px 16px;
  overflow:hidden;
}

.menuitem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:52px;
  border-bottom:1px solid var(--line);
  font-size:18px;
}

.drawer-account{
  padding:14px 0 10px;
}

.drawer-account-title{
  font-weight:700;
  margin-bottom:6px;
}

.drawer-account-links{
  color:var(--muted);
  font-size:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.lang{
  text-align:center;
  font-size:15px;
  margin-top:12px;
}

.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}

.tab-content[data-tab-content="brands"]{
  max-height:320px;
  overflow-y:auto;
}

/* =========================
   ABOUT
========================= */

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.about-process{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1200px){
  .hero-slide{
    grid-template-columns:1fr 420px;
  }

  .hero-image{
    width:420px;
    height:190px;
  }

  .arrival-card{
    flex:0 0 calc((100% - 36px) / 3);
    min-width:calc((100% - 36px) / 3);
  }
}

@media (max-width:900px){
  .page{
    padding:0;
  }

  .topbar{
    grid-template-columns:auto 1fr auto;
    padding:14px 16px;
    gap:12px;
  }

  .brand-logo{
    width:130px;
    height:44px;
  }

  .search-box.open .search-dropdown{
    width:260px;
  }

  .content{
    padding:22px 16px 30px;
  }

  .h1{
    font-size:34px;
  }

  .h2{
    font-size:30px;
  }

  .hero-slide{
    grid-template-columns:1fr;
    gap:20px;
    padding:22px 22px 14px;
  }

  .hero-image{
    width:100%;
    max-width:500px;
    height:200px;
    margin:0 auto;
  }

  .brands-slider-wrap,
  .products-slider-wrap,
  .new-arrivals-slider-wrap{
    grid-template-columns:40px 1fr 40px;
    gap:10px;
  }

  .product-card{
    width:300px;
  }

  .product-image-box{
    height:300px;
  }

  .arrival-card{
    flex:0 0 calc((100% - 18px) / 2);
    min-width:calc((100% - 18px) / 2);
  }

  .arrival-image-box{
    height:300px;
  }

  .site-footer{
    grid-template-columns:1fr;
  }

  .footer-right{
    justify-content:flex-start;
  }

  .about-grid{
    grid-template-columns:1fr;
  }

  .about-process{
    grid-template-columns:1fr;
  }
}

@media (max-width:600px){
  .page{
    padding:0;
  }

  .site-shell{
    border-radius:0;
  }

  .topbar{
    padding:12px;
  }

  .brand-logo{
    width:120px;
    height:40px;
  }

  .iconbtn{
    width:34px;
    height:34px;
    font-size:18px;
  }

  .header-icon-img{
    width:19px;
    height:19px;
  }

  .search-box.open .search-dropdown{
    width:220px;
    right:-10px;
  }

  .content{
    padding:18px 12px 28px;
  }

  .h1{
    font-size:28px;
  }

  .h2{
    font-size:26px;
  }

  .hero-slide{
    padding:16px 16px 10px;
  }

  .hero-btn{
    width:100%;
  }

  .hero-image{
    width:100%;
    height:180px;
  }

  .hero-dots{
    justify-content:center;
  }

  .brands-slider-wrap,
  .products-slider-wrap,
  .new-arrivals-slider-wrap{
    grid-template-columns:1fr;
  }

  .slider-arrow{
    display:none;
  }

  .brand-circle{
    width:92px;
    height:92px;
  }

  .product-card{
    width:240px;
  }

  .product-image-box{
    height:240px;
  }

  .product-actions{
    top:10px;
    right:10px;
  }

  .product-action-btn{
    width:34px;
    height:34px;
  }

  .product-action-btn i{
    font-size:14px;
  }

  .arrival-card{
    flex:0 0 86%;
    min-width:86%;
  }

  .arrival-image-box{
    height:240px;
  }

  .panel{
    width:92%;
    left:4%;
    top:16px;
    max-height:calc(100vh - 32px);
  }
}

/* =========================
   FORCE FIXES
========================= */

.product-card,
.arrival-card{
  display:flex !important;
  flex-direction:column !important;
  align-items:stretch !important;
  justify-content:flex-start !important;
}

.product-info,
.arrival-info{
  display:block !important;
  width:100% !important;
  text-align:left !important;
}

.product-title,
.arrival-title,
.product-price,
.arrival-price{
  display:block !important;
  width:100% !important;
}

.product-main-image{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.product-actions{
  position:absolute !important;
  top:12px !important;
  right:12px !important;
  z-index:30 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:8px !important;
}
/* CONTACT FORM */

.lux-contact{

max-width:620px;
margin:60px auto;
text-align:center;

}

.lux-title{

font-family:"Playfair Display";
font-size:34px;
margin-bottom:30px;

}

/* fields */

.lux-field{

position:relative;
margin-bottom:28px;

}

.lux-field input,
.lux-field textarea{

width:100%;
padding:14px 12px;
border:1px solid var(--line);
border-radius:6px;
font-size:15px;
background:#fff;
outline:none;
transition:.3s;

}

.lux-field textarea{

height:130px;
resize:none;

}

/* label */

.lux-field label{

position:absolute;
left:12px;
top:14px;
font-size:14px;
color:#888;
background:#fff;
padding:0 4px;
transition:.25s;

}

/* floating animation */

.lux-field input:focus + label,
.lux-field textarea:focus + label,
.lux-field input:valid + label,
.lux-field textarea:valid + label{

top:-8px;
font-size:11px;
color:#b79a7c;

}

.lux-field input:focus,
.lux-field textarea:focus{

border-color:#b79a7c;
box-shadow:0 0 0 3px rgba(183,154,124,.1);

}

/* button */

.lux-btn{

margin-top:10px;
padding:14px 36px;
border:none;
border-radius:6px;
background:linear-gradient(135deg,#c6a887,#a88b6d);
color:#fff;
font-size:15px;
cursor:pointer;
transition:.3s;
position:relative;
overflow:hidden;

}

.lux-btn:hover{

transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,.15);

}

.lux-note{

margin-top:16px;
font-size:13px;
color:var(--muted);

}
.country-code-select{

height:50px;
border:none;
border-right:1px solid var(--line);
padding:0 10px;
background:#fff;
font-size:14px;
outline:none;
cursor:pointer;

}
/* ===== intl-tel-input custom checkout style ===== */

.iti{
  width:100%;
  display:block;
}

.iti__country-container{
  left:0;
}

.iti input#phone,
.iti .checkout-input{
  width:100% !important;
  height:48px !important;
  border:1px solid var(--line) !important;
  border-radius:4px !important;
  background:#fff !important;
  padding-left:95px !important;
  padding-right:14px !important;
  outline:none !important;
  font-size:14px !important;
  color:#312c2a !important;
  transition:.2s ease !important;
  box-shadow:none !important;
}

.iti input#phone:focus,
.iti .checkout-input:focus{
  border-color:#cdbebb !important;
  box-shadow:0 0 0 2px rgba(207,195,192,.14) !important;
}

.iti--separate-dial-code .iti__selected-flag{
  background:#fff !important;
  border-right:1px solid var(--line);
  border-radius:4px 0 0 4px;
  padding:0 12px 0 14px !important;
  height:46px;
  margin:1px 0 1px 1px;
}

.iti__selected-flag:hover{
  background:#faf7f6 !important;
}

.iti__flag-container{
  padding:0 !important;
}

.iti__selected-dial-code{
  color:#4f4744;
  font-size:14px;
  margin-left:8px;
}

.iti__arrow{
  border-top-color:#877b76 !important;
  margin-left:8px;
}

.iti__country-list{
  border:1px solid var(--line);
  border-radius:10px;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  margin-top:8px;
  overflow:hidden;
  font-family:Montserrat, Arial, sans-serif;
}

.iti__country{
  padding:10px 12px;
  transition:.2s ease;
}

.iti__country:hover{
  background:#faf7f6;
}

.iti__highlight{
  background:#f5efec !important;
}

.iti__search-input{
  height:40px;
  border:1px solid var(--line);
  border-radius:8px;
  padding:0 12px;
  outline:none;
  font-size:14px;
}

.iti__search-input:focus{
  border-color:#cdbebb;
  box-shadow:0 0 0 2px rgba(207,195,192,.14);
}

@media (max-width:600px){
  .iti input#phone,
  .iti .checkout-input{
    height:46px !important;
    padding-left:90px !important;
    font-size:14px !important;
  }

  .iti--separate-dial-code .iti__selected-flag{
    height:44px;
  }
}

.phone-field-wrap{
  margin-top:14px;
}

.phone-field-wrap .checkout-label{
  display:block;
  margin-bottom:8px;
}
.iti input#phone{
  padding-left:115px !important;
}

@media (max-width:600px){
  .iti input#phone{
    padding-left:105px !important;
  }
}