*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
:root{
  --gold:#b8965a;
  --gold-light:#d4b896;
  --gold-pale:#f5ede0;
  --cream:#faf8f5;
  --cream-dark:#f2ede6;
  --charcoal:#1c1c1c;
  --charcoal-soft:#2d2d2d;
  --text:#1c1c1c;
  --text2:#5a5a5a;
  --text3:#9a9a9a;
  --border:#e8e2da;
  --border-light:#f0ebe4;
}
body{font-family:'Raleway',sans-serif;background:var(--cream);color:var(--text);overflow-x:hidden}

/* ANNOUNCE */
.bar-black{background:var(--charcoal);color:var(--gold);text-align:center;padding:.55rem 1rem;font-size:.62rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase}
.bar-white{background:var(--gold-pale);color:var(--charcoal);text-align:center;padding:.45rem 1rem;font-size:.58rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase;border-bottom:1px solid var(--border)}

/* HEADER */
.site-header{position:sticky;top:0;z-index:200;background:var(--cream);border-bottom:1px solid var(--border)}
.header-inner{padding:0 1.2rem;height:68px;display:flex;align-items:center;justify-content:space-between}
.header-left{display:flex;align-items:center;gap:.9rem}
.header-center{flex:1;text-align:center}
.header-right{display:flex;align-items:center}
.logo-wrap img{height:36px;object-fit:contain}
.logo-wrap{display:flex;flex-direction:column;line-height:1.15}
.logo-main{font-family:'Playfair Display',serif;font-size:1.45rem;font-weight:700;letter-spacing:.06em;color:var(--charcoal);text-transform:uppercase}
.logo-sub{font-family:'Raleway',sans-serif;font-size:.62rem;font-weight:600;letter-spacing:.28em;text-transform:uppercase;color:#aaa}
.header-tagline{font-size:.6rem;letter-spacing:.15em;text-transform:uppercase;color:#aaa}
.header-right{display:flex;align-items:center;gap:.6rem}
.wa-header-btn{display:flex;align-items:center;gap:.4rem;background:#25D366;color:#fff;text-decoration:none;font-size:.65rem;font-weight:700;letter-spacing:.06em;padding:.45rem .9rem;border-radius:2px;transition:opacity .2s;white-space:nowrap}
.wa-header-btn:hover{opacity:.85}
.mobile-menu-btn{background:none;border:none;padding:.4rem .3rem;cursor:pointer;display:flex;flex-direction:column;gap:5px;justify-content:center;width:32px;height:36px}
.mobile-menu-btn span{display:block;width:22px;height:1.5px;background:#111;transition:all .3s}

/* ===== HERO SLIDER ===== */
.hero-slider{position:relative;height:100vw;max-height:92vh;min-height:320px;overflow:hidden}
.slide{position:absolute;inset:0;opacity:0;transition:opacity .8s ease}
.slide.active{opacity:1}
.slide-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center top;
  background-color:#1a1a1a;
  transition:transform 8s ease
}
.slide.active .slide-bg{transform:scale(1.04)}
.slide-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.75) 0%,rgba(0,0,0,.3) 50%,rgba(0,0,0,.1) 100%)}
.slide-content{
  position:absolute;
  bottom:0;left:0;right:0;
  z-index:2;
  padding:2rem 1.5rem 4rem;
}
.slide-label{font-size:.62rem;letter-spacing:.28em;text-transform:uppercase;color:#c9a96e;margin-bottom:.6rem;opacity:0}
.slide.active .slide-label{animation:fadeUp .6s .2s forwards}
.slide-title{font-family:'Playfair Display',serif;font-size:clamp(2rem,8vw,3.5rem);font-weight:400;color:#fff;line-height:1.1;margin-bottom:.6rem;opacity:0}
.slide.active .slide-title{animation:fadeUp .6s .35s forwards}
.slide-title em{color:#c9a96e;font-style:italic}
.slide-sub{font-size:.78rem;color:rgba(255,255,255,.65);font-weight:300;line-height:1.6;margin-bottom:1.2rem;opacity:0}
.slide.active .slide-sub{animation:fadeUp .6s .5s forwards}
.slide-btn{background:transparent;border:1px solid #c9a96e;color:#c9a96e;font-family:'Raleway',sans-serif;font-size:.65rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;padding:.75rem 1.8rem;cursor:pointer;transition:all .3s;opacity:0}
.slide.active .slide-btn{animation:fadeUp .6s .65s forwards}
.slide-btn:hover{background:#c9a96e;color:#111}
@keyframes fadeUp{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}}

.slider-arrow{position:absolute;top:40%;transform:translateY(-50%);z-index:10;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);color:#fff;width:36px;height:36px;font-size:1.4rem;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .25s;backdrop-filter:blur(4px)}
.slider-arrow:hover{background:rgba(255,255,255,.3)}
.slider-prev{left:.8rem}
.slider-next{right:.8rem}
.slider-dots{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);display:flex;gap:.5rem;z-index:10}
.dot{width:7px;height:7px;border-radius:50%;border:1px solid rgba(255,255,255,.5);background:transparent;cursor:pointer;transition:all .3s;padding:0}
.dot.active{background:#fff;border-color:#fff;width:20px;border-radius:4px}
.slider-scroll-down{position:absolute;bottom:1.2rem;right:1rem;z-index:10;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);color:#fff;width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;animation:bounce 2s infinite;backdrop-filter:blur(4px)}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(4px)}}

/* ===== PAGE LAYOUT ===== */
.page-layout{display:block;min-height:80vh;background:var(--cream)}

/* SIDEBAR — hidden on mobile by default */
.sidebar{
  display:none !important;
  position:fixed;
  top:72px;left:0;bottom:0;
  z-index:150;
  width:220px;
  background:var(--cream);
  border-right:1px solid var(--border);
  overflow-y:auto;
  box-shadow:4px 0 20px rgba(0,0,0,.08);
  transform:translateX(-100%);
  transition:transform .3s ease;
}
.sidebar.open{
  display:block !important;
  transform:translateX(0);
}
.sidebar-inner{padding:1.5rem 0}
.sidebar-heading{font-size:.58rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#bbb;padding:0 1.2rem;margin-bottom:.7rem}
.sidebar-menu{list-style:none}
.sidebar-btn{width:100%;background:none;border:none;display:flex;align-items:center;justify-content:space-between;padding:.7rem 1.2rem;font-family:'Raleway',sans-serif;font-size:.82rem;font-weight:500;color:#666;cursor:pointer;transition:all .18s;text-align:left;border-left:3px solid transparent}
.sidebar-btn:hover{color:#111;background:#f9f9f9;border-left-color:#ddd}
.sidebar-btn.active{color:#111;font-weight:700;background:#f4f3f1;border-left-color:#111}
.sidebar-count{background:#f0f0f0;color:#999;font-size:.6rem;font-weight:600;padding:.12rem .4rem;border-radius:10px;min-width:18px;text-align:center}
.sidebar-btn.active .sidebar-count{background:#111;color:#fff}
.sidebar-divider{border:none;border-top:1px solid var(--border);margin:1rem 0}
.sidebar-wa-box{padding:0 1.2rem}
.sidebar-wa-title{font-size:.72rem;font-weight:700;color:#111;margin-bottom:.25rem}
.sidebar-wa-sub{font-size:.65rem;color:#bbb;line-height:1.5;margin-bottom:.7rem}
.sidebar-wa-btn{display:flex;align-items:center;gap:.4rem;background:#25D366;color:#fff;text-decoration:none;font-size:.65rem;font-weight:700;padding:.55rem .9rem;border-radius:2px;transition:opacity .2s;justify-content:center}
.sidebar-wa-btn:hover{opacity:.85}

/* SIDEBAR BACKDROP */
.sidebar-backdrop{display:none;position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:140}
.sidebar-backdrop.open{display:block}

/* MAIN CONTENT */
.main-content{width:100%;padding:1.2rem 1rem;min-width:0}
.content-header{display:flex;align-items:baseline;gap:.8rem;margin-bottom:1.2rem;padding-bottom:.8rem;border-bottom:1px solid #eee;flex-wrap:wrap}
.content-title{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:400}
.content-count{font-size:.7rem;color:#bbb}

/* CATEGORY PILLS — mobile horizontal scroll */
.cat-pills-mobile{display:flex;gap:.5rem;overflow-x:auto;scrollbar-width:none;padding:.7rem .8rem;border-bottom:1px solid #eee;background:#fff;position:sticky;top:58px;z-index:90;-webkit-overflow-scrolling:touch}
.cat-pills-mobile::-webkit-scrollbar{display:none}
.cat-pill-m{white-space:nowrap;background:none;border:1px solid #ddd;font-family:'Raleway',sans-serif;font-size:.65rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#888;padding:.45rem .9rem;cursor:pointer;border-radius:20px;transition:all .2s}
.cat-pill-m.active{background:#111;border-color:#111;color:#fff}

/* GRID — 2 columns on mobile */
.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem;width:100%}

/* CARD */
.product-card{cursor:pointer}
.card-photo{position:relative;aspect-ratio:3/4;overflow:hidden;background:#f4f3f1;margin-bottom:.6rem;border-radius:2px}
.card-photo img{width:100%;height:100%;object-fit:cover;transition:transform .55s ease}
.product-card:hover .card-photo img{transform:scale(1.05)}
.card-overlay{position:absolute;inset:0;background:rgba(0,0,0,.2);display:flex;align-items:flex-end;justify-content:center;padding-bottom:1rem;opacity:0;transition:opacity .3s}
.product-card:hover .card-overlay{opacity:1}
.card-quick{background:#fff;color:#111;border:none;font-family:'Raleway',sans-serif;font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.55rem 1.2rem;cursor:pointer}
.promo-badge{position:absolute;top:.5rem;left:.5rem;background:#c0392b;color:#fff;font-size:.55rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.18rem .5rem}
.color-dots{position:absolute;bottom:.5rem;right:.5rem;display:flex;gap:3px}
.color-dot{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.8);border:1px solid rgba(0,0,0,.15)}
.card-body{padding:0 .1rem}
.card-cat{font-size:.55rem;letter-spacing:.15em;text-transform:uppercase;color:#bbb;margin-bottom:.2rem}
.card-name{font-size:.82rem;font-weight:500;color:#111;line-height:1.3;margin-bottom:.3rem}
.card-price{font-size:.85rem;font-weight:700;color:#111}
.card-price.promo{color:#c0392b}

/* LOADING */
.loading-box{grid-column:1/-1;text-align:center;padding:4rem 2rem;color:#aaa}
.loading-ring{width:32px;height:32px;border:2px solid #eee;border-top-color:#111;border-radius:50%;animation:spin .8s linear infinite;margin:0 auto .8rem}
@keyframes spin{to{transform:rotate(360deg)}}
.empty-msg{grid-column:1/-1;text-align:center;padding:4rem;color:#aaa;font-family:'Playfair Display',serif;font-size:1.1rem;font-style:italic}

/* ===== MODAL — full screen on mobile ===== */
/* ===== MODAL — MOOIBUTIK STYLE ===== */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:500;align-items:flex-end;justify-content:center;padding:0;backdrop-filter:blur(3px)}
.modal-overlay.open{display:flex}
.modal-box{
  background:#fff;
  width:100%;
  max-width:100%;
  max-height:95vh;
  overflow-y:auto;
  overflow-x:hidden;
  position:relative;
  animation:slideUp .35s cubic-bezier(.22,.61,.36,1);
  border-radius:18px 18px 0 0;
  -webkit-overflow-scrolling:touch;
}
@keyframes slideUp{from{transform:translateY(100%)}to{transform:translateY(0)}}
@keyframes modalFadeIn{from{opacity:0;transform:scale(.97)}to{opacity:1;transform:scale(1)}}

/* Close button */
.modal-close{
  position:absolute;top:.7rem;right:.7rem;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.92);border:1.5px solid #e5e5e5;
  width:34px;height:34px;border-radius:50%;
  cursor:pointer;color:#555;z-index:50;
  transition:all .2s;flex-shrink:0;
  box-shadow:0 2px 8px rgba(0,0,0,.15);
  backdrop-filter:blur(4px);
}
.modal-close:hover{background:#111;color:#fff;border-color:#111}

/* Body: gallery + info stacked on mobile */
.modal-body{display:flex;flex-direction:column}

/* ---- GALLERY ---- */
.modal-gallery{
  display:flex;
  flex-direction:column;
  background:#f8f7f5;
  position:relative;
  width:100%;
  flex-shrink:0;
}
/* Vertical thumbnail strip (desktop) */
.gallery-thumbs-vert{
  display:none;
  flex-direction:column;
  gap:.35rem;
  padding:.8rem;
  background:#f8f7f5;
  overflow-y:auto;
  max-height:520px;
  min-width:76px;
}
.gal-thumb-v{
  width:64px;height:80px;object-fit:cover;
  cursor:pointer;opacity:.55;
  border:2px solid transparent;
  transition:all .2s;flex-shrink:0;
}
.gal-thumb-v.active{opacity:1;border-color:#111}
.gal-thumb-v:hover{opacity:.85}

/* Main image — vertical rectangle */
.gallery-main-vert{
  position:relative;
  width:100%;
  overflow:hidden;
  min-height:360px;
}
.gallery-main-vert img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center center;
  display:block;
  transition:opacity .25s;
  background:var(--cream-dark);
}
.gal-btn{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.9);border:none;
  width:38px;height:38px;font-size:1.4rem;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  box-shadow:0 1px 6px rgba(0,0,0,.15);transition:all .2s;
}
.gal-btn:hover{background:#111;color:#fff}
.gal-btn.prev{left:.6rem}
.gal-btn.next{right:.6rem}
.gal-counter{
  position:absolute;bottom:.7rem;right:.7rem;
  background:rgba(0,0,0,.45);color:#fff;
  font-size:.6rem;font-weight:700;letter-spacing:.08em;
  padding:.2rem .55rem;border-radius:30px;
}

/* Mobile horizontal thumbs */
.gallery-thumbs{display:flex;gap:.4rem;padding:.5rem .8rem;background:#ece9e4;overflow-x:auto;-webkit-overflow-scrolling:touch}
.gal-thumb{width:52px;height:60px;object-fit:cover;cursor:pointer;opacity:.5;border:2px solid transparent;transition:all .2s;flex-shrink:0}
.gal-thumb.active{opacity:1;border-color:#111}

/* ---- INFO PANEL ---- */
.modal-info{
  padding:1.5rem 1.4rem 2rem;
  display:flex;flex-direction:column;gap:1rem;
}
.mi-cat{font-size:.55rem;letter-spacing:.22em;text-transform:uppercase;color:#bbb;margin-bottom:-.3rem}
.mi-name{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:400;line-height:1.25;color:var(--charcoal);letter-spacing:.01em}
.mi-price-row{display:flex;align-items:center;gap:.8rem}
.mi-price{font-size:1.5rem;font-weight:700;color:var(--charcoal);letter-spacing:-.01em;font-family:'Playfair Display',serif}
.mi-price.promo{color:#c0392b}
.mi-promo{background:#c0392b;color:#fff;font-size:.56rem;font-weight:700;padding:.2rem .5rem;letter-spacing:.08em;text-transform:uppercase}

/* Trust row */
.mi-trust-row{display:flex;gap:.4rem;flex-wrap:wrap}
.mi-trust-badge{
  font-size:.6rem;font-weight:600;color:var(--text2);
  background:var(--cream-dark);border:1px solid var(--border);
  padding:.28rem .6rem;border-radius:20px;
  white-space:nowrap;
}

.mi-sep{border:none;border-top:1px solid #f0f0f0}

.mi-block{display:flex;flex-direction:column;gap:.55rem}
.mi-size-header{display:flex;justify-content:space-between;align-items:center}
.mi-label{font-size:.6rem;letter-spacing:.16em;text-transform:uppercase;color:#999;font-weight:700}

/* Color swatches — large rounded buttons with color dot */
.mi-colors-swatches{display:flex;gap:.4rem;flex-wrap:wrap}
.mi-color-btn{
  display:flex;align-items:center;gap:.35rem;
  padding:.32rem .75rem;
  border:1.5px solid #e0e0e0;background:#fff;
  font-family:'Raleway',sans-serif;font-size:.7rem;font-weight:600;
  cursor:pointer;transition:all .18s;border-radius:3px;
}
.mi-color-btn .swatch-dot{width:12px;height:12px;border-radius:50%;border:1px solid rgba(0,0,0,.12);flex-shrink:0}
.mi-color-btn.active{border-color:#111;background:#111;color:#fff}
.mi-color-btn.active .swatch-dot{border-color:rgba(255,255,255,.4)}

/* Size buttons — square, comfortable */
.mi-sizes{display:flex;gap:.4rem;flex-wrap:wrap}
.mi-size-btn{
  min-width:50px;height:50px;
  border:1.5px solid var(--border);background:var(--cream);
  font-family:'Raleway',sans-serif;font-size:.78rem;font-weight:700;
  cursor:pointer;transition:all .18s;
  display:flex;align-items:center;justify-content:center;
  padding:0 .5rem;
}
.mi-size-btn:hover{border-color:#888}
.mi-size-btn.active{border-color:var(--charcoal);background:var(--charcoal);color:var(--gold)}
.mi-size-btn:disabled{opacity:.25;cursor:not-allowed;text-decoration:line-through}
.mi-size-btn.low-stock{border-color:#f59e0b;color:#b45309}
.size-low{font-size:.55rem;font-weight:600;color:#f59e0b;display:block}
.mi-stock{font-size:.72rem;color:#888;min-height:.9rem;margin-top:-.2rem}

/* Qty */
.mi-qty-row{display:flex;align-items:center;justify-content:space-between}
.mi-qty-ctrl{display:flex;align-items:center;gap:0;border:1.5px solid #e0e0e0;border-radius:3px;overflow:hidden}
.qty-btn{width:38px;height:38px;background:#f8f8f8;border:none;font-size:1.1rem;cursor:pointer;transition:background .2s;font-family:'Raleway',sans-serif}
.qty-btn:hover{background:#111;color:#fff}
.qty-val{min-width:40px;text-align:center;font-size:.9rem;font-weight:700;line-height:38px;font-family:'Raleway',sans-serif}

/* Action buttons */
.mi-actions{display:flex;flex-direction:column;gap:.6rem}
.mi-cart-btn{
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  background:var(--charcoal);color:#fff;border:none;
  font-family:'Raleway',sans-serif;font-size:.78rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  padding:1rem;cursor:pointer;transition:all .25s;width:100%;
  border-radius:3px;
}
.mi-cart-btn:hover{background:var(--charcoal-soft)}
.mi-order-btn{
  display:flex;align-items:center;justify-content:center;gap:.6rem;
  background:#25D366;color:#fff;border:none;
  font-family:'Raleway',sans-serif;font-size:.78rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  padding:1rem;cursor:pointer;transition:background .25s;width:100%;
  border-radius:3px;
}
.mi-order-btn:hover{background:#1da851}

/* Description block — always visible */
.mi-desc-block{
  background:#f9f8f7;border:1px solid #eeece8;
  border-radius:6px;padding:1rem 1.1rem;
  display:flex;flex-direction:column;gap:.6rem;
}
.mi-desc-title{font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;font-weight:700;color:#999}
.mi-desc-text{font-size:.78rem;line-height:1.85;color:#555;white-space:pre-line}


/* Accordion */
.mi-accordion{display:flex;flex-direction:column;border-top:1px solid #f0f0f0;border-bottom:1px solid #f0f0f0}
.mi-accord-item{border-bottom:1px solid #f0f0f0}
.mi-accord-item:last-child{border-bottom:none}
.mi-accord-item summary{
  list-style:none;cursor:pointer;
  font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:#555;padding:.85rem 0;
  display:flex;align-items:center;justify-content:space-between;
}
.mi-accord-item summary::after{content:'＋';font-size:.85rem;color:#bbb;font-weight:300}
.mi-accord-item[open] summary::after{content:'－'}
.mi-accord-item summary::-webkit-details-marker{display:none}
.mi-accord-body{padding-bottom:.9rem;font-size:.75rem;color:#666;line-height:1.7;display:flex;flex-direction:column;gap:.4rem}
.mi-accord-row{display:flex;justify-content:space-between;padding:.28rem 0;border-bottom:1px dotted #eee;font-size:.72rem}
.mi-accord-wa{
  display:inline-flex;align-items:center;gap:.4rem;margin-top:.3rem;
  background:#f0fdf4;color:#166534;border:1px solid #bbf7d0;
  font-size:.68rem;font-weight:700;padding:.45rem .85rem;border-radius:4px;
  text-decoration:none;width:fit-content;
}

/* ===== YOU MAY ALSO LIKE SECTION ===== */
.modal-suggestions{
  border-top:1.5px solid #f0ede8;
  padding:1.5rem 1.4rem 2rem;
  background:#faf9f8;
}
.modal-sugg-title{
  font-family:'Playfair Display',serif;
  font-size:1.05rem;font-weight:600;color:#111;
  margin-bottom:1rem;
}
.modal-sugg-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.8rem;
}
.sugg-card{
  cursor:pointer;background:#fff;border:1px solid #f0ede8;
  border-radius:4px;overflow:hidden;
  transition:transform .2s,box-shadow .2s;
}
.sugg-card:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.1)}
.sugg-card-img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.sugg-card-info{padding:.55rem .7rem .7rem}
.sugg-card-name{font-size:.72rem;font-weight:600;color:#111;line-height:1.3;margin-bottom:.2rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sugg-card-price{font-size:.78rem;font-weight:800;color:#111}

/* FOOTER */
.site-footer{background:var(--charcoal);color:#fff}
.footer-inner{padding:2rem 1.2rem;display:flex;flex-direction:column;gap:1.8rem}
.footer-brand .footer-logo{height:34px;filter:brightness(0)invert(1);opacity:.7;margin-bottom:.7rem}
.footer-brand p{font-size:.78rem;color:rgba(255,255,255,.4);line-height:1.7;margin-bottom:.7rem}
.footer-wa{display:inline-flex;align-items:center;gap:.4rem;background:#25D366;color:#fff;text-decoration:none;font-size:.68rem;font-weight:600;padding:.45rem .9rem;border-radius:2px}
.footer-col h4{font-size:.6rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:.8rem;font-weight:600}
.footer-col a{display:block;font-size:.78rem;color:rgba(255,255,255,.45);text-decoration:none;margin-bottom:.4rem;cursor:pointer}
.footer-col a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);text-align:center;padding:1rem;font-size:.65rem;color:rgba(255,255,255,.28)}

/* ===== TABLET & DESKTOP ===== */
@media(min-width:640px){
  .products-grid{grid-template-columns:repeat(3,1fr);gap:1.2rem}
  .hero-slider{height:70vw;max-height:80vh}
  .modal-overlay{align-items:center;padding:1.2rem}
  .modal-box{border-radius:10px;max-width:740px;max-height:92vh;animation:modalFadeIn .28s ease}
  .modal-body{flex-direction:row}
  .modal-gallery{flex-direction:row;flex:1;min-width:0}
  .gallery-thumbs-vert{display:flex;max-height:480px}
  .gallery-thumbs{display:none}
  .gallery-main-vert{min-height:480px}
  .modal-info{width:340px;min-width:340px;max-height:92vh;overflow-y:auto}
  .modal-sugg-grid{grid-template-columns:repeat(3,1fr)}
  .main-content{padding:1.8rem 1.5rem}
}

@media(min-width:900px){
  .header-inner{padding:0 2rem;height:64px}
  .logo-wrap img{height:42px}
  .sidebar{
    display:flex !important;
    flex-direction:column;
    position:sticky;
    top:64px;
    transform:none !important;
    height:calc(100vh - 72px);
    width:220px;
    min-width:220px;
    box-shadow:none;
  }
  .page-layout{display:flex}
  .sidebar-backdrop{display:none !important}
  .mobile-menu-btn{display:none}
  .cat-pills-mobile{display:none}
  .main-content{padding:2rem 2.5rem}
  .products-grid{grid-template-columns:repeat(3,1fr);gap:1.5rem}
  .hero-slider{height:75vh;max-height:none}
  .slide-content{bottom:auto;top:50%;transform:translateY(-50%);padding:0 8%;max-width:600px}
  .slide-overlay{background:linear-gradient(to right,rgba(0,0,0,.65) 0%,rgba(0,0,0,.2) 60%,transparent 100%)}
  .modal-overlay{padding:2rem}
  .modal-box{max-width:1020px;border-radius:10px}
  .modal-gallery{flex-direction:row;flex:1;min-height:540px}
  .gallery-thumbs-vert{display:flex;max-height:600px}
  .gallery-main-vert{min-height:540px}
  .modal-info{width:400px;min-width:400px;max-height:88vh;overflow-y:auto;padding:2rem 1.8rem}
  .modal-suggestions{padding:2rem 1.8rem}
  .modal-sugg-grid{grid-template-columns:repeat(4,1fr)}
  .footer-inner{flex-direction:row;padding:3rem 2rem;gap:3rem}
  .footer-brand{flex:2}
  .footer-col{flex:1}
  .announce-bar{font-size:.65rem}
}

@media(min-width:1200px){
  .products-grid{grid-template-columns:repeat(4,1fr)}
}

/* Instagram header button */
.ig-header-btn{display:flex;align-items:center;color:#111;text-decoration:none;transition:opacity .2s;padding:.3rem}
.ig-header-btn:hover{opacity:.5}

/* ===== FULL MOBILE OVERHAUL ===== */
/* Touch-friendly tap targets */
.cat-pill-m{min-height:38px;display:flex;align-items:center}
.sidebar-btn{min-height:44px}
.mi-size-btn{min-width:48px;min-height:48px}
.mi-color-btn{min-height:38px}
.mi-order-btn{min-height:52px;font-size:.82rem}
.slide-btn{min-height:44px}

/* Card name truncate on small screens */
@media(max-width:400px){
  .card-name{font-size:.75rem}
  .card-price{font-size:.8rem}
  .products-grid{gap:.5rem}
  .card-photo{margin-bottom:.4rem}
}

/* Modal full bottom sheet on mobile */
@media(max-width:639px){
  .modal-overlay{padding:0;align-items:flex-end}
  .modal-box{border-radius:18px 18px 0 0;max-height:95vh}
  .modal-overlay{align-items:flex-end}
  .modal-box{width:100vw;max-width:100vw;border-radius:18px 18px 0 0}
  .modal-body{flex-direction:column;width:100%}
  .modal-gallery{width:100vw;max-width:100vw}
  .gallery-main-vert{
    width:100vw;
    max-width:100vw;
    min-height:unset;
    max-height:none;
    aspect-ratio:unset;
    height:auto;
  }
  .gallery-main-vert img{
    width:100%;
    height:auto;
    max-height:72vh;
    object-fit:contain;
    object-position:center center;
    background:var(--cream-dark);
  }
  .gallery-thumbs-vert{display:none}
  .gallery-thumbs{display:flex;width:100%}
  .modal-info{padding:1rem 1rem 1.5rem;gap:.75rem;width:100%}
  .mi-name{font-size:1.1rem}
  .mi-price{font-size:1.25rem}
  .mi-trust-row{display:none}
  .modal-sugg-grid{grid-template-columns:repeat(2,1fr)}
  .mi-desc-block{padding:.75rem .9rem}
  .mi-features{display:none}
}

/* Better announce bar on very small phones */
@media(max-width:360px){
  .announce-bar span:nth-child(2){display:none}
  .announce-bar{gap:.8rem}
}

/* ===== CART BUTTON IN HEADER ===== */
.cart-btn{position:relative;background:none;border:none;cursor:pointer;color:#111;padding:.3rem;display:flex;align-items:center}
.cart-count{position:absolute;top:-4px;right:-4px;background:var(--gold);color:#fff;font-size:.55rem;font-weight:700;width:16px;height:16px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Raleway',sans-serif}
.cart-count.hidden{display:none}

/* ===== CART SIDEBAR ===== */
.cart-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:600;backdrop-filter:blur(3px)}
.cart-overlay.open{display:block}
.cart-sidebar{position:absolute;right:0;top:0;bottom:0;width:100%;max-width:380px;background:#fff;display:flex;flex-direction:column;animation:slideLeft .3s ease}
@keyframes slideLeft{from{transform:translateX(100%)}to{transform:translateX(0)}}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.2rem 1.5rem;border-bottom:1px solid #eee}
.cart-title{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:400}
.cart-close{background:none;border:none;font-size:1.1rem;cursor:pointer;color:#888;padding:.3rem}
.cart-close:hover{color:#111}
.cart-items{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-empty{text-align:center;color:#bbb;font-size:.85rem;margin-top:3rem;font-style:italic}
.cart-item{display:flex;gap:.8rem;padding:.8rem 0;border-bottom:1px solid #f0f0f0;align-items:flex-start}
.cart-item-img{width:60px;height:72px;object-fit:cover;background:#f4f3f1;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:.8rem;font-weight:600;color:#111;margin-bottom:.2rem;line-height:1.3}
.cart-item-detail{font-size:.72rem;color:#aaa;margin-bottom:.3rem}
.cart-item-price{font-size:.85rem;font-weight:700;color:#111}
.cart-item-remove{background:none;border:none;color:#bbb;cursor:pointer;font-size:.9rem;padding:.2rem;flex-shrink:0}
.cart-item-remove:hover{color:#c0392b}
.cart-footer{padding:1.2rem 1.5rem;border-top:1px solid #eee}
.cart-total-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.cart-total-row span:first-child{font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#888}
.cart-total{font-size:1.2rem;font-weight:700;color:#111}
.cart-checkout-btn{width:100%;background:#111;color:#fff;border:none;font-family:'Raleway',sans-serif;font-size:.78rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:1rem;cursor:pointer;transition:background .3s}
.cart-checkout-btn:hover{background:#333}

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.55);z-index:700;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(4px)}
.checkout-overlay.open{display:flex}
.checkout-box{background:#fff;width:100%;max-width:520px;max-height:92vh;overflow-y:auto;position:relative;border-radius:4px;animation:fadeUp .3s ease}
.checkout-close{position:absolute;top:.8rem;right:.8rem;background:#f0f0f0;border:none;width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:.9rem;display:flex;align-items:center;justify-content:center;color:#666}
.checkout-close:hover{background:#111;color:#fff}
.checkout-title{font-family:'Playfair Display',serif;font-size:1.3rem;font-weight:400;padding:1.5rem 1.5rem .8rem;border-bottom:1px solid #eee}
.delivery-info-box{background:#f9f7f4;border-left:3px solid #c9a96e;padding:.8rem 1.2rem;margin:1rem 1.5rem;font-size:.78rem;line-height:1.8;color:#555}
.delivery-info-box strong{color:#111}
.checkout-form{padding:0 1.5rem 1.5rem;display:flex;flex-direction:column;gap:.9rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
.form-group{display:flex;flex-direction:column;gap:.3rem}
.form-group label{font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:#888}
.form-group input,.form-group textarea{border:1px solid #ddd;padding:.7rem .9rem;font-family:'Raleway',sans-serif;font-size:.85rem;color:#111;outline:none;border-radius:2px;transition:border-color .2s;background:#fff;-webkit-appearance:none}
.form-group input:focus,.form-group textarea:focus{border-color:#111}
.form-group textarea{resize:none}
.order-summary{background:#f4f3f1;padding:1rem;font-size:.8rem;line-height:1.8;color:#555;border-radius:2px}
.order-summary strong{color:#111;display:block;margin-bottom:.4rem;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase}
.submit-order-btn{display:flex;align-items:center;justify-content:center;gap:.6rem;background:#25D366;color:#fff;border:none;font-family:'Raleway',sans-serif;font-size:.8rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:1.1rem;cursor:pointer;transition:background .3s;border-radius:2px}
.submit-order-btn:hover{background:#1da851}

/* CART ADD BUTTON on product modal */
/* mi-cart-btn defined in modal section */

@media(max-width:480px){
  .form-row{grid-template-columns:1fr}
  .cart-sidebar{max-width:100%}
}


/* ===== CHECKOUT V2 ===== */
.checkout-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:700;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(4px)}
.checkout-overlay.open{display:flex}
.checkout-box{background:#fff;width:100%;max-width:500px;max-height:94vh;overflow-y:auto;position:relative;border-radius:4px;animation:fadeUp .3s ease}
.checkout-close{position:absolute;top:.8rem;right:.8rem;background:#f0f0f0;border:none;width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:.9rem;display:flex;align-items:center;justify-content:center;color:#666;z-index:5}
.checkout-close:hover{background:#111;color:#fff}
.checkout-title{font-family:'Playfair Display',serif;font-size:1.25rem;font-weight:400;padding:1.4rem 1.5rem 1rem;border-bottom:1px solid #eee}
.checkout-form{padding:1rem 1.5rem 1.5rem;display:flex;flex-direction:column;gap:.85rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.form-group{display:flex;flex-direction:column;gap:.3rem}
.form-group label{font-size:.6rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#888}
.form-group input,.form-group textarea,.form-group select{border:1px solid #ddd;padding:.7rem .9rem;font-family:'Raleway',sans-serif;font-size:.85rem;color:#111;outline:none;border-radius:2px;transition:border-color .2s;background:#fff;-webkit-appearance:none;appearance:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:#111}
.form-group select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right .8rem center;padding-right:2rem}
.form-group textarea{resize:none}
.order-summary{background:#f9f7f4;padding:.9rem 1rem;font-size:.78rem;line-height:1.9;color:#555;border-radius:2px}
.order-summary strong{color:#111;display:block;margin-bottom:.3rem;font-size:.65rem;letter-spacing:.12em;text-transform:uppercase}
.total-final-box{background:#111;color:#fff;padding:.9rem 1rem;border-radius:2px;display:flex;flex-direction:column;gap:.3rem}
.total-row{display:flex;justify-content:space-between;font-size:.78rem;color:rgba(255,255,255,.6)}
.total-grand{border-top:1px solid rgba(255,255,255,.15);padding-top:.4rem;margin-top:.2rem;font-size:.95rem;font-weight:700;color:#c9a96e}
.ozone-note{font-size:.68rem;color:#aaa;text-align:center;line-height:1.6}
.ozone-note a{color:#c9a96e;text-decoration:none;font-weight:600}
.submit-order-btn{display:flex;align-items:center;justify-content:center;gap:.6rem;background:#25D366;color:#fff;border:none;font-family:'Raleway',sans-serif;font-size:.78rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:1.05rem;cursor:pointer;transition:background .3s;border-radius:2px;width:100%}
.submit-order-btn:hover{background:#1da851}
.submit-order-btn:disabled{background:#aaa;cursor:not-allowed}

/* THANK YOU */
.thankyou-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:800;align-items:center;justify-content:center;padding:1rem;backdrop-filter:blur(6px)}
.thankyou-overlay.open{display:flex}
.thankyou-box{background:#fff;width:100%;max-width:380px;padding:2.5rem 2rem;text-align:center;animation:fadeUp .4s ease;border-radius:4px}
.thankyou-check{width:58px;height:58px;background:#25D366;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin:0 auto 1.2rem;font-weight:700}
.thankyou-title{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:400;color:#111;margin-bottom:.7rem}
.thankyou-msg{font-size:.8rem;color:#666;line-height:1.85;margin-bottom:.8rem}
.thankyou-brand{font-size:.68rem;color:#bbb;letter-spacing:.08em;margin-bottom:1.5rem;font-style:italic}
.thankyou-btn{background:#111;color:#fff;border:none;font-family:'Raleway',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.85rem 2rem;cursor:pointer;border-radius:2px}
.thankyou-btn:hover{background:#333}

@media(max-width:480px){
  .form-row{grid-template-columns:1fr}
  .checkout-form{padding:.8rem 1rem 1.2rem}
}

/* ===== CITY AUTOCOMPLETE ===== */
.city-autocomplete-wrap{position:relative}
.city-suggestions{
  display:none;
  position:absolute;
  top:100%;left:0;right:0;
  background:#fff;
  border:1px solid #ddd;
  border-top:none;
  max-height:200px;
  overflow-y:auto;
  z-index:100;
  border-radius:0 0 3px 3px;
  box-shadow:0 4px 12px rgba(0,0,0,.1);
}
.city-suggestions.open{display:block}
.city-option{
  padding:.7rem 1rem;
  font-family:'Raleway',sans-serif;
  font-size:.82rem;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #f5f5f5;
  transition:background .15s;
}
.city-option:last-child{border-bottom:none}
.city-option:hover,.city-option.highlighted{background:#f4f3f1}
.city-option-price{font-size:.7rem;font-weight:700;color:#c9a96e;background:#f9f7f4;padding:.15rem .5rem;border-radius:10px}
.city-no-result{padding:.8rem 1rem;font-size:.78rem;color:#aaa;font-style:italic}

.city-hint{font-size:.7rem;margin-top:.3rem;font-weight:600;min-height:.9rem;transition:color .2s}
.city-hint.casa{color:#25a244}
.city-hint.hors{color:#c9a96e}

/* ===== CITY DROPDOWN ===== */
.city-field-wrap{position:relative}
.city-dropdown{
  display:none;position:absolute;top:100%;left:0;right:0;
  background:#fff;border:1px solid #ddd;border-top:none;
  max-height:220px;overflow-y:auto;z-index:200;
  border-radius:0 0 4px 4px;box-shadow:0 6px 16px rgba(0,0,0,.1)
}
.city-dropdown.open{display:block}
.city-drop-header{
  padding:.5rem 1rem;font-size:.6rem;font-weight:700;
  letter-spacing:.15em;text-transform:uppercase;
  color:#aaa;background:#f9f7f4;border-bottom:1px solid #eee;
  position:sticky;top:0
}
.city-drop-item{
  display:flex;justify-content:space-between;align-items:center;
  padding:.65rem 1rem;font-family:'Raleway',sans-serif;font-size:.82rem;
  cursor:pointer;border-bottom:1px solid #f5f5f5;transition:background .15s
}
.city-drop-item:hover{background:#f4f3f1}
.city-drop-item:last-child{border-bottom:none}
.city-drop-price{
  font-size:.68rem;font-weight:700;color:#fff;
  background:#111;padding:.15rem .55rem;border-radius:10px
}

.city-drop-price.mid{background:#c9a96e}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa{
  position:fixed;
  bottom:1.5rem;right:1.2rem;
  z-index:300;
  background:#25D366;
  color:#fff;
  display:flex;align-items:center;gap:.55rem;
  padding:.75rem 1.2rem;
  border-radius:50px;
  text-decoration:none;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  font-family:'Raleway',sans-serif;
  font-size:.75rem;font-weight:700;
  letter-spacing:.06em;
  transition:all .3s;
  animation:floatPulse 2.5s ease-in-out infinite;
}
.floating-wa:hover{
  background:#1da851;
  transform:translateY(-2px);
  box-shadow:0 6px 24px rgba(37,211,102,.5);
}
.floating-wa-text{white-space:nowrap}
@keyframes floatPulse{
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}
  50%{box-shadow:0 4px 28px rgba(37,211,102,.7)}
}

/* ===== ABOUT SECTION ===== */
.about-section{
  background:#f9f7f4;
  border-top:1px solid var(--border);
  padding:4rem 2rem;
}
.about-inner{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:4rem;
  align-items:start;
}
.about-label{
  font-size:.6rem;letter-spacing:.25em;text-transform:uppercase;
  color:#c9a96e;font-weight:700;margin-bottom:.6rem;
}
.about-title{
  font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:400;
  color:#111;margin-bottom:1.2rem;line-height:1.2;
}
.about-desc{
  font-size:.85rem;line-height:1.9;color:#666;
}
.about-features{
  display:flex;flex-direction:column;gap:1.2rem;
  margin-top:2rem;
}
.about-feat{
  display:flex;gap:1rem;align-items:flex-start;
}
.feat-icon{
  font-size:1.4rem;flex-shrink:0;margin-top:.1rem;
}
.about-feat strong{
  display:block;font-size:.82rem;font-weight:700;
  color:#111;margin-bottom:.2rem;letter-spacing:.02em;
}
.about-feat p{
  font-size:.78rem;color:#888;line-height:1.6;margin:0;
}

/* INSTAGRAM COL */
.ig-follow-box{
  display:flex;align-items:center;gap:1rem;
  background:#fff;border:1px solid #e8e8e8;
  padding:1rem 1.2rem;
  text-decoration:none;color:#111;
  transition:all .2s;margin-bottom:1rem;
  border-radius:2px;
}
.ig-follow-box:hover{border-color:#111;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.ig-follow-box strong{display:block;font-size:.88rem;font-weight:700;margin-bottom:.15rem}
.ig-follow-box span{font-size:.72rem;color:#aaa}
.ig-arrow{margin-left:auto;font-size:1rem;color:#aaa}
.ig-caption{font-size:.78rem;color:#888;line-height:1.7;margin-bottom:1.5rem}
.ig-stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:.8rem;
}
.ig-stat{
  background:#fff;border:1px solid #eee;
  padding:.8rem .5rem;text-align:center;border-radius:2px;
}
.ig-stat-num{display:block;font-size:1.1rem;font-weight:700;color:#111;margin-bottom:.2rem}
.ig-stat-label{font-size:.6rem;color:#aaa;letter-spacing:.08em;text-transform:uppercase}

/* RESPONSIVE */
@media(max-width:800px){
  .about-inner{grid-template-columns:1fr;gap:2.5rem}
  .about-section{padding:2.5rem 1.2rem}
  .floating-wa-text{display:none}
  .floating-wa{padding:.85rem}
  .floating-wa{border-radius:50%;width:52px;height:52px;justify-content:center}
}

/* ===== STOCK INDICATORS ===== */
.mi-size-btn.out-of-stock{
  opacity:.35;
  cursor:not-allowed;
  position:relative;
  color:#aaa;
  border-color:#e5e5e5;
}
.mi-size-btn.out-of-stock::after{
  content:'';
  position:absolute;
  top:50%;left:50%;
  width:130%;height:1px;
  background:#bbb;
  transform:translate(-50%,-50%) rotate(-45deg);
}
.size-cross{
  display:none;
}
.mi-size-btn.low-stock{
  border-color:#c9a96e;
  color:#c9a96e;
}
.mi-size-btn.low-stock::before{
  content:'';
  position:absolute;
  top:3px;right:3px;
  width:6px;height:6px;
  background:#c9a96e;
  border-radius:50%;
}

/* ============================================================ */
/* HOME SECTIONS — Best Sellers / New Collection / Promos */
/* ============================================================ */
.home-section {
  padding: 3rem 1rem;
  background: #fff;
  border-bottom: 1px solid #f0eeeb;
}
.home-section:nth-child(even) {
  background: #faf9f7;
}
.home-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.home-section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.home-section-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .32rem .88rem;
  border-radius: 20px;
  margin-bottom: .75rem;
}
.home-section-tag.best { background: var(--gold-pale); color: var(--charcoal); border:1px solid var(--gold-light); }
.home-section-tag.new { background: var(--cream-dark); color: var(--charcoal); border:1px solid var(--border); }
.home-section-tag.promo { background: #f9ede8; color: #8b2a1a; border:1px solid #e8c4b8; }
.home-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -.02em;
  margin-bottom: .4rem;
  font-family: 'Raleway', sans-serif;
}
.home-section-sub {
  font-size: .82rem;
  color: #888;
  letter-spacing: .02em;
}
.sec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
@media(min-width: 640px) { .sec-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1024px) { .sec-grid { grid-template-columns: repeat(4, 1fr); } }
.sec-card {
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.sec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}
.sec-card-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f5f4f1;
}
.sec-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.sec-card:hover .sec-card-img-wrap img {
  transform: scale(1.04);
}
.sec-badge {
  position: absolute;
  top: .55rem;
  left: .55rem;
  font-size: .52rem;
  font-weight: 700;
  padding: .22rem .55rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.sec-badge.best { background: #fef3c7; color: #78350f; }
.sec-badge.new { background: #eff6ff; color: #1e40af; }
.sec-badge.promo { background: #fef2f2; color: #7f1d1d; }
.sec-card-info {
  padding: .7rem .75rem;
}
.sec-card-name {
  font-size: .75rem;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
  margin-bottom: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sec-card-price {
  font-size: .85rem;
  font-weight: 800;
  color: #c9a96e;
  letter-spacing: -.01em;
}

/* ============================================================ */
/* LANGUAGE BUTTON */
/* ============================================================ */
.lang-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: .32rem .65rem;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .04em;
  transition: background .15s;
}
.lang-btn:hover { background: rgba(255,255,255,.2); }

/* ============================================================ */
/* QUANTITY SELECTOR */
/* ============================================================ */
.mi-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: .75rem 0;
}
.mi-qty-ctrl {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #f5f4f1;
  border-radius: 8px;
  padding: .2rem .4rem;
}
.qty-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  padding: .1rem .4rem;
  border-radius: 5px;
  transition: background .15s;
}
.qty-btn:hover { background: #e0ddd8; }
.qty-val {
  font-size: .95rem;
  font-weight: 700;
  min-width: 1.5rem;
  text-align: center;
  color: #111;
}

/* ============================================================ */
/* RTL ARABIC SUPPORT */
/* ============================================================ */
[dir="rtl"] .modal-body { direction: rtl; }
[dir="rtl"] .mi-qty-row { flex-direction: row-reverse; }
[dir="rtl"] .slide-content { text-align: right; }
[dir="rtl"] .bar-black { font-family: 'Cairo', sans-serif; }
[dir="rtl"] .checkout-title { text-align: right; }
[dir="rtl"] .form-group label { text-align: right; }


/* ============================================================ */
/* COLOR SWATCHES ON PRODUCT CARDS */
/* ============================================================ */
.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .35rem;
  gap: .4rem;
}
.card-swatches {
  display: flex;
  gap: 4px;
  align-items: center;
}
.card-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.12);
  cursor: pointer;
  padding: 0;
  transition: transform .15s, border-color .15s;
  flex-shrink: 0;
}
.card-swatch:hover {
  transform: scale(1.2);
  border-color: rgba(0,0,0,.3);
}
.card-swatch.active {
  border: 2px solid #111;
  transform: scale(1.15);
}
.new-badge {
  position: absolute;
  top: .55rem;
  left: .55rem;
  background: #eff6ff;
  color: #1e40af;
  font-size: .5rem;
  font-weight: 700;
  padding: .22rem .55rem;
  border-radius: 20px;
  letter-spacing: .04em;
}
.best-badge {
  position: absolute;
  top: .55rem;
  left: .55rem;
  background: #fef3c7;
  color: #78350f;
  font-size: .5rem;
  font-weight: 700;
  padding: .22rem .55rem;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ============================================================ */
/* SIZE GUIDE */
/* ============================================================ */
.size-guide-btn {
  background: none;
  border: none;
  font-size: .62rem;
  color: #b8935a;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
  letter-spacing: .02em;
}
.size-guide-btn:hover { color: #8a6030; }

.sg-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.sg-overlay.open { display: flex; }
.sg-box {
  background: #fff;
  width: 100%;
  max-width: 500px;
  border-radius: 20px 20px 0 0;
  max-height: 90vh;
  overflow-y: auto;
  animation: slideUp .3s ease;
}
@keyframes slideUp { from{transform:translateY(100%)} to{transform:translateY(0)} }
.sg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem .8rem;
  border-bottom: 1px solid #f0eeeb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.sg-title {
  font-size: .95rem;
  font-weight: 800;
  color: #111;
  letter-spacing: .02em;
}
.sg-close {
  background: #f5f4f1;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sg-body { padding: 1rem 1.4rem 2rem; }
.sg-note {
  font-size: .72rem;
  color: #888;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  background: #faf9f7;
  padding: .65rem .85rem;
  border-radius: 8px;
  border-left: 3px solid #b8935a;
}
.sg-section { margin-bottom: 1.4rem; }
.sg-sec-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: .65rem;
}
.sg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .72rem;
}
.sg-table th {
  background: #111;
  color: #fff;
  padding: .45rem .6rem;
  text-align: left;
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .06em;
}
.sg-table td {
  padding: .42rem .6rem;
  border-bottom: 1px solid #f0eeeb;
  color: #444;
}
.sg-table tr:nth-child(even) td { background: #faf9f7; }
.sg-table td:first-child { font-weight: 700; color: #111; }
.sg-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: .85rem 1rem;
  font-size: .72rem;
  color: #166534;
  line-height: 1.65;
  margin: 1.2rem 0;
}
.sg-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: .85rem;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  transition: opacity .15s;
}
.sg-wa-btn:hover { opacity: .9; }

/* ============================================================ */
/* MOVING TICKER BAR */
/* ============================================================ */
.ticker-wrap {
  background: #111;
  overflow: hidden;
  padding: .5rem 0;
  border-bottom: 1px solid #222;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9a96e;
  padding: 0 2rem;
}
.ticker-sep {
  color: rgba(201,169,110,.4);
  font-size: .5rem;
  flex-shrink: 0;
}

/* ============================================================ */
/* TRUST BAR */
/* ============================================================ */
.trust-bar {
  background: #faf9f7;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 2rem;
}
.trust-icon { font-size: 1.4rem; flex-shrink: 0; }
.trust-title {
  font-size: .72rem;
  font-weight: 700;
  color: #111;
  letter-spacing: .02em;
}
.trust-sub { font-size: .6rem; color: #888; margin-top: .1rem; }
.trust-divider {
  width: 1px;
  height: 40px;
  background: #e0ddd8;
  flex-shrink: 0;
}
@media(max-width:640px){
  .trust-bar { gap: .5rem; padding: 1rem; }
  .trust-divider { display: none; }
  .trust-item { padding: .4rem 1rem; }
}

/* ============================================================ */
/* FOOTER UPGRADE */
/* ============================================================ */
.site-footer { background: #0f0f0f; color: rgba(255,255,255,.75); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3rem 2rem 2rem;
}
@media(max-width:768px){
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2rem 1.2rem 1.5rem; }
}
@media(max-width:480px){
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-col h4 {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  margin-bottom: .55rem;
  transition: color .15s;
}
.footer-col a:hover { color: #c9a96e; }
.footer-tagline {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-social { display: flex; gap: .5rem; margin-bottom: .8rem; flex-wrap: wrap; }
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: .38rem;
  padding: .42rem .85rem;
  border-radius: 8px;
  font-size: .65rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity .15s;
  letter-spacing: .04em;
}
.footer-social-btn:hover { opacity: .85; }
.wa-btn { background: #25d366; color: #fff; }
.ig-btn { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.footer-hours { font-size: .62rem; color: rgba(255,255,255,.3); }
.footer-contact-item {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-bottom: .45rem;
  line-height: 1.5;
}
.footer-help-btn {
  display: inline-block;
  margin-top: .6rem;
  background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.3);
  color: #c9a96e;
  padding: .52rem 1rem;
  border-radius: 8px;
  font-size: .68rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  letter-spacing: .04em;
}
.footer-help-btn:hover { background: rgba(201,169,110,.25); }

/* PAYMENT ROW */
.footer-payment {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media(max-width:480px){ .footer-payment { padding: 1rem 1.2rem; } }
.footer-pay-label { font-size: .6rem; color: rgba(255,255,255,.35); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.footer-pay-icons { display: flex; gap: .5rem; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: .62rem;
  padding: .3rem .7rem;
  border-radius: 6px;
  font-weight: 600;
}

/* BOTTOM BAR */
.footer-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
@media(max-width:480px){ .footer-bottom-bar { padding: 1rem 1.2rem; flex-direction: column; text-align: center; } }
.footer-bottom-left { font-size: .62rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; align-items: center; gap: .5rem; font-size: .62rem; color: rgba(255,255,255,.3); }
.footer-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.footer-bottom-links a:hover { color: #c9a96e; }

/* ============================================================ */
/* INFO MODALS (Delivery, Returns, FAQ, Privacy, CGV) */
/* ============================================================ */
.info-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
}
.info-overlay.open { display: flex; }
.info-box {
  background: #fff;
  width: 100%;
  max-width: 520px;
  border-radius: 20px 20px 0 0;
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp .3s ease;
}
.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.4rem .8rem;
  border-bottom: 1px solid #f0eeeb;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.info-header h3 { font-size: .92rem; font-weight: 800; color: #111; }
.info-header button {
  background: #f5f4f1;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .8rem;
}
.info-body { padding: 1.2rem 1.4rem 2rem; }
.info-section { margin-bottom: 1.4rem; }
.info-sec-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: .7rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #f0eeeb;
}
.info-row {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: #444;
  padding: .38rem 0;
  border-bottom: 1px solid #f9f7f4;
}
.info-row:last-child { border: none; }
.info-tip {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .72rem;
  color: #78350f;
  line-height: 1.65;
  margin-top: .6rem;
}
.info-list {
  list-style: none;
  margin-top: .5rem;
}
.info-list li {
  font-size: .73rem;
  color: #444;
  padding: .35rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid #f9f7f4;
}
.info-list li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.info-text { font-size: .75rem; color: #555; line-height: 1.75; }
.faq-item {
  border-bottom: 1px solid #f0eeeb;
  padding: .85rem 0;
}
.faq-item:last-child { border: none; }
.faq-q { font-size: .78rem; font-weight: 700; color: #111; margin-bottom: .35rem; }
.faq-a { font-size: .72rem; color: #666; line-height: 1.65; }

/* ============================================================ */
/* SEARCH BAR */
/* ============================================================ */
.header-search-wrap { position: relative; display: flex; align-items: center; }
.search-toggle-btn { background: none; border: none; color: #fff; cursor: pointer; padding: .3rem; display: flex; align-items: center; }
.search-box { position: fixed; top: 0; left: 0; right: 0; background: #fff; z-index: 500; padding: 1rem 1.2rem; display: none; align-items: center; gap: .7rem; box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.search-box.open { display: flex; }
.search-box input { flex: 1; border: none; outline: none; font-size: .92rem; font-family: inherit; color: #111; }
.search-close-btn { background: #f5f4f1; border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: .8rem; flex-shrink: 0; }
.search-results-wrap { position: fixed; top: 60px; left: 0; right: 0; z-index: 499; padding: 0 1rem; max-width: 600px; margin: 0 auto; left: 50%; transform: translateX(-50%); }
.search-results { background: #fff; border-radius: 0 0 14px 14px; box-shadow: 0 8px 32px rgba(0,0,0,.12); overflow: hidden; max-height: 70vh; overflow-y: auto; }
.search-item { display: flex; align-items: center; gap: .8rem; padding: .75rem 1rem; cursor: pointer; border-bottom: 1px solid #f5f4f1; transition: background .1s; }
.search-item:hover { background: #faf9f7; }
.search-item:last-child { border: none; }
.search-item img { width: 48px; height: 64px; object-fit: cover; border-radius: 7px; background: #f5f4f1; flex-shrink: 0; }
.search-item-name { font-size: .78rem; font-weight: 600; color: #111; margin-bottom: .2rem; }
.search-item-price { font-size: .72rem; font-weight: 700; color: #b8935a; }

/* ============================================================ */
/* STOCK INDICATORS */
/* ============================================================ */
.oos-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; border-radius: inherit; }
.oos-overlay::after { content: 'Épuisé'; color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .1em; background: rgba(0,0,0,.6); padding: .3rem .8rem; border-radius: 4px; }
.low-stock-badge { position: absolute; bottom: .55rem; left: .55rem; background: #fef3c7; color: #78350f; font-size: .5rem; font-weight: 700; padding: .22rem .55rem; border-radius: 20px; letter-spacing: .04em; }
.mi-size-btn.low-stock { border-color: #fcd34d !important; background: #fffbeb !important; }
.size-low { font-size: .45rem; background: #fcd34d; color: #78350f; padding: .05rem .25rem; border-radius: 3px; margin-left: .2rem; font-weight: 700; }

/* ============================================================ */
/* MOBILE IMAGE FIX — Perfect on all screens */
/* ============================================================ */

/* Product cards — proper portrait ratio */
.card-photo {
  aspect-ratio: 2/3 !important;
  border-radius: 10px !important;
}
.card-photo img {
  object-fit: cover !important;
  object-position: top center !important;
}

/* Grid — better spacing on mobile */
@media(max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .55rem !important;
    padding: 0 .1rem;
  }
  .card-body { padding: 0 .15rem; }
  .card-name { font-size: .75rem !important; }
  .card-price { font-size: .8rem !important; }
  .card-cat { font-size: .5rem !important; }
  .card-swatch { width: 12px !important; height: 12px !important; }
}

/* Modal gallery — better on mobile */
@media(max-width: 640px) {
  /* gallery covered by main rules above */
  .gallery-thumbs {
    display: flex !important;
    gap: .35rem !important;
    padding: .35rem 0 !important;
    overflow-x: auto !important;
  }
  .gal-thumb {
    width: 48px !important;
    height: 60px !important;
    object-fit: cover !important;
    object-position: top !important;
    border-radius: 5px !important;
    flex-shrink: 0 !important;
  }
}

/* Section cards — proper ratio on mobile */
.sec-card-img-wrap {
  aspect-ratio: 2/3 !important;
}
.sec-card-img-wrap img {
  object-position: top center !important;
}

/* Hero slider — better on mobile */
@media(max-width: 480px) {
  .hero-slider { height: 85vw !important; min-height: 320px !important; }
  .slide-title { font-size: 1.8rem !important; }
  .slide-sub { font-size: .72rem !important; }
}

/* Search box z-index fix */
.search-box { z-index: 1000 !important; }

/* Fix card-bottom layout on small screens */
@media(max-width: 360px) {
  .card-bottom { flex-direction: column; align-items: flex-start; gap: .3rem; }
}


/* ===== SKELETON LOADING SHIMMER ===== */
@keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
.loading-box{
  grid-column:1/-1;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:4rem 2rem;gap:1rem;color:#bbb;
}
.loading-ring{
  width:36px;height:36px;
  border:2px solid #f0f0f0;border-top-color:#c9a96e;
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin{to{transform:rotate(360deg)}}

/* Skeleton card */
.skeleton-card{background:#fff;border-radius:3px;overflow:hidden}
.skeleton-img{width:100%;aspect-ratio:3/4;background:linear-gradient(90deg,#f0ede8 25%,#e8e5e0 50%,#f0ede8 75%);background-size:200% 100%;animation:shimmer 1.4s infinite}
.skeleton-line{height:12px;border-radius:3px;background:linear-gradient(90deg,#f0ede8 25%,#e8e5e0 50%,#f0ede8 75%);background-size:200% 100%;animation:shimmer 1.4s infinite;margin:.55rem .7rem .2rem}
.skeleton-line.short{width:55%;margin-bottom:.7rem}

/* ===== PRODUCT CARD IMPROVEMENTS ===== */
.product-card{
  background:#fff;
  position:relative;
  cursor:pointer;
  transition:transform .2s ease;
}
.product-card:hover{transform:translateY(-3px)}
.card-photo{
  position:relative;
  overflow:hidden;
  aspect-ratio:3/4;
  background:var(--cream-dark);
  display:flex;
  align-items:center;
  justify-content:center;
}
.card-photo img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}
.card-photo:hover img{transform:scale(1.04)}
.card-overlay{
  position:absolute;inset:0;
  background:rgba(0,0,0,.18);
  display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:1rem;
  opacity:0;
  transition:opacity .25s;
}
.product-card:hover .card-overlay{opacity:1}
.card-quick{
  background:#fff;color:#111;
  border:none;font-family:'Raleway',sans-serif;
  font-size:.65rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  padding:.55rem 1.2rem;cursor:pointer;
  transform:translateY(8px);
  transition:transform .25s;
}
.product-card:hover .card-quick{transform:translateY(0)}

/* Card body */
.card-body{padding:.75rem .6rem 1rem;background:var(--cream)}
.card-cat{font-size:.5rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:.25rem;font-weight:600}
.card-name{font-size:.82rem;font-weight:500;color:var(--charcoal);line-height:1.4;cursor:pointer;margin-bottom:.4rem;font-family:'Raleway',sans-serif}
.card-bottom{display:flex;align-items:center;justify-content:space-between}
.card-price{font-size:.88rem;font-weight:700;color:var(--charcoal);font-family:'Playfair Display',serif}
.card-price.promo{color:#b5341a}
.card-swatches{display:flex;gap:.25rem}
.card-swatch{width:14px;height:14px;border-radius:50%;border:1.5px solid rgba(255,255,255,.8);cursor:pointer;transition:transform .15s;outline:none;box-shadow:0 0 0 1px rgba(0,0,0,.12)}
.card-swatch:hover{transform:scale(1.25)}
.card-swatch.active{box-shadow:0 0 0 2px #111}

/* Badges */
.promo-badge,.new-badge,.best-badge,.low-stock-badge{
  position:absolute;top:.6rem;left:.6rem;
  font-size:.55rem;font-weight:700;padding:.2rem .5rem;
  letter-spacing:.06em;text-transform:uppercase;
  z-index:5;
}
.promo-badge{background:#c0392b;color:#fff}
.new-badge{background:#111;color:#fff;top:.6rem;left:.6rem}
.best-badge{background:#c9a96e;color:#fff;top:.6rem;left:.6rem}
.low-stock-badge{background:#f59e0b;color:#fff;top:.6rem;left:.6rem}
/* OOS tag — bottom strip, doesn't cover product image */
.oos-tag{
  position:absolute;bottom:0;left:0;right:0;
  background:rgba(28,28,28,.82);
  display:flex;align-items:center;justify-content:center;
  padding:.5rem;z-index:6;cursor:not-allowed;
  backdrop-filter:blur(2px);
}
.oos-tag span{
  color:#fff;font-size:.6rem;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
}
/* Low stock — top corner badge, yellow, doesn't hide image */
.low-stock-tag{
  position:absolute;top:.55rem;left:.55rem;
  background:#c9a96e;color:#fff;
  font-size:.52rem;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;
  padding:.22rem .55rem;z-index:5;
  border-radius:2px;
}

/* ===== GENERAL VISUAL POLISH ===== */
/* Smooth image reveal on load */
img{color:transparent}
.product-card img,.sugg-card-img,.gal-thumb,.gal-thumb-v{
  background:#f4f3f1;
}

/* Section cards grid */
.sec-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.8rem;
}
@media(min-width:640px){.sec-grid{grid-template-columns:repeat(4,1fr);gap:1rem}}

.sec-card{cursor:pointer;position:relative;overflow:hidden;border-radius:3px;background:#f4f3f1}
.sec-card-img-wrap{position:relative;aspect-ratio:3/4;overflow:hidden}
.sec-card-img-wrap img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.sec-card:hover .sec-card-img-wrap img{transform:scale(1.04)}
.sec-card-info{padding:.6rem .5rem .8rem;background:#fff}
.sec-card-name{font-size:.78rem;font-weight:600;color:#111;line-height:1.3;margin-bottom:.2rem}
.sec-card-price{font-size:.82rem;font-weight:800;color:#111}
.sec-badge{position:absolute;top:.5rem;left:.5rem;font-size:.52rem;font-weight:700;padding:.18rem .45rem;letter-spacing:.06em;text-transform:uppercase;z-index:3}
.sec-badge.best{background:#c9a96e;color:#fff}
.sec-badge.new{background:#111;color:#fff}
.sec-badge.promo{background:#c0392b;color:#fff}

/* ===== CART & CHECKOUT KEPT BUT IMPROVED ===== */
.cart-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:600;justify-content:flex-end;backdrop-filter:blur(2px)}
.cart-overlay.open{display:flex}
.cart-sidebar{background:#fff;width:340px;max-width:95vw;height:100%;display:flex;flex-direction:column;animation:slideInRight .3s ease}
@keyframes slideInRight{from{transform:translateX(100%)}to{transform:translateX(0)}}
.cart-header{display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.4rem;border-bottom:1px solid #f0f0f0}
.cart-title{font-family:'Playfair Display',serif;font-size:1.05rem;font-weight:400}
.cart-close{background:none;border:none;font-size:1.2rem;cursor:pointer;color:#888;transition:color .2s;padding:.2rem}
.cart-close:hover{color:#111}
.cart-items{flex:1;overflow-y:auto;padding:1rem}
.cart-empty{text-align:center;padding:3rem 1rem;color:#bbb;font-size:.8rem;letter-spacing:.05em}
.cart-item{display:flex;gap:.8rem;padding:.8rem 0;border-bottom:1px solid #f5f5f5}
.cart-item-img{width:56px;height:68px;object-fit:cover;border-radius:2px;flex-shrink:0;background:#f4f3f1}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:.78rem;font-weight:600;line-height:1.35;margin-bottom:.2rem}
.cart-item-detail{font-size:.65rem;color:#999;margin-bottom:.25rem}
.cart-item-price{font-size:.82rem;font-weight:800}
.cart-item-remove{background:none;border:none;color:#ccc;cursor:pointer;font-size:.9rem;padding:.2rem;align-self:flex-start;transition:color .2s}
.cart-item-remove:hover{color:#c0392b}
.cart-footer{padding:1rem 1.4rem;border-top:1px solid #f0f0f0}
.cart-total-row{display:flex;justify-content:space-between;margin-bottom:.8rem;font-size:.82rem}
.cart-total{font-weight:800;font-size:.95rem}
.cart-checkout-btn{width:100%;background:#111;color:#fff;border:none;font-family:'Raleway',sans-serif;font-size:.75rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:1rem;cursor:pointer;transition:background .2s;border-radius:3px}
.cart-checkout-btn:hover{background:#333}

/* ===== CRITICAL MOBILE FIXES ===== */

/* Modal close button — ensure visible above gallery */
.modal-close{z-index:50}

/* On very small phones, reduce modal info padding */
@media(max-width:380px){
  .modal-info{padding:.85rem .85rem 1.5rem;gap:.65rem}
  .mi-actions{flex-direction:column}
  .mi-cart-btn,.mi-order-btn{font-size:.74rem;padding:.85rem}
  .mi-size-btn{min-width:44px;height:44px;font-size:.72rem}
  .modal-sugg-grid{grid-template-columns:repeat(2,1fr);gap:.5rem}
}

/* Fix: modal-box on mobile — ensure close button stays visible on scroll */
@media(max-width:639px){
  .modal-overlay{padding:0!important;align-items:flex-end!important}
  .modal-box{padding-top:0;width:100vw!important;max-width:100vw!important;border-radius:18px 18px 0 0!important}
  .modal-close{
    position:fixed;
    top:.8rem;right:.8rem;
    z-index:600;
  }
}

/* Products grid — ensure no overflow on small screens */
.products-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.7rem;
  width:100%;
}
@media(min-width:360px){.products-grid{gap:.8rem}}

/* Fix: checkout form layout */
.checkout-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:700;align-items:flex-end;justify-content:center;backdrop-filter:blur(3px)}
.checkout-overlay.open{display:flex}
.checkout-box{background:#fff;width:100%;max-width:500px;border-radius:20px 20px 0 0;padding:1.5rem 1.2rem 2.5rem;max-height:92vh;overflow-y:auto;animation:slideUp .3s ease;position:relative}
.checkout-close{position:absolute;top:1rem;right:1rem;background:none;border:1.5px solid #e5e5e5;border-radius:50%;width:32px;height:32px;font-size:1rem;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#555}
.checkout-title{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:400;margin-bottom:1.2rem}
.checkout-form{display:flex;flex-direction:column;gap:.75rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.form-group{display:flex;flex-direction:column;gap:.3rem}
.form-group label{font-size:.6rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#999}
.form-group input,.form-group textarea,.form-group select{border:1.5px solid #e5e5e5;border-radius:8px;padding:.65rem .8rem;font-size:.82rem;outline:none;font-family:'Raleway',sans-serif;color:#111;background:#fff;transition:border .2s}
.form-group input:focus,.form-group textarea:focus{border-color:#111}
.order-summary{background:#f9f8f7;border-radius:8px;padding:.75rem;font-size:.72rem;color:#555;line-height:1.8;border:1px solid #eee}
.total-final-box{border:1px solid #e5e5e5;border-radius:8px;overflow:hidden}
.total-row{display:flex;justify-content:space-between;padding:.5rem .75rem;font-size:.78rem;border-bottom:1px solid #f0f0f0}
.total-row:last-child{border-bottom:none}
.total-grand{background:#111;color:#fff;font-weight:800;font-size:.88rem}
.submit-order-btn{display:flex;align-items:center;justify-content:center;gap:.6rem;background:#25D366;color:#fff;border:none;border-radius:10px;padding:1.1rem;font-size:.82rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;cursor:pointer;font-family:'Raleway',sans-serif;transition:background .25s}
.submit-order-btn:hover{background:#1da851}
.city-field-wrap{position:relative}
.city-dropdown{position:absolute;left:0;right:0;top:calc(100% + 4px);background:#fff;border:1.5px solid #e5e5e5;border-radius:10px;max-height:200px;overflow-y:auto;z-index:800;box-shadow:0 8px 24px rgba(0,0,0,.12);display:none}
.city-dropdown.open{display:block}
.city-drop-header{font-size:.58rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#999;padding:.5rem .75rem;border-bottom:1px solid #f0f0f0}
.city-drop-item{display:flex;justify-content:space-between;align-items:center;padding:.55rem .75rem;font-size:.75rem;cursor:pointer;transition:background .15s}
.city-drop-item:hover{background:#f9f8f7}
.city-drop-price{font-weight:700;color:#111;font-size:.72rem}
.city-drop-price.mid{color:#f59e0b}
.city-hint{font-size:.65rem;font-weight:600;margin-top:.2rem}
.city-hint.casa{color:#15803d}
.city-hint.hors{color:#1d4ed8}
.thankyou-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.7);z-index:900;align-items:center;justify-content:center;padding:1.5rem}
.thankyou-overlay.open{display:flex}
.thankyou-box{background:#fff;border-radius:16px;padding:2.5rem 1.5rem;text-align:center;max-width:340px;width:100%}
.thankyou-check{width:56px;height:56px;background:#dcfce7;border-radius:50%;font-size:1.5rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1rem;color:#15803d}
.thankyou-title{font-family:'Playfair Display',serif;font-size:1.2rem;font-weight:400;margin-bottom:.6rem}
.thankyou-msg{font-size:.75rem;color:#666;line-height:1.7;margin-bottom:.75rem}
.thankyou-brand{font-size:.6rem;color:#bbb;font-style:italic;margin-bottom:1.2rem;display:block}
.thankyou-btn{background:#111;color:#fff;border:none;border-radius:8px;padding:.8rem 1.8rem;font-size:.78rem;font-weight:700;cursor:pointer;font-family:'Raleway',sans-serif}

/* ===== LAZY LOADING ===== */
img.lazy-img{
  background:#f0ede8;
  transition:opacity .4s ease;
  opacity:0;
}
img.lazy-loaded{
  opacity:1;
}
/* Shimmer on unloaded cards */
.card-photo img:not(.lazy-loaded){
  background:linear-gradient(90deg,#f0ede8 25%,#e8e5e0 50%,#f0ede8 75%);
  background-size:200% 100%;
  animation:shimmer 1.4s infinite;
}

/* Gallery main image cursor */
.gallery-main-vert img{cursor:zoom-in}

/* Lightbox swipe hint */
#lightbox img{
  transition:opacity .2s;
}

.promo-badge,.new-badge,.best-badge{
  position:absolute;
  font-size:.5rem;font-weight:700;padding:.22rem .55rem;
  letter-spacing:.1em;text-transform:uppercase;
  z-index:5;border-radius:2px;
}
.promo-badge{background:#b5341a;color:#fff;top:.55rem;right:.55rem}
.new-badge{background:var(--charcoal);color:var(--gold);top:.55rem;left:.55rem}
.best-badge{background:var(--gold);color:#fff;top:.55rem;left:.55rem}

/* ===================================================
   LUXURY OLD MONEY ADDITIONS
   =================================================== */

/* Warm cream background everywhere */
.home-section{background:var(--cream)}
.home-section:nth-child(even){background:var(--cream-dark)}
.about-section{background:var(--cream-dark)}

/* Section titles — serif */
.home-section-title{font-family:'Playfair Display',serif;font-size:1.4rem;font-weight:400;color:var(--charcoal);letter-spacing:.01em}
.content-title{font-family:'Playfair Display',serif;font-weight:400;color:var(--charcoal)}

/* Card hover — gold border accent */
.product-card{border:1px solid transparent;transition:border-color .25s,transform .2s}
.product-card:hover{border-color:var(--gold-light);transform:translateY(-2px)}

/* Card quick button — gold */
.card-quick{
  background:var(--charcoal);color:var(--gold);
  border:1px solid var(--gold);
  font-family:'Raleway',sans-serif;
  font-size:.6rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;
  padding:.55rem 1.4rem;cursor:pointer;
}

/* Sec cards — luxury */
.sec-card{background:var(--cream);border:1px solid var(--border)}
.sec-card-info{background:var(--cream);padding:.65rem .55rem .85rem}
.sec-card-name{font-size:.78rem;font-weight:500;color:var(--charcoal);line-height:1.3;margin-bottom:.25rem}
.sec-card-price{font-size:.82rem;font-weight:700;color:var(--charcoal);font-family:'Playfair Display',serif}

/* Slide btn gold */
.slide-btn{background:transparent;border:1px solid var(--gold);color:var(--gold)}
.slide-btn:hover{background:var(--gold);color:var(--charcoal)}

/* About section */
.about-title{font-family:'Playfair Display',serif;color:var(--charcoal)}
.about-label{color:var(--gold);letter-spacing:.2em;text-transform:uppercase;font-size:.6rem;font-weight:600}

/* Cart sidebar */
.cart-sidebar{background:var(--cream)}
.cart-checkout-btn{background:var(--charcoal)}
.cart-checkout-btn:hover{background:var(--charcoal-soft)}

/* Checkout */
.checkout-box{background:var(--cream)}
.checkout-title{font-family:'Playfair Display',serif;font-weight:400;color:var(--charcoal)}
.form-group input:focus,.form-group textarea:focus{border-color:var(--gold)}
.submit-order-btn{background:var(--charcoal)}
.submit-order-btn:hover{background:#25D366}

/* Thank you */
.thankyou-check{background:var(--gold-pale);color:var(--gold)}
.thankyou-title{font-family:'Playfair Display',serif;font-weight:400}
.thankyou-btn{background:var(--charcoal)}

/* Floating WA */
.floating-wa{background:var(--charcoal);border:1px solid var(--gold)}

/* Loading ring gold */
.loading-ring{border-top-color:var(--gold)}

/* Search bar */
.search-box{background:var(--cream)}

/* Suggestion cards */
.sugg-card{background:var(--cream);border:1px solid var(--border)}
.sugg-card-name{color:var(--charcoal);font-weight:500}
.sugg-card-price{font-family:'Playfair Display',serif;font-weight:700;color:var(--charcoal)}

/* Modal gallery background */
.modal-gallery{background:var(--cream-dark)}
.gallery-thumbs-vert{background:var(--cream-dark)}

/* Modal info */
.modal-info{background:var(--cream)}
.mi-desc-block{background:var(--cream-dark);border-color:var(--border)}

/* Color buttons */
.mi-color-btn{border-color:var(--border);background:var(--cream)}
.mi-color-btn.active{border-color:var(--charcoal);background:var(--charcoal);color:var(--gold)}

/* Qty */
.qty-btn{background:var(--cream-dark)}

/* Accordion */
.mi-accord-item summary{color:var(--text2)}

/* Modal suggestions */
.modal-suggestions{background:var(--cream-dark);border-top-color:var(--border)}
.modal-sugg-title{font-family:'Playfair Display',serif;font-weight:400;color:var(--charcoal)}

/* Size guide */
.sg-box{background:var(--cream)}
.sg-title{font-family:'Playfair Display',serif;font-weight:400}

/* Scrollbar — subtle */
::-webkit-scrollbar{width:4px;height:4px}
::-webkit-scrollbar-track{background:var(--cream)}
::-webkit-scrollbar-thumb{background:var(--gold-light);border-radius:2px}

/* Selection color */
::selection{background:var(--gold-pale);color:var(--charcoal)}
