@media(max-width:399px){
  :root{--page-gutter:1rem}
}
*,*::before,*::after{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  overflow-x:clip;
  max-width:100%;
}
body{
  margin:0;
  font-family:"DM Sans","Noto Sans Arabic",system-ui,sans-serif;
  color:var(--text);
  background:var(--background);
  line-height:1.65;
  overflow-x:clip;
  max-width:100%;
}
body.lang-ar{font-family:"Noto Sans Arabic","DM Sans",system-ui,sans-serif}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--page-gutter, 1.5rem);
}
#main-content{max-width:100%;overflow-x:clip}
.skip-link{position:absolute;inset-inline-start:-999px;top:0;background:#000;color:#fff;padding:.5rem 1rem;z-index:1000}
.skip-link:focus{inset-inline-start:1rem;top:1rem}

/* Horizontal card rails */
.h-scroll-edge{
  width:100%;
  max-width:100%;
  overflow-x:clip;
}
@media(min-width:768px){
  .h-scroll-edge{
    margin-inline:calc(50% - 50vw);
    padding-inline:max(1rem, calc((100vw - min(var(--container), 100vw - 2rem)) / 2));
  }
}
@media(max-width:767px){
  .h-scroll{
    margin-inline:0;
    padding-inline:0;
    scroll-padding-inline:0;
  }
}
.h-scroll{
  display:flex;
  align-items:stretch;
  gap:1rem;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior-x:contain;
  padding:.35rem .15rem 1rem;
  margin:0;
  list-style:none;
  scrollbar-width:thin;
  scrollbar-color:rgba(139,94,85,.35) transparent;
  touch-action:pan-x;
}
.h-scroll::-webkit-scrollbar{height:6px}
.h-scroll::-webkit-scrollbar-thumb{background:rgba(139,94,85,.35);border-radius:999px}
.h-scroll > *{
  flex:0 0 auto;
  align-self:stretch;
  height:auto;
  width:min(72vw, 280px);
  max-width:280px;
  scroll-snap-align:start;
  min-width:200px;
}
@media(min-width:600px){
  .h-scroll > *{width:min(46vw, 300px);min-width:240px}
}
@media(min-width:900px){
  .h-scroll > *{width:min(30vw, 260px);min-width:240px}
}
@media(min-width:1100px){
  .h-scroll > *{width:min(24vw, 250px)}
}

/* Benefits: 2x2 grid on mobile so all four cards share equal height */
@media(max-width:767px){
  .benefits-strip.h-scroll{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    grid-auto-rows:1fr;
    align-items:stretch;
    gap:.65rem;
    overflow:visible;
    scroll-snap-type:none;
    padding:0 0 .25rem;
    touch-action:auto;
    scrollbar-width:none;
  }
  .benefits-strip.h-scroll::-webkit-scrollbar{display:none}
  .benefits-strip.h-scroll > .benefit-card{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    flex:none !important;
    height:100%;
    min-height:7.5rem;
  }
  .section-benefits .h-scroll-edge{
    overflow:visible;
  }
}

/* Benefits, services, features: horizontal scroll on phones, grid on laptops */
@media(min-width:768px){
  .benefits-strip.h-scroll,
  .services-grid.h-scroll,
  .products-grid.h-scroll,
  .products-scroll{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    align-items:stretch;
    gap:1rem;
    overflow:visible;
    scroll-snap-type:none;
    padding:.35rem 0 0;
    touch-action:auto;
    scrollbar-width:none;
  }
  .benefits-strip.h-scroll::-webkit-scrollbar,
  .services-grid.h-scroll::-webkit-scrollbar,
  .products-grid.h-scroll::-webkit-scrollbar,
  .products-scroll::-webkit-scrollbar{display:none}
  .benefits-strip.h-scroll > *,
  .services-grid.h-scroll > *,
  .products-grid.h-scroll > .product-card,
  .products-scroll > .product-card{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    flex:none !important;
    scroll-snap-align:none;
  }
  .section-benefits .h-scroll-edge,
  #services .h-scroll-edge,
  #products .h-scroll-edge{
    margin-inline:0;
    padding-inline:0;
    overflow:visible;
  }
  .feature-list.h-scroll{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    align-items:stretch;
    gap:1rem;
    overflow:visible;
    scroll-snap-type:none;
    padding-inline-end:0;
    touch-action:auto;
  }
  .feature-list.h-scroll > li{
    width:auto !important;
    min-width:0 !important;
    max-width:none !important;
    flex:none !important;
  }
}
@media(min-width:1024px){
  .benefits-strip.h-scroll,
  .services-grid.h-scroll{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }
  .products-grid.h-scroll,
  .products-scroll{
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  }
  .feature-list.h-scroll{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}
@media(min-width:768px) and (max-width:1023px){
  .products-grid.h-scroll,
  .products-scroll{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  }
}

.site-header{
  position:sticky;top:0;z-index:40;
  background:rgba(250,247,245,.96);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(232,221,215,.8);
  max-width:100%;
  overflow-x:clip;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.5rem;
  min-height:58px;
  width:100%;
}
@media(min-width:600px){.header-inner{gap:.85rem;min-height:68px}}
.brand{display:flex;align-items:center;gap:.4rem;font-weight:700;min-width:0;flex:1 1 auto;max-width:calc(100% - 150px)}
.brand-logo{width:32px;height:32px;object-fit:contain;flex-shrink:0}
@media(min-width:600px){.brand{max-width:none}.brand-logo{width:40px;height:40px}}
.brand-name{
  font-family:"Fraunces",Georgia,serif;
  font-size:1rem;
  letter-spacing:.01em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media(min-width:480px){.brand-name{font-size:1.15rem}}
.nav-desktop{display:none;gap:1.35rem;align-items:center;flex-shrink:0}
.nav-desktop a{color:var(--muted);font-weight:500;font-size:.95rem}
.nav-desktop a:hover,.nav-desktop a:focus{color:var(--text)}
.header-actions{
  display:flex;
  align-items:center;
  gap:.5rem;
  flex-shrink:0;
  margin-inline-start:auto;
}
@media(min-width:600px){.header-actions{gap:.65rem}}
.lang-switch{display:inline-flex;border:1px solid var(--border);border-radius:999px;overflow:hidden;background:#fff;flex-shrink:0}
.lang-btn{padding:.32rem .5rem;font-size:.7rem;font-weight:700;color:var(--muted);line-height:1.2}
@media(min-width:600px){.lang-btn{padding:.35rem .7rem;font-size:.78rem}}
.lang-btn.active{background:var(--text);color:#fff}
.cart-trigger{
  position:relative;width:36px;height:36px;border-radius:50%;border:1px solid var(--border);
  background:#fff;cursor:pointer;display:grid;place-items:center;color:var(--text);flex-shrink:0
}
@media(min-width:600px){.cart-trigger{width:42px;height:42px}}
.cart-count{
  position:absolute;top:-4px;inset-inline-end:-4px;min-width:18px;height:18px;border-radius:999px;
  background:var(--secondary);color:#fff;font-size:.68rem;display:grid;place-items:center;padding:0 4px
}
.header-cta{display:none !important}
.nav-toggle{
  width:36px;height:36px;border:1px solid var(--border);border-radius:12px;background:#fff;
  display:grid;gap:4px;place-content:center;cursor:pointer;flex-shrink:0;padding:0
}
@media(min-width:600px){.nav-toggle{width:42px;height:42px}}
.nav-toggle span{display:block;width:16px;height:2px;background:var(--text)}
.mobile-nav{display:grid;gap:.35rem;padding:.75rem 1rem 1rem;border-top:1px solid var(--border);background:#fff}
.mobile-nav[hidden]{display:none!important}
.mobile-nav a{padding:.75rem .5rem;border-radius:10px;font-weight:500}
.mobile-nav a:hover{background:#f4ebe6}
.mobile-lang{margin:.5rem 0;width:fit-content}
@media(min-width:960px){
  .nav-desktop{display:flex}
  .nav-toggle,.mobile-nav{display:none!important}
  .header-cta{display:inline-flex !important}
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border:none;cursor:pointer;border-radius:999px;padding:.85rem 1.35rem;font-weight:600;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease
}
.btn:hover{transform:translateY(-1px)}
.btn:focus-visible{outline:2px solid var(--primary);outline-offset:2px}
.btn-primary{background:var(--secondary);color:#fff;box-shadow:0 8px 22px rgba(139,94,85,.22)}
.btn-primary:hover{background:#7a5149}
.btn-outline{background:#fff;border:1.5px solid var(--secondary);color:var(--secondary)}
.btn-outline:hover{background:rgba(139,94,85,.06);border-color:var(--secondary);color:var(--secondary)}
.btn-sm{padding:.55rem 1rem;font-size:.9rem}
.btn-block{width:100%}
.btn:disabled{opacity:.55;cursor:not-allowed;transform:none}

.section{padding:3rem 0;max-width:100%;overflow-x:clip}
@media(min-width:768px){.section{padding:4rem 0}}
@media(min-width:1100px){.section{padding:4.5rem 0}}
.section-head{max-width:640px;margin:0 auto 1.75rem;text-align:center;padding-inline:.25rem}
@media(min-width:768px){.section-head{margin-bottom:2.5rem}}
.section-eyebrow{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--secondary);margin-bottom:.6rem}
.section-title{margin:0 0 .75rem;font-family:"Fraunces",Georgia,serif;font-size:clamp(1.55rem,4.5vw,2.5rem);line-height:1.2;font-weight:600}
.section-desc{margin:0;color:var(--muted);font-size:clamp(.95rem,2.8vw,1.05rem)}

.hero{
  padding:1.75rem 0 1.25rem;
  max-width:100%;
  overflow-x:clip;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(212,165,154,.18), transparent 45%),
    radial-gradient(ellipse at 100% 20%, rgba(184,137,106,.12), transparent 40%),
    linear-gradient(180deg, #fff 0%, var(--background) 100%);
}
.hero-grid{
  display:grid;
  gap:1.75rem;
  align-items:center;
  min-width:0;
  width:100%;
}
.hero-grid > *{min-width:0;max-width:100%}
@media(min-width:768px){
  .hero{padding:3rem 0 2rem}
  .hero-grid{gap:2.25rem}
}
@media(min-width:960px){
  .hero{padding:4.5rem 0 3rem}
  .hero-grid{grid-template-columns:1.05fr .95fr;gap:3rem}
}
.hero-copy{min-width:0;max-width:100%}
.hero-copy h1{
  margin:0 0 .85rem;font-family:"Fraunces",Georgia,serif;
  font-size:clamp(1.65rem,7.5vw,3.5rem);line-height:1.15;font-weight:600;letter-spacing:-.02em;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.hero-copy p{
  margin:0 0 1.25rem;color:var(--muted);font-size:clamp(.92rem,3.2vw,1.08rem);max-width:34rem;
  overflow-wrap:anywhere;
}
.hero-actions{
  display:flex;flex-direction:column;gap:.65rem;margin-bottom:1.25rem;
  width:100%;max-width:100%;min-width:0;
}
@media(min-width:480px){.hero-actions{flex-direction:row;flex-wrap:wrap}}
.hero-actions .btn{
  width:100%;max-width:100%;justify-content:center;box-sizing:border-box;text-align:center;
}
@media(min-width:480px){.hero-actions .btn{width:auto;min-width:150px;max-width:100%}}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:.65rem;
  width:100%;
  min-width:0;
  max-width:100%;
}
.hero-stat{
  padding:.85rem .9rem;
  background:rgba(255,255,255,.92);
  border:1px solid var(--border);
  border-radius:var(--radius-sm);
  min-width:0;
}
.hero-stat:last-child{grid-column:1 / -1}
@media(min-width:520px){
  .hero-stats{
    display:flex;
    gap:.6rem;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    padding:.1rem 0 .25rem;
  }
  .hero-stats::-webkit-scrollbar{display:none}
  .hero-stat{
    flex:0 0 auto;
    width:140px;
  }
  .hero-stat:last-child{grid-column:auto}
}
@media(min-width:700px){
  .hero-stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));overflow:visible;max-width:420px}
  .hero-stat{width:auto}
  .hero-stat:last-child{grid-column:auto}
}
.hero-stat strong{display:block;font-size:1.15rem;color:var(--secondary);line-height:1.1}
.hero-stat span{font-size:.78rem;color:var(--muted);line-height:1.35}
.hero-visual{
  position:relative;border-radius:20px;overflow:hidden;min-height:150px;
  width:100%;max-width:100%;min-width:0;
  background:linear-gradient(145deg,#f3e4dc,#e8d2c6 40%,#d4b09a);
  box-shadow:var(--shadow)
}
@media(min-width:600px){.hero-visual{min-height:260px;border-radius:28px}}
@media(min-width:960px){.hero-visual{min-height:340px}}
.hero-visual-inner{position:absolute;inset:0;display:grid;place-items:center;align-content:center;padding:1rem;text-align:center;color:#fff}
.hero-visual-inner img{
  width:min(88px,34%);
  margin:0 auto .5rem;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  box-shadow:0 10px 22px rgba(0,0,0,.14);
}
@media(min-width:600px){.hero-visual-inner img{width:min(120px,40%);margin:0 auto .75rem}}
.hero-visual-inner h2{margin:0;font-family:"Fraunces",serif;font-size:clamp(1.2rem,4vw,1.8rem)}
.hero-visual-inner p{margin:.3rem 0 0;opacity:.92;font-size:.75rem;letter-spacing:.08em}
@media(max-width:479px){
  .hero-visual:not(.hero-visual--photo) .hero-visual-inner p{display:none}
}
.hero-visual--photo{
  background-image:linear-gradient(180deg, rgba(30,22,20,.08), rgba(30,22,20,.45)), var(--hero-photo);
  background-size:cover;
  background-position:center;
}
.hero-visual--photo .hero-visual-inner{
  background:linear-gradient(180deg, transparent 35%, rgba(30,22,20,.72));
  justify-items:start;
  align-content:end;
  text-align:start;
  padding:1.25rem;
}
.hero-visual--photo .hero-visual-inner h2{font-size:clamp(1.35rem,4.5vw,2rem)}
.hero-visual--photo .hero-visual-inner p{display:block;font-size:.78rem;opacity:.95}
@media(min-width:600px){
  .hero-visual--photo .hero-visual-inner{padding:1.75rem}
}

.benefits-strip{margin-top:-.25rem;position:relative;z-index:2}
.benefit-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.15rem;box-shadow:var(--shadow-soft);display:flex;gap:.9rem;align-items:flex-start;
  transition:transform .2s ease, box-shadow .2s ease;height:100%;min-height:100%;box-sizing:border-box
}
@media(max-width:767px){
  .benefit-card{
    flex-direction:column;
    gap:.55rem;
    padding:.85rem .8rem;
  }
  .benefit-icon{width:38px;height:38px;border-radius:12px}
}
.benefit-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.benefit-icon{width:44px;height:44px;border-radius:14px;flex-shrink:0;display:grid;place-items:center;background:#f7efe9;color:var(--secondary)}
.benefit-icon svg,.benefit-icon img{width:24px;height:24px}
.benefit-card > div:not(.benefit-icon){flex:1;min-width:0}
.benefit-card h3{margin:0 0 .25rem;font-size:.98rem}
.benefit-card p{margin:0;color:var(--muted);font-size:.88rem}

.services-grid{/* uses .h-scroll */}
.service-card{
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:1.35rem;box-shadow:var(--shadow-soft);height:100%;min-height:100%;box-sizing:border-box;
  transition:transform .2s ease, box-shadow .2s ease;display:flex;flex-direction:column
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.service-icon{
  width:52px;height:52px;border-radius:16px;display:grid;place-items:center;
  background:linear-gradient(145deg,#f8efe9,#efe0d6);color:var(--secondary);margin-bottom:1rem
}
.service-icon svg,.service-icon img{width:28px;height:28px}
.service-card h3{margin:0 0 .5rem;font-size:1.08rem}
.service-card p{margin:0 0 1rem;color:var(--muted);font-size:.92rem;flex:1}
.service-link{font-weight:600;color:var(--secondary);font-size:.92rem}

.about-grid{display:grid;gap:1.5rem;align-items:center;min-width:0;width:100%}
.about-grid > *{min-width:0;max-width:100%}
@media(min-width:900px){.about-grid{grid-template-columns:1fr 1fr;gap:3rem}}
.about-panel{background:#fff;border:1px solid var(--border);border-radius:20px;padding:1.25rem 0 1.25rem 1.25rem;box-shadow:var(--shadow-soft);overflow:hidden;max-width:100%}
@media(min-width:600px){.about-panel{border-radius:24px;padding:1.75rem 0 1.75rem 1.75rem}}
[dir="rtl"] .about-panel{padding:1.25rem 1.25rem 1.25rem 0}
@media(min-width:600px){[dir="rtl"] .about-panel{padding:1.75rem 1.75rem 1.75rem 0}}
.about-panel > h3{padding-inline-end:1.25rem}
@media(min-width:600px){.about-panel > h3{padding-inline-end:1.75rem}}
.feature-list.h-scroll{
  margin-top:.75rem;
  padding-inline-end:1.25rem;
}
@media(min-width:600px){.feature-list.h-scroll{padding-inline-end:1.75rem}}
.feature-card,
.feature-list.h-scroll > li{
  display:flex !important;
  flex-direction:column;
  gap:.75rem;
  padding:1.1rem;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:#faf6f3;
  box-sizing:border-box;
  height:100%;
  min-height:100%;
  width:min(72vw, 240px) !important;
  min-width:200px !important;
  max-width:240px !important;
  flex:0 0 auto !important;
}
.feature-list .icon{width:40px;height:40px;border-radius:12px;background:#fff;color:var(--secondary);display:grid;place-items:center;flex-shrink:0;border:1px solid var(--border)}
.feature-list .icon svg{width:22px;height:22px}
.feature-list h4{margin:0 0 .2rem;font-size:.98rem}
.feature-list p{margin:0;color:var(--muted);font-size:.88rem;flex:1}

.carousel{position:relative;border-radius:18px;overflow:hidden;background:#2a211f;color:#fff;min-height:280px;box-shadow:var(--shadow)}
@media(min-width:600px){.carousel{border-radius:24px;min-height:340px}}
@media(min-width:900px){.carousel{min-height:360px}}
.carousel-track{display:flex;transition:transform .45s ease;will-change:transform}
.carousel-slide{min-width:100%;position:relative;min-height:280px;display:grid;align-items:end}
@media(min-width:600px){.carousel-slide{min-height:340px}}
@media(min-width:900px){.carousel-slide{min-height:360px}}
.carousel-slide-bg{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(30,22,20,.2), rgba(30,22,20,.75)), linear-gradient(135deg,#c9a27a,#8b5e55);
  background-size:cover;background-position:center
}
.carousel-slide-content{position:relative;z-index:1;padding:1.35rem;max-width:560px}
@media(min-width:600px){.carousel-slide-content{padding:2rem}}
.carousel-slide-content h3{margin:0 0 .6rem;font-family:"Fraunces",serif;font-size:clamp(1.35rem,4vw,2.2rem)}
.carousel-slide-content p{margin:0 0 1.1rem;opacity:.92;font-size:clamp(.9rem,2.6vw,1rem)}
.carousel-nav{position:absolute;inset-block:0;display:flex;align-items:center;justify-content:space-between;width:100%;padding:0 .5rem;pointer-events:none;z-index:2}
.carousel-btn{pointer-events:auto;width:38px;height:38px;border-radius:50%;border:none;background:rgba(255,255,255,.92);color:var(--text);cursor:pointer;display:grid;place-items:center;box-shadow:0 4px 14px rgba(0,0,0,.12)}
@media(min-width:600px){.carousel-btn{width:42px;height:42px}}
.carousel-dots{display:flex;justify-content:center;gap:.45rem;margin-top:1rem;flex-wrap:wrap}
.carousel-dot{width:8px;height:8px;border-radius:999px;border:none;background:#d7c7bf;cursor:pointer;padding:0}
.carousel-dot.active{width:22px;background:var(--secondary)}

.category-chips{
  display:flex;flex-wrap:nowrap;gap:.5rem;justify-content:flex-start;margin-bottom:1.25rem;
  overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;padding-bottom:.25rem
}
.category-chips::-webkit-scrollbar{display:none}
.chip{
  border:1px solid var(--border);background:#fff;color:var(--muted);
  padding:.55rem 1rem;border-radius:999px;font-size:.88rem;cursor:pointer;transition:.18s ease;
  white-space:nowrap;flex:0 0 auto
}
.chip.active,.chip:hover{background:var(--secondary);color:#fff;border-color:transparent}

/* Products page: 2-column grid */
.products-grid:not(.h-scroll){
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:.85rem;
}
@media(min-width:600px){.products-grid:not(.h-scroll){gap:1.15rem}}

/* Homepage products: horizontal scroll */
.products-grid.h-scroll,
.products-scroll{
  display:flex !important;
  grid-template-columns:none !important;
}
.products-grid.h-scroll > .product-card,
.products-scroll > .product-card{
  width:min(68vw, 210px) !important;
  min-width:170px !important;
  max-width:210px !important;
  flex:0 0 auto !important;
}
@media(min-width:600px){
  .products-grid.h-scroll > .product-card,
  .products-scroll > .product-card{
    width:min(40vw, 230px) !important;
    min-width:200px !important;
    max-width:230px !important;
  }
}

.product-card{
  background:#fff;border:1px solid var(--border);border-radius:14px;overflow:hidden;
  box-shadow:var(--shadow-soft);cursor:pointer;transition:transform .2s ease, box-shadow .2s ease;
  min-width:0;height:100%;min-height:100%;box-sizing:border-box;display:flex;flex-direction:column
}
.products-grid.h-scroll > .empty-state,
.products-scroll > .empty-state{grid-column:1 / -1;width:100%}
@media(min-width:600px){.product-card{border-radius:var(--radius)}}
.product-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.product-image{aspect-ratio:1;background:#f3e8e2;overflow:hidden;flex-shrink:0}
.product-image img{width:100%;height:100%;object-fit:cover}
.product-body{padding:.75rem;flex:1;display:flex;flex-direction:column}
@media(min-width:600px){.product-body{padding:1rem}}
.product-body h3{margin:0 0 .4rem;font-size:clamp(.82rem,2.8vw,.98rem);min-height:2.4em;line-height:1.3}
.product-price{display:flex;gap:.4rem;align-items:baseline;flex-wrap:wrap;margin-top:auto}
.price-now{color:var(--secondary);font-weight:700;font-size:.95rem}
.price-old{color:#a89894;text-decoration:line-through;font-size:.8rem}
.badge-out{display:inline-block;margin-top:.35rem;font-size:.7rem;color:#a94442;background:#f8e6e6;padding:2px 8px;border-radius:999px}

.cta-band{background:linear-gradient(135deg,#3a2c29,#8b5e55);color:#fff;border-radius:20px;padding:1.75rem 1.15rem;text-align:center;box-shadow:var(--shadow)}
@media(min-width:600px){.cta-band{border-radius:28px;padding:2.5rem 2rem}}
.cta-band h2{margin:0 0 .75rem;font-family:"Fraunces",serif;font-size:clamp(1.4rem,4vw,2.3rem)}
.cta-band p{margin:0 auto 1.25rem;max-width:520px;opacity:.9;font-size:clamp(.92rem,2.6vw,1rem)}
.cta-band .btn-primary{background:#fff;color:var(--secondary)}

.site-footer{
  position:relative;
  width:100%;
  max-width:100%;
  background:linear-gradient(180deg, #2a211f 0%, #1a1412 100%);
  color:#f5ebe6;
  padding:0 0 1.25rem;
  margin-top:2rem;
  overflow-x:clip;
}
.footer-accent{
  height:4px;
  width:100%;
  background:linear-gradient(90deg, #c9a27a, #d4a59a, #8b5e55, #c9a27a);
  background-size:200% 100%;
}
@media(min-width:800px){
  .site-footer{padding-bottom:1.5rem;margin-top:2.5rem}
}
.footer-grid{
  display:grid;
  gap:1.75rem;
  padding:2rem 0 1.5rem;
  width:100%;
  min-width:0;
}
.footer-grid > *{min-width:0;max-width:100%}
@media(min-width:640px){
  .footer-grid{
    grid-template-columns:1.2fr 1fr;
    gap:2rem 2.5rem;
    padding:2.5rem 0 1.75rem;
  }
}
@media(min-width:960px){
  .footer-grid{
    grid-template-columns:1.35fr .85fr 1fr;
    gap:2.5rem;
    padding:3rem 0 2rem;
  }
}
.footer-brand{min-width:0}
.footer-brand-link{
  display:flex;
  align-items:center;
  gap:.75rem;
  margin-bottom:.85rem;
  color:#fff;
  max-width:100%;
}
.footer-brand-link:hover{color:#f5ebe6;opacity:.92}
.footer-logo-wrap{
  width:52px;height:52px;border-radius:50%;
  background:linear-gradient(145deg,#fff8f4,#f3e4dc);
  border:1px solid rgba(255,255,255,.12);
  display:grid;place-items:center;flex-shrink:0;
  box-shadow:0 8px 24px rgba(0,0,0,.2);
}
.footer-logo{width:34px;height:34px;object-fit:contain;margin:0}
.footer-brand-name{
  font-family:"Fraunces",Georgia,serif;
  font-size:1.35rem;
  font-weight:600;
  letter-spacing:.01em;
  min-width:0;
}
.footer-tagline{
  margin:0 0 .65rem;
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#d4a59a;
  overflow-wrap:anywhere;
}
.footer-desc{
  margin:0;
  color:#cbb9b2;
  font-size:.92rem;
  line-height:1.65;
  max-width:28rem;
  overflow-wrap:anywhere;
}
.footer-col{min-width:0;width:100%}
.footer-col h4{
  margin:0 0 1rem;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#fff;
}
.footer-links{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:.55rem;
}
.footer-links a{
  color:#cbb9b2;
  font-size:.92rem;
  transition:color .18s ease, transform .18s ease;
  display:inline-block;
}
.footer-links a:hover{color:#fff;transform:translateX(2px)}
[dir="rtl"] .footer-links a:hover{transform:translateX(-2px)}
.footer-contact-list{
  list-style:none;
  margin:0 0 1.15rem;
  padding:0;
  display:grid;
  gap:.65rem;
  width:100%;
}
.footer-contact-list li{width:100%;min-width:0}
.footer-contact-list a{
  display:flex;
  align-items:flex-start;
  gap:.75rem;
  width:100%;
  max-width:100%;
  box-sizing:border-box;
  padding:.75rem .85rem;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f5ebe6;
  transition:background .18s ease, border-color .18s ease;
  min-width:0;
}
.footer-contact-list a:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}
.footer-contact-list a > span:last-child{
  flex:1;
  min-width:0;
}
.footer-contact-icon{
  width:36px;height:36px;border-radius:10px;flex-shrink:0;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  color:#f5ebe6;
}
.footer-contact-icon svg{width:18px;height:18px}
.footer-contact-list strong{
  display:block;
  font-size:.82rem;
  font-weight:600;
  color:#fff;
  margin-bottom:.1rem;
}
.footer-contact-list span span{
  display:block;
  font-size:.88rem;
  color:#cbb9b2;
  line-height:1.4;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.footer-social{display:flex;gap:.55rem;flex-wrap:wrap}
.footer-social-btn{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
  color:#f5ebe6;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}
.footer-social-btn svg{width:18px;height:18px}
.footer-social-btn:hover{transform:translateY(-2px);color:#fff}
.footer-social-wa:hover{background:#25D366;border-color:#25D366}
.footer-social-ig:hover{background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af);border-color:transparent}
.footer-bottom{
  width:100%;
  padding-top:1.15rem;
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
}
.footer-bottom p{
  margin:0;
  color:#9a8880;
  font-size:.82rem;
  letter-spacing:.02em;
  line-height:1.5;
  overflow-wrap:anywhere;
  padding-inline:.15rem;
}
@media(max-width:639px){
  .site-footer .container{
    width:100%;
    max-width:100%;
    padding-inline:var(--page-gutter, 1.5rem);
  }
  .footer-grid{
    gap:1.35rem;
    padding:1.5rem 0 1rem;
  }
  .footer-brand-link{
    gap:.65rem;
    margin-bottom:.7rem;
  }
  .footer-logo-wrap{width:46px;height:46px}
  .footer-logo{width:30px;height:30px}
  .footer-brand-name{font-size:1.15rem}
  .footer-tagline{
    font-size:.62rem;
    letter-spacing:.1em;
    margin-bottom:.5rem;
  }
  .footer-desc{
    font-size:.86rem;
    line-height:1.55;
    max-width:100%;
  }
  .footer-col h4{margin-bottom:.75rem}
  .footer-links{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:.4rem .85rem;
  }
  .footer-links a{
    font-size:.88rem;
    display:block;
    padding:.15rem 0;
  }
  .footer-contact-col .footer-social{display:none}
  .footer-contact-list{
    margin-bottom:0;
    gap:.55rem;
  }
  .footer-contact-list a{
    padding:.65rem .7rem;
    gap:.65rem;
  }
  .footer-contact-icon{width:34px;height:34px;border-radius:9px}
  .footer-bottom{padding-top:1rem}
  .footer-bottom p{font-size:.78rem}
}
@media(min-width:400px) and (max-width:639px){
  .footer-grid{
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:1.25rem 1.15rem;
  }
  .footer-brand{grid-column:1 / -1}
  .footer-links{
    grid-template-columns:1fr;
    gap:.4rem;
  }
}
@media(min-width:640px){
  .footer-contact-list{margin-bottom:1rem}
}

.cart-overlay,.modal-overlay{position:fixed;inset:0;background:rgba(30,22,20,.4);opacity:0;visibility:hidden;transition:.25s ease;z-index:50}
.cart-overlay.open,.modal-overlay.open{opacity:1;visibility:visible}
.cart-drawer{position:fixed;inset:0;pointer-events:none;z-index:60}
.cart-drawer-panel{
  position:absolute;top:0;bottom:0;inset-inline-end:0;width:min(400px,92vw);
  background:#fff;transform:translateX(105%);transition:transform .28s ease;
  display:flex;flex-direction:column;box-shadow:var(--shadow);pointer-events:auto
}
[dir="rtl"] .cart-drawer-panel{transform:translateX(-105%)}
.cart-drawer.open .cart-drawer-panel{transform:translateX(0)}
.cart-drawer-head,.cart-drawer-foot{padding:1rem 1.15rem;border-bottom:1px solid var(--border)}
.cart-drawer-foot{border-bottom:none;border-top:1px solid var(--border);margin-top:auto}
.cart-drawer-head{display:flex;justify-content:space-between;align-items:center}
.cart-drawer-head h3{margin:0;font-family:"Fraunces",serif}
.cart-drawer-body{padding:1rem;overflow:auto;flex:1}
.cart-item{display:grid;grid-template-columns:64px 1fr auto;gap:.75rem;padding:.75rem 0;border-bottom:1px solid var(--border)}
.cart-item img{width:64px;height:64px;object-fit:cover;border-radius:12px;background:#f3e8e2}
.cart-item h4{margin:0 0 .25rem;font-size:.92rem}
.qty-control{display:inline-flex;align-items:center;gap:.5rem;margin-top:.4rem}
.qty-control button{width:28px;height:28px;border-radius:8px;border:1px solid var(--border);background:#fff;cursor:pointer}
.cart-remove{border:none;background:transparent;color:#a94442;cursor:pointer;font-size:.85rem}
.cart-empty{text-align:center;color:var(--muted);padding:2.5rem 1rem}
.cart-total-row{display:flex;justify-content:space-between;margin-bottom:.85rem}
.icon-close{border:none;background:transparent;font-size:1.5rem;cursor:pointer;color:var(--muted);line-height:1}
.modal{position:fixed;inset:0;z-index:70;display:grid;place-items:center;padding:1rem;opacity:0;visibility:hidden;transition:.25s ease}
.modal.open{opacity:1;visibility:visible}
.modal-dialog{position:relative;width:min(540px,100%);max-height:90vh;overflow:auto;background:#fff;border-radius:20px;padding:1.25rem;box-shadow:var(--shadow);z-index:71}
.modal-close{position:absolute;top:.5rem;inset-inline-end:.75rem;z-index:2}
.product-detail-image{border-radius:16px;overflow:hidden;aspect-ratio:1;background:#f3e8e2;margin-bottom:1rem}
.product-detail-image img{width:100%;height:100%;object-fit:cover}
.product-detail h2{margin:0 0 .5rem;font-family:"Fraunces",serif;font-size:1.6rem}
.stock-ok{color:#2e7d4f;font-size:.9rem}
.stock-out{color:#a94442;font-size:.9rem}
.page-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:1.25rem;box-shadow:var(--shadow-soft);margin:1rem 0 1.5rem}
@media(min-width:600px){.page-card{padding:1.35rem}}
.page-heading{text-align:center;padding:2rem 0 1rem}
.page-heading h1{margin:0;font-family:"Fraunces",serif;font-size:2.2rem}
.form-group{margin-bottom:1rem}
.form-group label{display:block;margin-bottom:.4rem;font-weight:600}
.form-group input,.form-group textarea,.form-group select{width:100%;border:1px solid var(--border);background:#fff;border-radius:12px;padding:.85rem 1rem;outline:none}
.form-group input:focus,.form-group textarea:focus{border-color:var(--primary);box-shadow:0 0 0 3px rgba(184,137,106,.18)}
.order-summary{background:#faf6f3;border-radius:14px;padding:1rem;border:1px dashed var(--border);margin-bottom:1rem}
.order-summary h3{margin:0 0 .75rem;text-align:center;font-family:"Fraunces",serif}
.summary-line{display:flex;justify-content:space-between;gap:.75rem;padding:.4rem 0;font-size:.95rem}
.summary-total{border-top:1px solid var(--border);margin-top:.5rem;padding-top:.7rem;font-weight:700}
.empty-state{text-align:center;padding:2.5rem 1rem;color:var(--muted)}
.toast{position:fixed;bottom:1.4rem;left:50%;transform:translateX(-50%) translateY(16px);background:#1f1a18;color:#fff;padding:.8rem 1.15rem;border-radius:12px;opacity:0;visibility:hidden;transition:.25s ease;z-index:100;max-width:90vw;text-align:center}
.toast.show{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.skeleton{background:linear-gradient(90deg,#eee,#f7f7f7,#eee);background-size:200% 100%;animation:shimmer 1.2s infinite;border-radius:12px;min-height:120px}
@keyframes shimmer{0%{background-position:200% 0}100%{background-position:-200% 0}}
@keyframes fadeUp{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
.reveal{animation:fadeUp .55s ease both}
