: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;
}

a[x-apple-data-detectors],
.x-apple-data-detectors,
.x-apple-data-detectors *,
[x-apple-data-detectors-type],
a[href^="tel:"],
a[href^="mailto:"],
a[href^="sms:"],
a[href^="facetime:"],
a[href^="whatsapp:"],
a[href*="wa.me"]{
  color:inherit !important;
  text-decoration:none !important;
  font:inherit !important;
  line-height:inherit !important;
  -webkit-text-fill-color:inherit !important;
}

img{
  display:block;
  max-width:100%;
}

button,
input,
textarea,
select{
  font-family:inherit;
  color:inherit;
  -webkit-text-fill-color:currentColor;
  -webkit-tap-highlight-color:transparent;
}

.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{
  position:sticky;
  top:0;
  z-index:50;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  min-height:100px;
  box-sizing:border-box;
  padding:8px 24px;
  border-bottom:1px solid var(--line);
  background:#f8f4f2;
  backdrop-filter:blur(10px);
}

.topbar-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
  min-width:0;
}

.topbar-center{
  display:flex;
  align-items:center;
  justify-content:center;
}

.topbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  position:relative;
}

.lang-toggle-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:999px;
  background:#fff;
  color:var(--text);
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  white-space:nowrap;
  transition:all .2s ease;
}

.lang-toggle-btn:hover{
  border-color:var(--accent);
  background:var(--accent);
  color:#fff;
}

@media (max-width: 991px){
  .lang-toggle-btn{
    display:none;
  }
}

.phone-input-row{
  display:flex;
  align-items:center;
  gap:10px;
}

.phone-input-row input{
  flex:1;
}

.phone-code-box{
  min-width:74px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 12px;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  background:#f7f4ec;
  color:var(--text);
  font-weight:700;
}

.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:250px;
  height:auto;
  max-height:84px;
  aspect-ratio:1029 / 311;
  object-fit:contain;
  display:block;
}

.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;
  color:var(--text);
}

.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;
}

/* desktop nav */
.desktop-nav{
  display:flex;
  align-items:center;
  gap:26px;
}

.desktop-nav-link{
  position:relative;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  transition:.2s ease;
  white-space:nowrap;
}

.desktop-nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1.5px;
  background:var(--text);
  transition:.25s ease;
}

.desktop-nav-link:hover::after,
.desktop-nav-link.active::after{
  width:100%;
}

.mobile-menu-btn{
  display:none;
}

.mobile-menu-btn{
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
}

.mobile-menu-btn span{
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:#2f241b;
}

/* =========================
   SEARCH
========================= */

.search-box{
  position:relative;
  display:flex;
  align-items:center;
}

.search-toggle{
  position:relative;
  z-index:3;
}

.search-box.open .search-toggle{
  opacity:0;
  pointer-events:none;
}

.search-dropdown{
  position:absolute;
  top:50%;
  right:0;
  transform:translateY(-50%) scale(.96);
  transform-origin:right center;
  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;
  color:var(--text);
  -webkit-text-fill-color:currentColor;
  appearance:none;
  -webkit-appearance:none;
}

.search-dropdown input::placeholder,
.drawer-search-form input::placeholder{
  color:#8b817c;
  -webkit-text-fill-color:#8b817c;
}

.search-dropdown input:focus{
  background:#fff;
  border-color:#cdbebb;
}

.search-submit{
  width:36px;
  min-width:36px;
  height:36px;
  border:none;
  border-radius:10px;
  background:var(--primary);
  color:var(--text);
  padding:0;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.search-submit svg,
.drawer-search-form button svg{
  width:18px;
  height:18px;
  display:block;
}

/* =========================
   MAIN
========================= */

.content{
  width:100%;
  padding:30px 28px 40px;
}

.home-page-content{
  padding-top:0 !important;
}

.home-page-content .hero-slider-section{
  margin-top:0;
}

.home-page-content .add-to-cart-btn{
  width:auto;
  min-width:unset;
  margin-top:8px;
  padding:9px 12px;
  font-size:12px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  line-height:1;
}

.home-page-content .product-info > form{
  width:auto;
  align-self:center;
  margin-top:4px;
}

.home-page-content .product-info,
.shop-grid .product-info{
  gap:6px;
}

.home-page-content .product-title,
.shop-grid .product-title{
  min-height:36px;
}

.home-page-content .product-price,
.shop-grid .product-price{
  min-height:30px;
}

.breadcrumb{
  font-size:13px;
  color:var(--muted);
  margin-bottom:16px;
}

.home-section{
  margin-top:38px;
}

.section-title{
  text-align:center;
  margin-bottom:28px;
}

.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:min(100%, 1200px);
  height:auto;
  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 12px;
  margin:0 auto;
}

.hero-track{
  position:relative;
  height:auto;
}

.hero-slide{
  display:none;
  grid-template-columns:58% 42%;
  align-items:stretch;
  gap:12px;
  padding:18px 18px 12px;
  min-height:auto;
  height:auto;
}

.hero-slide.active{
  display:grid;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  align-self:stretch;
  height:100%;
  width:100%;
  margin-top:0;
}

.hero-desc{
  margin:14px 0 0;
  color:#5b5451;
  font-size:15px;
  line-height:1.9;
  max-width:420px;
}

.hero-btn{
  width:max-content;
  margin-top:16px;
}

.hero-image-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  margin:0;
  padding:0;
}

.hero-image{
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:contain;
  object-position:center;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  display:block;
}

.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:24px;
  cursor:pointer;
  flex-shrink:0;
  transition:.2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  padding:0;
}

.slider-arrow:hover{
  background:#ddd3cf;
}

/* =========================
   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%;
}

/* =========================
   PRODUCTS
========================= */

.product-card{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  justify-content:flex-start;
  height:100%;
  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{
  position:relative;
  overflow:hidden;
  width:100%;
  height:350px;
  background:#f3efed;
}

.product-clickable{
  cursor:pointer;
}

.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:30;
  display:flex;
  flex-direction:column;
  gap:10px;
  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);
}

.server-wishlist-btn.active{
  background:#fff1f3;
  color:var(--danger);
}

.wishlist-btn.active i{
  font-weight:900;
}

.server-wishlist-btn.active i{
  font-weight:900;
}

.cart-btn.active{
  background:#f3ece9;
  color:var(--success);
}

.product-actions .cart-btn{
  display:none !important;
}

.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-info{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  gap:10px;
  flex:1;
  padding:18px 18px 20px;
}

.product-title{
  font-family:"Playfair Display", serif;
  font-size:30px;
  font-weight:600;
  line-height:1.35;
  min-height:48px;
  margin:0;
  text-align:center;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.product-price{
  color:#4f4a48;
  font-size:16px;
  font-weight:500;
  min-height:48px;
  text-align:center;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.product-price.sale{
  align-content:center;
}

.old-price{
  color:#9b8f8a;
  text-decoration:line-through;
}

.new-price{
  color:#1c1c1c;
  font-weight:700;
}

.add-to-cart-btn{
  width:100%;
  margin-top:18px;
  padding:16px 18px;
  border:none;
  border-radius:14px;
  background:#000;
  color:#fff;
  font-size:18px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
}

.product-info > form{
  width:100%;
  margin-top:auto;
}

.add-to-cart-btn:hover{
  background:#222;
  transform:translateY(-2px);
}

.add-to-cart-btn:active{
  transform:translateY(0);
}

.center-btn-wrap{
  display:flex;
  justify-content:center;
  margin-top:22px;
}

.all-products-btn{
  background:#000;
  color:#fff;
  width:fit-content;
  min-width:unset;
  min-height:unset;
  padding:16px 30px;
  border-radius:14px;
  font-size:18px;
  font-weight:700;
  letter-spacing:.3px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  display:flex;
  flex-direction:row-reverse;
  justify-content:space-between;
  gap:20px;
  padding:28px;
  border-top:1px solid var(--line);
  background:#f8f4f2;
  align-items:center;
}

.footer-left{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  flex:1;
}

.footer-right{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  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);
  display:flex;
  flex-direction:column;
  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;
  color:var(--text);
  -webkit-text-fill-color:currentColor;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
}

.drawer-tab.active{
  background:#fff;
  border-bottom:2px solid #000;
}

.drawer-search-wrap{
  padding:14px 18px 10px;
  border-bottom:1px solid var(--line);
}

.drawer-search-form{
  display:flex;
  align-items:center;
  gap:8px;
  background:#f7f7f7;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;
  padding:8px;
}

.drawer-search-form input{
  flex:1;
  min-width:0;
  height:40px;
  border:0;
  background:transparent;
  outline:none;
  padding:0 10px;
  font-size:14px;
  color:var(--text);
  -webkit-text-fill-color:currentColor;
}

.drawer-search-form button{
  width:42px;
  height:42px;
  border:0;
  border-radius:12px;
  background:#111;
  color:#fff;
  cursor:pointer;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.panel-body{
  padding:10px 18px 16px;
  flex:1;
  min-height:0;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
}

.menuitem{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:52px;
  border-bottom:1px solid var(--line);
  font-size:18px;
  color:var(--text);
  -webkit-text-fill-color:currentColor;
}

.drawer-account{
  padding:14px 0 10px;
}

.drawer-account-title{
  font-weight:700;
  margin-bottom:6px;
  color:var(--text);
  -webkit-text-fill-color:currentColor;
}

.drawer-account-links{
  color:var(--muted);
  font-size:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.drawer-tab,
.drawer-tab *,
.menuitem *,
.drawer-account-links,
.drawer-account-links *,
.lang-switch,
.lang-switch *{
  color:inherit !important;
  -webkit-text-fill-color:currentColor !important;
}

.drawer-account-links span{
  opacity:.7;
}

.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;
}

/* =========================
   CART DRAWER
========================= */

.cart-drawer{
  position:fixed;
  inset:0;
  z-index:1200;
  pointer-events:none;
}

.cart-drawer-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:.25s ease;
}

.cart-drawer-panel{
  position:absolute;
  top:0;
  right:0;
  width:420px;
  max-width:92vw;
  height:100vh;
  background:#fff;
  box-shadow:-12px 0 35px rgba(0,0,0,.14);
  transform:translateX(100%);
  transition:transform .3s ease;
  display:flex;
  flex-direction:column;
}

.cart-drawer.open{
  pointer-events:auto;
}

.cart-drawer.open .cart-drawer-backdrop{
  opacity:1;
}

.cart-drawer.open .cart-drawer-panel{
  transform:translateX(0);
}

.cart-drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 18px;
  border-bottom:1px solid var(--line);
}

.cart-drawer-head h3{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:26px;
  font-weight:500;
}

.cart-drawer-close{
  width:40px;
  height:40px;
  border:none;
  background:#f3efed;
  border-radius:12px;
  cursor:pointer;
  font-size:20px;
}

.cart-drawer-body{
  flex:1;
  overflow:auto;
  padding:16px;
}

.cart-empty{
  text-align:center;
  color:var(--muted);
  padding:40px 10px;
  font-size:15px;
}

.cart-drawer-item{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}

.cart-drawer-item img{
  width:78px;
  height:78px;
  object-fit:cover;
  border-radius:12px;
  background:#f3efed;
}

.cart-drawer-item-info{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cart-drawer-item-title{
  font-size:15px;
  font-weight:600;
  line-height:1.4;
}

.cart-drawer-item-price{
  font-size:14px;
  color:#5c5450;
}

.cart-drawer-item-remove{
  width:max-content;
  padding:0;
  border:none;
  background:transparent;
  color:#b15b66;
  cursor:pointer;
  font-size:13px;
}

.cart-drawer-footer{
  border-top:1px solid var(--line);
  padding:16px;
  background:#fff;
}

.cart-drawer-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:14px;
  font-size:16px;
}

.cart-drawer-total strong{
  font-size:18px;
}

.cart-drawer-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.cart-drawer-btn{
  min-height:46px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  text-align:center;
}

.cart-drawer-btn.primary{
  background:#000;
  color:#fff;
}

.cart-drawer-btn.secondary{
  background:#f3efed;
  color:var(--text);
}

/* =========================
   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:56% 44%;
  }

  .hero-image{
    max-height:340px;
  }
}

@media (max-width:991px){
  .hero-slider{
    width:100%;
    height:auto;
    padding:0 0 12px;
  }

  .hero-track{
    height:auto;
  }

  .topbar{
    grid-template-columns:1fr auto 1fr;
    min-height:72px;
    padding:14px 16px;
    gap:8px;
  }

  .topbar-left{
    gap:8px;
  }

  .topbar-right{
    gap:2px;
  }

  .desktop-nav{
    display:none;
  }

  .mobile-menu-btn{
    display:flex;
    width:44px;
    height:44px;
    border-radius:14px;
    background:rgba(207,195,192,.22);
  }

  .brand-logo{
    width:180px;
    height:auto;
    max-height:54px;
  }

  .search-box.open .search-dropdown{
    width:260px;
  }

  .content{
    padding:22px 16px 30px;
  }

  .h1{
    font-size:34px;
  }

  .h2{
    font-size:30px;
  }

  .hero-slide{
    display:none;
    grid-template-columns:1fr;
    align-items:flex-start;
    gap:0;
    padding:0;
    min-height:auto;
    height:auto;
  }

  .hero-slide.active{
    display:flex;
    flex-direction:column;
  }

  .hero-image-wrap{
    order:1;
  }

  .hero-copy{
    order:2;
    justify-content:flex-start;
    align-items:center;
    text-align:center;
    width:100%;
    margin-top:12px;
    padding:18px 14px 6px;
    border-top:none;
    background:#fff;
  }

  .hero-desc{
    max-width:100%;
    margin:10px 0 0;
  }

  .hero-image{
    width:100%;
    height:auto;
    margin:0;
  }

  .hero-copy .h1{
    margin:0;
    font-size:24px;
    line-height:1.15;
  }

  .hero-copy .tag{
    font-size:12px;
    margin-bottom:8px;
  }

  .hero-btn{
    width:100%;
    max-width:170px;
    margin-top:12px;
    font-size:13px;
    padding:10px 14px;
    background:#d9c8c0;
    color:#2b2421;
  }

  .hero-slider{
    background:#fff;
    border:1px solid #e6ddd8;
    border-radius:0;
    box-shadow:none;
    padding:14px 14px 12px;
  }

  .hero-image-wrap{
    background:#fff;
    border:none;
    box-shadow:none;
  }

  .brands-slider-wrap,
  .products-slider-wrap{
    grid-template-columns:40px 1fr 40px;
    gap:10px;
  }

  .product-card{
    width:300px;
  }

  .product-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:768px){
  .add-to-cart-btn{
    font-size:15px;
    padding:14px 14px;
    border-radius:12px;
  }
}

@media (max-width:600px){
  .page{
    padding:0;
  }

  .site-shell{
    border-radius:0;
  }

  .topbar{
    min-height:68px;
    padding:12px;
    grid-template-columns:1fr auto 1fr;
  }

  .topbar-left{
    gap:0;
  }

  .topbar-right{
    gap:0;
  }

  .mobile-menu-btn{
    width:46px;
    height:46px;
    border-radius:14px;
    background:rgba(207,195,192,.25);
  }

  .brand-logo{
    width:160px;
    height:auto;
    max-height:48px;
  }

  .iconbtn{
    width:34px;
    height:34px;
    font-size:18px;
  }

  .header-icon-img{
    width:19px;
    height:19px;
  }

  .search-box.open .search-dropdown{
    width:220px;
    right:-10px;
  }

  body.is-rtl .search-box.open .search-dropdown{
    left:-10px;
    right:auto;
    transform-origin:left center;
  }

  .content{
    padding:18px 12px 28px;
  }

  .whatsapp-float{
    left:12px;
    right:auto;
    bottom:16px;
    width:46px;
    height:46px;
    max-width:none;
  }

  .whatsapp-float-icon{
    width:46px;
    height:46px;
    min-width:46px;
    font-size:24px;
  }

  .whatsapp-float-text{
    flex:1;
    min-width:0;
    min-height:52px;
    padding:0 16px;
    font-size:14px;
  }

  .h1{
    font-size:28px;
  }

  .h2{
    font-size:26px;
  }

  .hero-image{
    width:100%;
    height:auto;
    border-radius:0;
  }

  .hero-copy .h1{
    font-size:18px;
    line-height:1.15;
  }

  .hero-copy .tag{
    font-size:11px;
    margin-bottom:6px;
  }

  .hero-btn{
    width:100%;
    max-width:130px;
    padding:8px 10px;
    font-size:11px;
    border-radius:10px;
    margin-top:10px;
    background:#d9c8c0;
    color:#2b2421;
  }

  .hero-dots{
    justify-content:center;
  }

  .brands-slider-wrap,
  .products-slider-wrap{
    grid-template-columns:1fr;
  }

  .slider-arrow{
    display:none;
  }

  .products-track{
    gap:12px;
    padding:8px 0;
  }

  .brand-circle{
    width:92px;
    height:92px;
  }

  .product-card{
    width:calc((100% - 12px) / 2);
  }

  .product-image-box{
    height:200px;
  }

  .product-title{
    min-height:52px;
    font-size:17px;
  }

  .product-price{
    min-height:52px;
    font-size:15px;
  }

  .product-actions{
    top:10px;
    right:10px;
  }

  .product-action-btn{
    width:34px;
    height:34px;
  }

  .product-action-btn i{
    font-size:14px;
  }

  .panel{
    width:92%;
    left:4%;
    top:16px;
    max-height:calc(100vh - 32px);
  }

  .cart-drawer-panel{
    width:100%;
    max-width:100%;
  }

  .cart-drawer-head{
    padding:16px 14px;
  }

  .cart-drawer-head h3{
    font-size:22px;
  }

  .cart-drawer-body{
    padding:14px;
  }

  .cart-drawer-footer{
    padding:14px;
  }
}

/* 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;
}

.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;
}

.lux-field label{
  position:absolute;
  left:12px;
  top:14px;
  font-size:14px;
  color:#888;
  background:#fff;
  padding:0 4px;
  transition:.25s;
}

.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);
}

.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;
}

.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;
  }
}

.shop-filter-actions{
  padding:18px 14px 0;
}

.shop-apply-btn{
  margin-top:0;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.shop-reset-link{
  display:block;
  text-align:center;
  margin-top:12px;
  color:#7b716d;
  font-size:14px;
}

.product-actions form{
  margin:0;
}

.shop-pagination-wrap{
  margin-top:28px;
}

/* =========================
   SHOP PAGE
========================= */

.shop-page-content{
  padding-top:20px;
  padding-bottom:40px;
}

.shop-page{
  width:100%;
}

.shop-page-title{
  margin-bottom:18px;
}

.shop-topbar{
  display:grid;
  grid-template-columns:1fr 220px;
  gap:14px;
  align-items:center;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
  padding-bottom:18px;
}

.shop-topbar-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.shop-filter-btn{
  display:none;
  align-items:center;
  gap:10px;
  height:42px;
  padding:0 16px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:#4f4744;
  cursor:pointer;
  font-weight:500;
}

.shop-sort-wrap{
  position:relative;
}

.shop-sort-select{
  width:100%;
  height:42px;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  padding:0 40px 0 12px;
  outline:none;
  font-size:14px;
  color:#5b5451;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  cursor:pointer;
}

.shop-select-arrow{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  color:#857a75;
  pointer-events:none;
  font-size:16px;
}

.shop-layout{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:18px;
  align-items:start;
}

.shop-sidebar{
  display:flex;
  flex-direction:column;
  gap:0;
}

.shop-sidebar-mobile-head{
  display:none;
}

.shop-sidebar-mobile-title{
  font-family:"Playfair Display", serif;
  font-size:24px;
}

.shop-sidebar-close{
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  font-size:24px;
  cursor:pointer;
}

.filter-card{
  border:1px solid var(--line);
  border-bottom:none;
  background:#fff;
}

.filter-card:first-child{
  border-radius:8px 8px 0 0;
}

.filter-card:last-child{
  border-bottom:1px solid var(--line);
  border-radius:0 0 8px 8px;
}

.filter-head{
  width:100%;
  height:56px;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  font-family:"Playfair Display", serif;
  font-size:18px;
  color:#4a4340;
  cursor:pointer;
}

.filter-body{
  overflow:hidden;
  max-height:0;
  padding:0 14px 0;
  transition:max-height .35s ease, padding .35s ease;
}

.filter-card.is-open .filter-body{
  max-height:500px;
  padding:0 14px 16px;
}

.filter-toggle-icon{
  font-size:16px;
  color:#776d68;
}

.filter-radio,
.filter-check{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:#4f4744;
  margin-bottom:12px;
  cursor:pointer;
}

.filter-radio input,
.filter-check input{
  accent-color:#8e8178;
}

.price-values{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#746965;
  font-size:14px;
  margin-bottom:16px;
  padding-top:2px;
}

.range-wrap{
  position:relative;
  height:28px;
  margin-top:6px;
}

.range-track,
.range-fill{
  position:absolute;
  top:11px;
  height:3px;
  border-radius:999px;
}

.range-track{
  left:0;
  right:0;
  background:#ddd4cf;
}

.range-fill{
  background:#b49e89;
  left:0;
  width:100%;
}

.range-wrap input[type="range"]{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:28px;
  margin:0;
  background:transparent;
  pointer-events:none;
  -webkit-appearance:none;
  appearance:none;
}

.range-wrap input[type="range"]::-webkit-slider-thumb{
  pointer-events:auto;
  -webkit-appearance:none;
  appearance:none;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#b49e89;
  border:none;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}

.range-wrap input[type="range"]::-moz-range-thumb{
  pointer-events:auto;
  width:18px;
  height:18px;
  border:none;
  border-radius:50%;
  background:#b49e89;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
}

.range-wrap input[type="range"]::-webkit-slider-runnable-track{
  background:transparent;
}

.range-wrap input[type="range"]::-moz-range-track{
  background:transparent;
}

.shop-products{
  min-width:0;
}

.shop-products .page-empty{
  padding:40px 0;
  text-align:center;
  color:var(--muted);
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.shop-grid .product-card{
  width:100%;
  min-width:0;
}

.shop-grid .add-to-cart-btn{
  width:auto;
  min-width:unset;
  margin-top:8px;
  padding:9px 14px;
  font-size:13px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.shop-grid .product-info > form{
  width:auto;
  align-self:center;
  margin-top:4px;
}

.shop-grid .product-image-box{
  height:320px;
  background:#f3efed;
  padding:16px;
}

.shop-grid .product-main-image{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.shop-count-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:22px;
  color:#7b716d;
}

.count-line{
  width:100px;
  height:1px;
  background:var(--line);
}

.count-text{
  font-size:14px;
  color:#7b716d;
}

.product-details-content{
  padding-top:20px;
  padding-bottom:40px;
}

.product-details-page{
  width:100%;
}

.product-hero-card{
  border-top:1px solid var(--line);
  padding-top:22px;
  padding-bottom:18px;
}

.product-hero-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}

.product-hero-image-wrap{
  background:#f5f1ef;
  min-height:390px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.product-hero-image{
  width:100%;
  max-width:320px;
  height:340px;
  object-fit:contain;
  display:block;
  transition:.25s ease;
}

.product-hero-title{
  margin:0 0 14px;
  font-family:"Playfair Display", serif;
  font-size:28px;
  color:#3f3936;
  line-height:1.2;
}

.product-hero-price{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  font-family:"Playfair Display", serif;
  font-size:22px;
  color:#423c39;
  margin-bottom:18px;
}

.product-hero-old-price{
  color:#9b8f8a;
  text-decoration:line-through;
  font-size:18px;
}

.product-hero-divider{
  width:100%;
  height:1px;
  background:var(--line);
  margin-bottom:18px;
}

.product-hero-desc{
  color:#5a534f;
  font-size:15px;
  line-height:1.9;
  margin:0 0 16px;
}

.product-hero-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:24px;
}

.product-hero-cart-form{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.product-hero-btn{
  width:100%;
  max-width:260px;
  height:52px;
  border:none;
  border-radius:4px;
  background:#b29b84;
  color:#fff;
  font-family:"Playfair Display", serif;
  font-size:18px;
  cursor:pointer;
  transition:.2s ease;
}

.product-hero-btn:hover{
  opacity:.92;
}

.product-outline-btn{
  width:max-content;
  min-height:48px;
  border:1px solid var(--line);
  background:#fff;
  color:#3f3936;
  border-radius:999px;
  padding:0 18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

.product-meta-list{
  margin-top:26px;
  border-top:1px solid var(--line);
}

.product-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
}

.product-meta-row span{
  color:#7b716d;
}

.product-meta-row a{
  color:#2f2b29;
  font-weight:600;
}

.product-gallery-section{
  border-top:1px solid var(--line);
  padding:22px 0 18px;
}

.product-section-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:18px;
}

.section-line{
  flex:1;
  max-width:130px;
  height:1px;
  background:var(--line);
}

.product-section-title{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:24px;
  color:#3f3936;
  text-align:center;
}

.gallery-slider-wrap,
.related-slider-wrap{
  display:grid;
  grid-template-columns:46px 1fr 46px;
  gap:14px;
  align-items:center;
}

.gallery-slider,
.related-products-slider{
  overflow:hidden;
  width:100%;
}

.gallery-track,
.related-products-track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scrollbar-width:none;
  scroll-behavior:smooth;
  padding:2px;
}

.gallery-track::-webkit-scrollbar,
.related-products-track::-webkit-scrollbar{
  display:none;
}

.gallery-slide{
  flex:0 0 calc((100% - 28px) / 3);
  min-width:calc((100% - 28px) / 3);
  opacity:.78;
  transition:.2s ease;
  cursor:pointer;
}

.gallery-slide.active{
  opacity:1;
}

.gallery-thumb-card{
  background:#f4efed;
  min-height:170px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border:1px solid transparent;
  transition:.2s ease;
}

.gallery-slide.active .gallery-thumb-card{
  border-color:#b29b84;
}

.gallery-thumb-img{
  width:100%;
  height:170px;
  object-fit:contain;
  display:block;
  padding:8px;
}

.gallery-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:16px;
}

.gallery-dot{
  width:8px;
  height:8px;
  border:none;
  border-radius:50%;
  background:#d6ccc7;
  cursor:pointer;
  padding:0;
}

.gallery-dot.active{
  background:#8f8178;
}

.product-accordion-section{
  border-top:1px solid var(--line);
  padding-top:8px;
}

.product-acc-item{
  border-bottom:1px solid var(--line);
}

.product-acc-btn{
  width:100%;
  min-height:68px;
  border:none;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 14px;
  font-family:"Playfair Display", serif;
  font-size:20px;
  color:#3f3936;
  cursor:pointer;
  text-align:left;
}

.product-acc-icon{
  font-size:26px;
  color:#7d726c;
  transition:.25s ease;
  line-height:1;
}

.product-acc-item.open .product-acc-icon{
  transform:rotate(90deg);
}

.product-acc-panel{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 14px;
  color:#605854;
  font-size:14px;
  line-height:1.8;
}

.product-acc-item.open .product-acc-panel{
  padding-bottom:16px;
}

.product-feature-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.product-feature-item strong{
  display:block;
  margin-bottom:6px;
  color:#3f3936;
}

.product-feature-item p,
.product-acc-panel p{
  margin:0;
}

.related-products-section{
  padding-top:26px;
}

.related-product-card{
  flex:0 0 calc((100% - 28px) / 3);
  min-width:calc((100% - 28px) / 3);
  display:block;
  border:1px solid var(--line);
  background:#fff;
  text-decoration:none;
  overflow:hidden;
  transition:.2s ease;
}

.related-product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.related-product-image-box{
  background:#f4efed;
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:12px;
}

.related-product-image{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.related-product-info{
  text-align:center;
  padding:12px 8px 14px;
}

.related-product-name{
  font-size:15px;
  color:#3f3936;
  margin-bottom:6px;
  line-height:1.35;
}

.related-product-price{
  color:#4f4744;
  font-size:14px;
}

.cart-page-content{
  padding-top:22px;
  padding-bottom:40px;
}

.cart-page{
  width:100%;
}

.cart-page-title{
  margin-bottom:18px;
}

.cart-page-sub-breadcrumb{
  margin-bottom:18px;
}

.cart-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:28px;
  align-items:start;
}

.cart-left,
.cart-right{
  min-width:0;
}

.cart-side-stack{
  display:grid;
  gap:18px;
}

.cart-table-card{
  border-top:1px solid var(--line);
  padding-top:10px;
}

.cart-table-head{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 190px;
  gap:20px;
  align-items:center;
  padding:8px 0 14px;
  border-bottom:1px solid var(--line);
  color:#544c49;
  font-size:15px;
}

.cart-col-product{
  display:flex;
  align-items:center;
  gap:10px;
}

.cart-col-product::before{
  content:"";
  width:74px;
  height:28px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#faf7f6;
  display:inline-block;
  vertical-align:middle;
  position:relative;
}

.cart-items{
  width:100%;
}

.cart-item{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 190px;
  gap:20px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.cart-product-wrap{
  display:flex;
  align-items:flex-start;
  gap:16px;
  min-width:0;
}

.cart-product-image-box{
  width:82px;
  height:82px;
  flex:0 0 82px;
  background:#f3efed;
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cart-product-image{
  width:100%;
  height:100%;
  object-fit:cover;
}

.cart-product-info{
  min-width:0;
  padding-top:4px;
}

.cart-product-name{
  font-size:28px;
  line-height:1.15;
  font-family:"Playfair Display", serif;
  color:#3c3532;
  margin-bottom:6px;
}

.cart-product-price{
  font-size:24px;
  color:#4d4744;
  font-weight:500;
}

.cart-product-total-mobile{
  display:none;
}

.cart-qty-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:flex-start;
}

.cart-qty{
  display:flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:4px;
  overflow:hidden;
  background:#fff;
}

.cart-qty button{
  width:42px;
  height:42px;
  border:none;
  background:#fff;
  color:#7d726d;
  font-size:20px;
  cursor:pointer;
  transition:.2s ease;
}

.cart-qty button:hover{
  background:#f4efed;
}

.cart-qty input{
  width:46px;
  height:42px;
  border:none;
  outline:none;
  text-align:center;
  font-size:16px;
  color:#3f3936;
  background:#fff;
}

.cart-remove-btn{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:4px;
  background:#fff;
  color:#8e817b;
  font-size:22px;
  cursor:pointer;
  transition:.2s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}

.cart-remove-btn:hover{
  background:#f8f2f1;
}

.cart-update-wrap{
  padding-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.cart-update-btn{
  min-width:170px;
  height:50px;
  border:1px solid var(--line);
  background:#fff;
  color:#5c5451;
  border-radius:4px;
  font-size:16px;
  cursor:pointer;
  transition:.2s ease;
}

.cart-update-btn:hover{
  background:#f7f2f1;
}

.cart-continue-link{
  color:#7a706c;
  font-size:15px;
}

.cart-summary-card{
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:#faf7f6;
}

.cart-summary-title{
  padding:18px 22px;
  font-family:"Playfair Display", serif;
  font-size:34px;
  color:#463f3b;
  border-bottom:1px solid var(--line);
  background:rgba(255,255,255,.35);
}

.cart-coupon-body{
  padding:18px 22px 22px;
}

.cart-coupon-form{
  display:grid;
  gap:12px;
}

.cart-coupon-input{
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:6px;
  background:#fff;
  padding:0 16px;
  font-size:15px;
  outline:none;
}

.cart-coupon-btn,
.cart-remove-coupon-btn{
  width:100%;
  min-height:50px;
  border-radius:6px;
  font-size:16px;
  cursor:pointer;
  transition:.2s ease;
}

.cart-coupon-btn{
  border:0;
  background:var(--primary);
  color:#2f2825;
}

.cart-remove-coupon-btn{
  margin-top:12px;
  border:1px solid var(--line);
  background:#fff;
  color:#665d59;
}

.cart-summary-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px 22px 0;
  font-size:17px;
  color:#4f4845;
}

.cart-summary-row strong{
  font-size:22px;
  color:#3f3935;
  font-weight:600;
  white-space:nowrap;
}

.cart-summary-row.shipping-row{
  color:var(--muted);
  padding-top:14px;
  line-height:1.5;
}

.cart-summary-total-row{
  padding-bottom:4px;
}

.cart-checkout-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:calc(100% - 44px);
  margin:22px;
  height:54px;
  border-radius:6px;
  background:var(--primary);
  color:#2f2825;
  font-size:17px;
  font-weight:600;
  transition:.2s ease;
}

.cart-checkout-btn:hover,
.cart-coupon-btn:hover{
  opacity:.92;
}

.checkout-page-content{
  padding-top:22px;
  padding-bottom:40px;
}

.checkout-page{
  width:100%;
}

.checkout-page-title{
  margin-bottom:18px;
}

.checkout-page-sub-breadcrumb{
  margin-bottom:18px;
}

.checkout-layout{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:24px;
  align-items:start;
  border-top:1px solid var(--line);
}

.checkout-left,
.checkout-right{
  min-width:0;
}

.checkout-form-card{
  padding-top:8px;
}

.checkout-section{
  padding:22px 0;
}

.checkout-section:first-child{
  padding-top:18px;
}

.checkout-section-title{
  margin:0 0 18px;
  font-family:"Playfair Display", serif;
  font-size:34px;
  color:#463f3b;
}

.checkout-label{
  display:block;
  margin-bottom:10px;
  color:#5d5551;
  font-size:15px;
}

.checkout-input{
  width:100%;
  min-height:54px;
  border:1px solid #ccbdb6;
  border-radius:6px;
  background:#fff;
  padding:0 16px;
  font-size:15px;
  color:#383330;
  outline:none;
  margin-bottom:16px;
}

.checkout-input:focus{
  border-color:#b8a39a;
  box-shadow:0 0 0 1px rgba(184,163,154,.18);
}

.checkout-textarea{
  min-height:120px;
  padding:14px 16px;
  resize:vertical;
}

.checkout-grid-two{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.checkout-grid-three{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.checkout-select-wrap{
  position:relative;
}

.checkout-select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  display:block;
  direction:inherit;
  text-align:start;
  text-align-last:start;
  padding-inline-start:16px;
  padding-inline-end:44px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.checkout-select option{
  direction:inherit;
  text-align:start;
}

.checkout-saved-address-select{
  width:60%;
  max-width:100%;
  padding-inline-start:18px;
  padding-inline-end:52px;
}

.checkout-select-arrow{
  position:absolute;
  top:50%;
  inset-inline-end:16px;
  transform:translateY(-50%);
  color:#8f827c;
  pointer-events:none;
}

.checkout-divider{
  height:1px;
  background:#d5c8c2;
}

.checkout-payment-options{
  display:grid;
  gap:12px;
}

.checkout-payment-card{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:58px;
  padding:0 18px;
  border:1px solid #ccbdb6;
  border-radius:8px;
  background:#fff;
  color:#463f3b;
  cursor:pointer;
  transition:.2s ease;
}

.checkout-payment-card.active{
  border-color:#b9a79d;
  background:#faf4f1;
}

.checkout-payment-card input{
  display:none;
}

.checkout-payment-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:#f2ece9;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.checkout-summary-card{
  border:1px solid #ccbdb6;
  border-radius:10px;
  overflow:hidden;
  background:#faf7f6;
  margin-top:18px;
}

.checkout-summary-title{
  padding:18px 22px;
  font-family:"Playfair Display", serif;
  font-size:34px;
  color:#463f3b;
  border-bottom:1px solid #d5c8c2;
  background:rgba(255,255,255,.35);
}

.checkout-summary-products{
  padding:0 22px;
}

.checkout-summary-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.checkout-summary-item-left{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

.checkout-summary-thumb-box{
  width:72px;
  height:72px;
  border-radius:6px;
  background:#f3efed;
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.checkout-summary-thumb{
  width:100%;
  height:100%;
  object-fit:cover;
}

.checkout-summary-item-info{
  min-width:0;
}

.checkout-summary-item-name{
  font-family:"Playfair Display", serif;
  font-size:20px;
  color:#413a37;
  line-height:1.25;
  margin-bottom:4px;
}

.checkout-summary-item-sub{
  font-size:14px;
  color:#7a706c;
}

.checkout-summary-item-price{
  font-size:16px;
  color:#413a37;
  font-weight:600;
  white-space:nowrap;
}

.checkout-promo-applied{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:18px 22px 0;
  padding:14px 16px;
  border:1px dashed #c7b3aa;
  border-radius:8px;
  background:#fff;
  color:#4f4845;
}

.checkout-totals{
  padding:8px 22px 0;
}

.checkout-total-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  font-size:16px;
  color:#4f4845;
}

.checkout-total-row.shipping{
  color:var(--muted);
}

.checkout-total-row.total{
  border-top:1px solid var(--line);
  margin-top:8px;
  padding-top:18px;
}

.checkout-total-row strong{
  font-size:22px;
  color:#3f3935;
  font-weight:600;
  white-space:nowrap;
}

.checkout-payments{
  padding:18px 22px 22px;
}

.checkout-pay-btn{
  width:100%;
  min-height:54px;
  border:none;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  font-size:17px;
  font-weight:600;
  transition:.2s ease;
}

.checkout-pay-btn.gold{
  background:var(--primary);
  color:#2f2825;
}

.checkout-pay-btn:hover{
  opacity:.92;
}

.shop-filter-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.42);
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
  z-index:998;
}

.shop-filter-backdrop.open{
  opacity:1;
  visibility:visible;
}

@media (max-width:1100px){
  .shop-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width:900px){
  .shop-topbar{
    grid-template-columns:1fr 1fr;
  }

  .shop-filter-btn{
    display:inline-flex;
  }

  .shop-layout{
    grid-template-columns:1fr;
  }

  .shop-sidebar{
    position:fixed;
    top:0;
    left:0;
    width:min(360px, 88vw);
    height:100vh;
    background:#fff;
    z-index:999;
    overflow-y:auto;
    padding:18px 16px 24px;
    transform:translateX(-100%);
    transition:transform .28s ease;
    box-shadow:0 16px 40px rgba(0,0,0,.18);
  }

  .shop-sidebar.open{
    transform:translateX(0);
  }

  .shop-sidebar-mobile-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:16px;
  }

  .filter-card:first-child{
    border-radius:8px 8px 0 0;
  }

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

  .product-hero-image{
    max-width:280px;
  }

  .cart-layout{
    grid-template-columns:1fr;
  }

  .checkout-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width:600px){
  .shop-topbar{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .shop-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:14px;
  }

  .shop-grid .product-card{
    border-radius:16px;
  }

  .shop-grid .product-image-box{
    height:210px;
    padding:10px;
  }

  .shop-grid .product-info{
    padding:14px 12px 16px;
  }

  .shop-grid .product-title{
    font-size:18px;
    line-height:1.2;
    min-height:44px;
  }

  .shop-grid .product-price{
    font-size:14px;
    min-height:44px;
  }

  .count-line{
    width:60px;
  }

  .product-hero-image-wrap{
    min-height:280px;
    padding:16px;
  }

  .product-hero-image{
    height:240px;
  }

  .product-hero-title{
    font-size:24px;
  }

  .product-hero-cart-form{
    flex-direction:column;
    align-items:stretch;
  }

  .product-hero-btn{
    max-width:none;
  }

  .gallery-slider-wrap,
  .related-slider-wrap{
    grid-template-columns:1fr;
  }

  .gallery-slider-wrap .slider-arrow,
  .related-slider-wrap .slider-arrow{
    display:none;
  }

  .gallery-slide,
  .related-product-card{
    flex:0 0 78%;
    min-width:78%;
  }

  .cart-table-head{
    display:none;
  }

  .cart-item{
    grid-template-columns:1fr;
  }

  .cart-product-name{
    font-size:22px;
  }

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

  .cart-product-total-mobile{
    display:block;
    margin-top:8px;
    color:#7a706c;
    font-size:14px;
  }

  .cart-qty-wrap{
    justify-content:space-between;
  }

  .cart-summary-title{
    font-size:28px;
  }

  .checkout-grid-two,
  .checkout-grid-three{
    grid-template-columns:1fr;
  }

  .checkout-section-title,
  .checkout-summary-title{
    font-size:28px;
  }

  .checkout-summary-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .checkout-summary-item-price{
    padding-inline-start:84px;
  }
}

/* =========================
   WARRANTY PAGE
========================= */
/* =========================
   WARRANTY PAGE
========================= */

.warranty-page-content{
  padding-top:20px;
  padding-bottom:40px;
}

.warranty-page{
  width:100%;
}

.warranty-header{
  text-align:center;
  padding:28px 0 8px;
}

.warranty-main-title{
  margin-bottom:18px;
}

.warranty-sub-title{
  margin:0 0 18px;
  font-family:"Playfair Display", serif;
  font-size:34px;
  font-weight:400;
  color:#433c39;
}

.warranty-intro{
  max-width:760px;
  margin:0 auto;
  color:#5d5652;
  font-size:16px;
  line-height:2;
}

.warranty-divider{
  width:100%;
  height:1px;
  background:var(--line);
  margin:28px 0 30px;
}

.warranty-columns{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  margin-bottom:34px;
}

.warranty-col{
  padding:6px 18px 8px;
  text-align:left;
  position:relative;
}

.warranty-col:not(:last-child){
  border-right:1px solid var(--line);
}

.warranty-col-icon{
  font-size:40px;
  color:#8a7a6f;
  margin-bottom:10px;
  line-height:1;
  display:flex;
  justify-content:center;
}

.warranty-col h3{
  margin:0 0 14px;
  font-family:"Playfair Display", serif;
  font-size:24px;
  font-weight:400;
  color:#433c39;
  line-height:1.3;
  text-align:center;
}

.warranty-col ul{
  margin:0;
  padding-left:22px;
  list-style-position:outside;
  color:#554d49;
  font-size:15px;
  line-height:2;
  text-align:left;
}

.warranty-col ul li{
  text-align:left;
}

.activate-warranty-box{
  background:#faf7f6;
  border:1px solid #f0e8e4;
  padding:24px 24px 10px;
  margin-bottom:26px;
}

.activate-title-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-bottom:22px;
}

.activate-title-wrap h3{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:24px;
  font-weight:400;
  color:#433c39;
  text-align:center;
  white-space:nowrap;
}

.activate-line{
  flex:1;
  height:1px;
  background:var(--line);
  max-width:220px;
}

.activate-step{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:26px;
}

.activate-step:last-child{
  margin-bottom:10px;
}

.activate-step-icon{
  font-size:36px;
  color:#8a7a6f;
  width:48px;
  flex:0 0 48px;
  text-align:center;
  line-height:1;
  padding-top:2px;
}

.activate-step-content h4{
  margin:0 0 8px;
  font-family:"Playfair Display", serif;
  font-size:22px;
  font-weight:400;
  color:#433c39;
}

.activate-step-content p{
  margin:0;
  color:#5c5450;
  font-size:15px;
  line-height:1.9;
}

.warranty-note{
  text-align:center;
  max-width:760px;
  margin:0 auto;
  color:#6d635f;
  font-size:18px;
  line-height:2;
}

@media (max-width:900px){
  .warranty-columns{
    grid-template-columns:1fr;
    gap:22px;
  }

  .warranty-col{
    padding:0 0 10px;
  }

  .warranty-col:not(:last-child){
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .warranty-sub-title{
    font-size:30px;
  }

  .warranty-intro{
    font-size:15px;
  }
}

@media (max-width:600px){
  .warranty-header{
    padding-top:18px;
  }

  .warranty-sub-title{
    font-size:26px;
  }

  .warranty-intro{
    font-size:14px;
    line-height:1.9;
  }

  .warranty-col h3{
    font-size:22px;
  }

  .warranty-col ul{
    font-size:14px;
    padding-left:20px;
  }

  .activate-warranty-box{
    padding:18px 14px 8px;
  }

  .activate-title-wrap{
    gap:10px;
  }

  .activate-title-wrap h3{
    font-size:20px;
    white-space:normal;
  }

  .activate-line{
    max-width:70px;
  }

  .activate-step{
    gap:12px;
  }

  .activate-step-icon{
    width:38px;
    flex:0 0 38px;
    font-size:28px;
  }

  .activate-step-content h4{
    font-size:20px;
  }

  .activate-step-content p{
    font-size:14px;
  }

.warranty-note{
  font-size:16px;
  line-height:1.9;
  }
}

.content{
  padding: 18px 28px 40px;
}

.lang-switch{
  margin-top: 24px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:var(--muted);
}

.lang-switch a.active{
  color:var(--text);
  font-weight:600;
}

  .site-footer{
    display:flex;
    flex-direction:column-reverse;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
  }

.footer-links-row{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  width:100%;
  text-align:center;
}

.footer-links-row a{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
}

.whatsapp-float{
  position:fixed;
  left:24px;
  bottom:24px;
  z-index:1200;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  gap:0;
  max-width:none;
  text-decoration:none;
}

.whatsapp-float-icon{
  width:58px;
  height:58px;
  min-width:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:0 14px 34px rgba(37,211,102,.28);
  animation:whatsappFloat 2.6s ease-in-out infinite;
}

@keyframes whatsappFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}

.whatsapp-float-text{
  min-height:58px;
  padding:0 22px;
  border-radius:16px;
  background:rgba(255,255,255,.96);
  border:1px solid #ece7e5;
  color:#26211f;
  display:inline-flex;
  align-items:center;
  box-shadow:0 12px 24px rgba(0,0,0,.08);
  font-size:16px;
  font-weight:500;
  line-height:1.2;
}

.page-hero,
.section-card,
.panel-card,
.info-card,
.order-card-dynamic,
.auth-card,
.form-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:var(--shadow);
}

.page-hero{
  padding:28px;
  margin-bottom:28px;
  background:linear-gradient(135deg,#f7f0ed 0%,#fdfbf9 100%);
}

.page-breadcrumb,
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.page-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
}

.page-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.section-stack{
  display:grid;
  gap:24px;
}

.section-card,
.panel-card,
.auth-card,
.form-card,
.info-card{
  padding:24px;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:20px;
  flex-wrap:wrap;
}

.section-kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}

.section-title{
  font-family:"Playfair Display", serif;
  font-size:34px;
  line-height:1.15;
  margin:0;
}

.section-copy{
  color:var(--muted);
  line-height:1.9;
  margin:0;
}

.hero-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
}

.hero-badge,
.count-badge,
.status-chip,
.price-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#f3ece9;
  color:var(--text);
  font-size:13px;
  font-weight:600;
}

.hero-title{
  font-family:"Playfair Display", serif;
  font-size:clamp(36px,6vw,64px);
  line-height:1.02;
  margin:14px 0 16px;
}

.hero-text{
  color:var(--muted);
  line-height:1.9;
  max-width:640px;
}

.hero-actions,
.inline-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:22px;
}

.primary-btn,
.secondary-btn,
.ghost-btn{
  min-height:48px;
  padding:0 20px;
  border-radius:14px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  cursor:pointer;
  font-weight:600;
  transition:.25s ease;
}

.primary-btn{
  background:#1c1c1c;
  color:#fff;
}

.primary-btn:hover{
  background:#383838;
  color:#fff;
}

.secondary-btn{
  background:#fff;
  color:var(--text);
  border-color:#d8d0cd;
}

.ghost-btn{
  background:#f8f4f2;
  color:var(--text);
  border-color:var(--line);
}

.media-card{
  position:relative;
  min-height:420px;
  border-radius:28px;
  overflow:hidden;
  background:#f2ece8;
}

.media-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.media-card-overlay{
  position:absolute;
  inset:auto 24px 24px 24px;
  padding:20px;
  border-radius:20px;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
}

.categories-grid,
.products-grid,
.features-grid,
.brands-grid,
.contact-grid,
.info-grid,
.stats-grid,
.account-grid{
  display:grid;
  gap:18px;
}

.categories-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.products-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.features-grid,
.brands-grid,
.contact-grid,
.info-grid,
.account-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.stats-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.category-card,
.product-card-dar,
.feature-card,
.brand-card,
.contact-card-dar,
.stat-card,
.account-link-card{
  border:1px solid var(--line);
  border-radius:22px;
  background:#fff;
  overflow:hidden;
  transition:.25s ease;
}

.category-card:hover,
.product-card-dar:hover,
.feature-card:hover,
.brand-card:hover,
.contact-card-dar:hover,
.account-link-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.account-link-card.active{
  border-color:#c7b5ac;
  background:#faf4f1;
}

.category-card-image,
.product-card-image{
  aspect-ratio:1/1;
  background:#f7f3f1;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.category-card-image img,
.product-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.category-card-body,
.product-card-body,
.feature-card,
.brand-card,
.contact-card-dar,
.account-link-card{
  padding:18px;
}

.product-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.product-card-title,
.category-card-title{
  font-size:20px;
  margin:0 0 10px;
  font-family:"Playfair Display", serif;
}

.product-price-row{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.product-price-row strong{
  font-size:20px;
}

.product-price-row del{
  color:var(--muted);
}

.wishlist-toggle,
.icon-circle-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--text);
}

.filter-layout,
.product-detail-layout,
.cart-layout-modern,
.checkout-layout-modern,
.profile-layout-modern,
.login-grid-modern{
  display:grid;
  gap:24px;
}

.cart-layout-single{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}

.filter-layout{
  grid-template-columns:320px minmax(0,1fr);
}

.product-detail-layout{
  grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);
  align-items:start;
}

.cart-layout-modern,
.checkout-layout-modern{
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  align-items:start;
}

.profile-layout-modern{
  grid-template-columns:280px minmax(0,1fr);
}

.account-page-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 280px;
  gap:24px;
  align-items:start;
}

.login-grid-modern{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.sidebar-card,
.summary-card,
.filter-card,
.list-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
}

.filter-list,
.plain-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}

.filter-link,
.plain-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
}

.filter-link.active,
.plain-link.active{
  color:var(--text);
  font-weight:600;
}

.simple-form,
.stack-form{
  display:grid;
  gap:16px;
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.field-group{
  display:grid;
  gap:8px;
}

.field-group label{
  font-size:13px;
  color:var(--muted);
}

.field-control,
.search-dropdown input,
.drawer-search-form input,
.simple-form input,
.simple-form textarea,
.simple-form select,
.stack-form input,
.stack-form textarea,
.stack-form select{
  width:100%;
  min-height:50px;
  border-radius:14px;
  border:1px solid #ded6d2;
  padding:0 16px;
  background:#fff;
  color:var(--text);
}

.field-control textarea,
.simple-form textarea,
.stack-form textarea{
  min-height:140px;
  padding:14px 16px;
  resize:vertical;
}

.summary-row,
.meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}

.summary-row:last-child,
.meta-row:last-child{
  border-bottom:0;
}

.cart-item-modern,
.order-item-modern,
.wishlist-item-modern{
  display:grid;
  grid-template-columns:110px minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.cart-item-stack{
  display:grid;
  grid-template-columns:140px minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.cart-item-stack:last-child{
  border-bottom:0;
}

.cart-stack-thumb{
  width:140px;
  height:140px;
}

.cart-stack-total{
  display:grid;
  gap:8px;
  text-align:end;
}

.home-categories-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.home-category-card{
  display:block;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  transition:.25s ease;
}

.home-category-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.home-category-image{
  aspect-ratio:1/1;
  background:#f7f3f1;
}

.home-category-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-category-name{
  padding:16px;
  text-align:center;
  font-weight:600;
}

.about-split-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
}

.about-split-copy p{
  color:var(--muted);
  line-height:1.9;
  margin:0 0 18px;
}

.about-split-image{
  border-radius:20px;
  overflow:hidden;
  background:#f5f0ed;
  min-height:320px;
}

.about-split-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

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

.address-card-modern{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  background:#fff;
}

.address-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.address-meta-list{
  display:grid;
  gap:10px;
  color:var(--muted);
}

.address-meta-list span{
  color:var(--text);
  font-weight:600;
}

.address-modal .modal-content,
.address-modal{
  border-radius:20px;
}

.address-popup{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(17,17,17,.45);
  z-index:1200;
}

.address-popup.is-open{
  display:flex;
}

.address-popup .modal-dialog{
  width:100%;
  max-width:860px;
  margin:0;
}

.address-popup .modal-dialog-centered{
  display:flex;
  align-items:center;
  min-height:auto;
}

.address-popup .modal-content{
  width:100%;
  border:0;
  border-radius:20px;
  background:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  overflow:hidden;
}

.address-popup .modal-header,
.address-popup .modal-body{
  padding:24px;
}

.address-popup .modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  border-bottom:1px solid var(--line);
}

.address-popup .modal-title{
  margin:0;
  font-family:"Playfair Display", serif;
  font-size:28px;
  color:#413a37;
}

.address-popup .btn-close{
  width:42px;
  height:42px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  cursor:pointer;
  position:relative;
  opacity:1;
  box-shadow:none;
}

.address-popup .btn-close::before,
.address-popup .btn-close::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:16px;
  height:1.5px;
  background:#3f3935;
}

.address-popup .btn-close::before{
  transform:translate(-50%, -50%) rotate(45deg);
}

.address-popup .btn-close::after{
  transform:translate(-50%, -50%) rotate(-45deg);
}

.account-sidebar-card{
  position:sticky;
  top:110px;
}

.account-sidebar-links .account-link-card{
  width:100%;
}

.account-table-wrap{
  overflow-x:auto;
}

.account-table{
  width:100%;
  border-collapse:collapse;
  min-width:880px;
}

.account-table th,
.account-table td{
  padding:16px 14px;
  border-bottom:1px solid var(--line);
  text-align:start;
  vertical-align:top;
}

.account-table th{
  color:#6f6662;
  font-size:14px;
  font-weight:600;
  background:#faf7f6;
}

.table-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.cart-item-modern:last-child,
.order-item-modern:last-child,
.wishlist-item-modern:last-child{
  border-bottom:0;
}

.thumb-box{
  width:110px;
  height:110px;
  border-radius:20px;
  background:#f7f3f1;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}

.thumb-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.qty-pill{
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-height:46px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid var(--line);
}

.qty-pill button{
  border:0;
  background:transparent;
  font-size:20px;
  cursor:pointer;
}

.qty-pill input{
  width:34px;
  border:0;
  text-align:center;
  background:transparent;
}

.notification{
  border-radius:18px !important;
}

.page-empty{
  padding:40px 20px;
  text-align:center;
  color:var(--muted);
}

.rtl-flip{
  transform:scaleX(-1);
}

body.is-rtl{
  font-family:"Cairo", sans-serif;
}

body.is-rtl .desktop-nav-link::after{
  right:0;
  left:auto;
}

body.is-rtl .search-dropdown{
  left:0;
  right:auto;
  transform-origin:left center;
  direction:rtl;
}

body.is-rtl .search-dropdown input,
body.is-rtl .drawer-search-form input{
  text-align:right;
}

body.is-rtl .search-dropdown input::placeholder,
body.is-rtl .drawer-search-form input::placeholder{
  text-align:right;
}

body.is-rtl .drawer-search-form{
  direction:rtl;
}

body.is-rtl .drawer-tab,
body.is-rtl .menuitem,
body.is-rtl .drawer-account-links a,
body.is-rtl .lang-switch a,
body.is-rtl .lang-toggle-btn,
body.is-rtl .desktop-nav-link{
  color:var(--text);
  -webkit-text-fill-color:currentColor;
}

body.is-rtl .badge .dot{
  left:-4px;
  right:auto;
}

body.is-rtl .checkout-select{
  text-align:right;
  text-align-last:right;
  direction:rtl;
  padding-right:18px;
  padding-left:44px;
}

body.is-rtl .checkout-select option{
  text-align:right;
}

body.is-rtl .checkout-saved-address-select{
  padding-right:18px;
  padding-left:52px;
}

body.is-rtl .cart-item-modern,
body.is-rtl .order-item-modern,
body.is-rtl .wishlist-item-modern{
  grid-template-columns:auto minmax(0,1fr) 110px;
}

@media (max-width: 1100px){
  .categories-grid,
  .stats-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .products-grid,
  .features-grid,
  .brands-grid,
  .contact-grid,
  .info-grid,
  .account-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .filter-layout,
  .product-detail-layout,
  .cart-layout-modern,
  .checkout-layout-modern,
  .profile-layout-modern,
  .account-page-layout,
  .hero-layout{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .content{
    padding:16px 16px 32px;
  }

  .form-grid,
  .login-grid-modern,
  .page-grid-2,
  .page-grid-3,
  .categories-grid,
  .home-categories-grid,
  .products-grid,
  .features-grid,
  .brands-grid,
  .contact-grid,
  .info-grid,
  .stats-grid,
  .account-grid,
  .address-cards-grid{
    grid-template-columns:1fr;
  }

  .page-hero,
  .section-card,
  .panel-card,
  .auth-card,
  .form-card,
  .summary-card,
  .sidebar-card{
    padding:18px;
    border-radius:20px;
  }

  .section-title{
    font-size:28px;
  }

  .cart-item-modern,
  .order-item-modern,
  .wishlist-item-modern,
  .cart-item-stack{
    grid-template-columns:1fr;
  }

  .about-split-card{
    grid-template-columns:1fr;
  }

  .account-sidebar-card{
    position:static;
  }

  .thumb-box{
    width:100%;
    height:240px;
  }

  .cart-stack-total{
    text-align:start;
  }
}
