/* =============================================================
   Relax Home Lebanon — نظام تصميم واجهة المتجر (RTL)
   Warm, premium palette drawn from the brand logo (cream /
   espresso / beige) with a terracotta accent. Arabic-first:
   Cairo for headings, Tajawal for body, logical properties
   throughout so the layout is RTL-native.
   ============================================================= */

:root{
  --rh-cream:      #FBF7F1;
  --rh-cream-dark: #F3EADD;
  --rh-sand:       #E9DCC9;
  --rh-espresso:   #5A4032;
  --rh-espresso-dk:#33241B;
  --rh-terracotta: #C96F4A;
  --rh-terracotta-dk:#A9552F;
  --rh-blush:      #EFC7CE;
  --rh-sage:       #6F926C;
  --rh-rust:       #B44A3C;
  --rh-gold:       #C9A227;
  --rh-white:      #FFFFFF;
  --rh-ink-soft:   #8A7A6A;
  --rh-radius:     16px;
  --rh-radius-sm:  10px;
  --rh-shadow:     0 4px 18px rgba(51,36,27,.08);
  --rh-shadow-lg:  0 14px 40px rgba(51,36,27,.14);
  --rh-font-head:  'Cairo', sans-serif;
  --rh-font-body:  'Tajawal', sans-serif;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }
html,body{
  background:var(--rh-cream);
  color:var(--rh-espresso-dk);
  font-family:var(--rh-font-body);
  font-size:16px;
  line-height:1.75;
}

h1,h2,h3,h4,h5,h6{
  font-family:var(--rh-font-head);
  color:var(--rh-espresso-dk);
  font-weight:700;
  line-height:1.35;
}

a{ color:var(--rh-espresso); text-decoration:none; transition:color .15s ease; }
a:hover{ color:var(--rh-terracotta); }

::selection{ background:var(--rh-terracotta); color:#fff; }

/* ---------------- Buttons ---------------- */
.rh-btn, button.rh-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  background:var(--rh-espresso); color:var(--rh-cream);
  border:1px solid var(--rh-espresso);
  border-radius:999px;
  padding:.7rem 1.7rem;
  font-family:var(--rh-font-head);
  font-weight:700; font-size:.95rem;
  transition:background .15s ease, transform .1s ease, box-shadow .15s ease;
}
.rh-btn:hover{ background:var(--rh-espresso-dk); color:var(--rh-cream); box-shadow:var(--rh-shadow); }
.rh-btn:active{ transform:scale(.97); }
.rh-btn-accent{ background:var(--rh-terracotta); border-color:var(--rh-terracotta); }
.rh-btn-accent:hover{ background:var(--rh-terracotta-dk); }
.rh-btn-outline{ background:transparent; color:var(--rh-espresso); border:1.5px solid var(--rh-espresso); }
.rh-btn-outline:hover{ background:var(--rh-espresso); color:var(--rh-cream); }
.rh-btn-sm{ padding:.45rem 1.1rem; font-size:.85rem; }
.rh-btn-block{ width:100%; }
.rh-btn:disabled, .rh-btn.disabled{ opacity:.5; cursor:not-allowed; }
.rh-btn-whatsapp{ background:#25A55C; border-color:#25A55C; }
.rh-btn-whatsapp:hover{ background:#1C8449; }

/* ---------------- Header ---------------- */
.rh-topbar{ background:var(--rh-espresso-dk); color:var(--rh-cream-dark); font-size:.82rem; }
.rh-topbar a{ color:var(--rh-cream-dark); }
.rh-topbar a:hover{ color:#fff; }
.rh-topbar-inner{ display:flex; justify-content:space-between; padding:.45rem 0; flex-wrap:wrap; gap:.5rem; }
.rh-topbar-inner i{ margin-inline-end:.4em; color:var(--rh-blush); }

.rh-navbar{
  background:rgba(251,247,241,.92);
  backdrop-filter:blur(10px);
  padding:.7rem 0;
  border-bottom:1px solid var(--rh-sand);
  position:sticky; top:0; z-index:1030;
}
.rh-brand img{ height:54px; border-radius:12px; }
.rh-nav-links .nav-link{
  color:var(--rh-espresso-dk);
  font-family:var(--rh-font-head); font-weight:700;
  padding:.5rem 1rem; position:relative;
}
.rh-nav-links .nav-link::after{
  content:""; position:absolute; inset-inline:1rem; bottom:.2rem; height:2px;
  background:var(--rh-terracotta); border-radius:2px;
  transform:scaleX(0); transition:transform .18s ease;
}
.rh-nav-links .nav-link:hover{ color:var(--rh-terracotta); }
.rh-nav-links .nav-link:hover::after{ transform:scaleX(1); }
.dropdown-menu{
  border:1px solid var(--rh-sand); border-radius:var(--rh-radius-sm);
  box-shadow:var(--rh-shadow-lg); padding:.5rem;
}
.dropdown-item{ border-radius:8px; padding:.5rem .9rem; font-weight:500; }
.dropdown-item:hover{ background:var(--rh-cream-dark); color:var(--rh-espresso-dk); }

.rh-search{ align-items:center; margin-inline-end:1rem; }
.rh-search input{
  border:1px solid var(--rh-sand); background:var(--rh-white);
  border-radius:0 999px 999px 0; border-inline-end:none; padding-inline-start:1.1rem; min-width:210px;
}
.rh-search input:focus{ border-color:var(--rh-espresso); box-shadow:none; }
.rh-search button{
  border:1px solid var(--rh-espresso); background:var(--rh-espresso); color:#fff;
  border-radius:999px 0 0 999px; padding:0 1.1rem;
}
.rh-search button:hover{ background:var(--rh-espresso-dk); }

.rh-cart-link{ position:relative; font-size:1.35rem; color:var(--rh-espresso-dk); padding:.3rem .5rem; }
.rh-cart-badge{
  position:absolute; top:-4px; inset-inline-start:-6px; background:var(--rh-terracotta); color:#fff;
  font-size:.65rem; font-weight:700; border-radius:50%; min-width:19px; height:19px;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
.navbar-toggler{ border-color:var(--rh-sand); }

/* ---------------- Hero ---------------- */
.rh-hero{
  position:relative; border-radius:calc(var(--rh-radius) + 8px); overflow:hidden;
  margin:1.75rem 0; box-shadow:var(--rh-shadow-lg);
}
.rh-hero img, .rh-hero video{ width:100%; display:block; max-height:560px; object-fit:cover; }
.rh-hero-caption{
  position:absolute; inset:0; display:flex; flex-direction:column;
  justify-content:flex-end; align-items:flex-start; padding:2.5rem;
  background:linear-gradient(25deg, rgba(40,26,18,.72) 8%, rgba(40,26,18,.25) 45%, transparent 75%);
  color:#fff;
}
.rh-hero-caption h1{
  color:#fff; font-size:clamp(1.7rem, 4vw, 3rem); font-weight:800;
  text-shadow:0 2px 14px rgba(0,0,0,.25); margin-bottom:.75rem; max-width:22ch;
}
.rh-hero-caption p{ font-size:1.05rem; max-width:48ch; color:rgba(255,255,255,.9); }

/* ---------------- USP strip ---------------- */
.rh-usp{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem;
  margin:2rem 0;
}
.rh-usp-item{
  display:flex; align-items:center; gap:.9rem;
  background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius); padding:1rem 1.2rem;
}
.rh-usp-item i{
  font-size:1.35rem; color:var(--rh-terracotta);
  background:var(--rh-cream-dark); width:48px; height:48px; flex:0 0 48px;
  border-radius:14px; display:flex; align-items:center; justify-content:center;
}
.rh-usp-item strong{ display:block; font-family:var(--rh-font-head); font-size:.95rem; }
.rh-usp-item small{ color:var(--rh-ink-soft); }

/* ---------------- Sections ---------------- */
.rh-section{ padding:3rem 0; }
.rh-section-head{
  display:flex; align-items:baseline; justify-content:space-between;
  margin-bottom:1.75rem; gap:1rem; flex-wrap:wrap;
}
.rh-section-head h2{
  font-size:1.7rem; margin:0; font-weight:800; position:relative; padding-inline-start:.9rem;
}
.rh-section-head h2::before{
  content:""; position:absolute; inset-inline-start:0; top:.35rem; bottom:.35rem;
  width:4px; border-radius:4px; background:var(--rh-terracotta);
}
.rh-section-head a{ font-weight:700; font-family:var(--rh-font-head); white-space:nowrap; }
.rh-section-alt{
  background:var(--rh-cream-dark); border-radius:calc(var(--rh-radius) + 8px);
  padding:2.5rem 2rem; margin:1.5rem 0;
}

/* ---------------- Category carousel (horizontal scroll, image-based) ---------------- */
.rh-category-carousel{
  display:flex; gap:1.1rem; overflow-x:auto; padding:.25rem .25rem 1.15rem;
  scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
  scrollbar-width:thin; scrollbar-color:var(--rh-terracotta) var(--rh-cream-dark);
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.rh-category-carousel::-webkit-scrollbar{ height:8px; }
.rh-category-carousel::-webkit-scrollbar-track{ background:var(--rh-cream-dark); border-radius:999px; }
.rh-category-carousel::-webkit-scrollbar-thumb{ background:var(--rh-terracotta); border-radius:999px; border:2px solid var(--rh-cream); }
.rh-category-carousel::-webkit-scrollbar-thumb:hover{ background:var(--rh-terracotta-dk); }
.rh-category-card{
  flex:0 0 auto; width:104px; scroll-snap-align:start;
  display:flex; flex-direction:column; align-items:center; gap:.55rem;
  text-align:center; color:var(--rh-espresso-dk);
  font-family:var(--rh-font-head); font-weight:700; font-size:.85rem;
}
.rh-category-card-img{
  width:88px; height:88px; border-radius:50%; overflow:hidden;
  background:var(--rh-cream); border:3px solid var(--rh-sand);
  display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; color:var(--rh-terracotta);
  transition:border-color .18s ease, transform .18s cubic-bezier(.34,1.56,.64,1);
}
.rh-category-card-img img{ width:100%; height:100%; object-fit:cover; }
.rh-category-card:hover .rh-category-card-img{ border-color:var(--rh-terracotta); transform:translateY(-4px) scale(1.05); }
.rh-category-card.active .rh-category-card-img{ border-color:var(--rh-terracotta); box-shadow:0 0 0 3px rgba(201,111,74,.2); }
@media (max-width:576px){
  .rh-category-card{ width:84px; }
  .rh-category-card-img{ width:72px; height:72px; font-size:1.3rem; }
}

/* ---------------- Product grid / cards ---------------- */
.rh-product-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:1.5rem; }
.rh-product-card{
  background:var(--rh-white); border:1px solid var(--rh-sand); border-radius:var(--rh-radius);
  overflow:hidden; display:flex; flex-direction:column;
  transition:box-shadow .2s ease, transform .2s ease;
}
.rh-product-card:hover{ box-shadow:var(--rh-shadow-lg); transform:translateY(-4px); }
.rh-product-card-media{ position:relative; display:block; aspect-ratio:1/1; background:var(--rh-cream-dark); overflow:hidden; }
.rh-product-card-media img{ width:100%; height:100%; object-fit:cover; transition:transform .45s ease; }
.rh-product-card:hover .rh-product-card-media img{ transform:scale(1.06); }
.rh-product-card-noimg{ width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:var(--rh-sand); font-size:2.5rem; }
.rh-product-card-body{ padding:1rem 1.1rem 1.2rem; display:flex; flex-direction:column; gap:.4rem; flex:1; }
.rh-product-card-title{
  font-family:var(--rh-font-head); font-weight:700; color:var(--rh-espresso-dk);
  font-size:.95rem; line-height:1.5;
}
.rh-card-stock{ display:flex; align-items:center; gap:.4rem; font-size:.76rem; color:var(--rh-sage); font-weight:600; }
.rh-product-card-price{ display:flex; align-items:center; gap:.6rem; margin-top:auto; }
.rh-price-now{ font-weight:800; color:var(--rh-terracotta-dk); font-size:1.05rem; }
.rh-price-was{ text-decoration:line-through; color:var(--rh-ink-soft); font-size:.85rem; }
.rh-card-add-cart{
  position:relative; z-index:1; margin-inline-start:auto; flex:0 0 auto;
  width:38px; height:38px; border-radius:50%; border:none; background:var(--rh-espresso-dk); color:#fff;
  font-size:1rem; display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:transform .15s ease, background .15s ease, color .15s ease;
}
.rh-card-add-cart:hover{ background:var(--rh-terracotta); transform:scale(1.1); }
.rh-card-add-cart.added{ background:var(--rh-sage); }
.rh-card-add-cart:disabled{ opacity:.35; cursor:not-allowed; transform:none; }

.rh-badge{
  position:absolute; top:.7rem; inset-inline-start:.7rem; padding:.25rem .7rem;
  border-radius:999px; font-size:.72rem; font-weight:700; color:#fff; font-family:var(--rh-font-head);
}
.rh-badge-new{ background:var(--rh-sage); }
.rh-badge-sale{ background:var(--rh-terracotta); inset-inline-start:auto; inset-inline-end:.7rem; }
.rh-badge-oos{ background:var(--rh-rust); top:auto; bottom:.7rem; }

/* ---------------- Breadcrumbs ---------------- */
.rh-breadcrumb{ font-size:.85rem; color:var(--rh-ink-soft); margin-bottom:1.5rem; }
.rh-breadcrumb a{ color:var(--rh-ink-soft); }
.rh-breadcrumb a:hover{ color:var(--rh-espresso); }

/* ---------------- Shop ---------------- */
.rh-toolbar{
  display:grid; grid-template-columns:minmax(0,1fr) minmax(180px,auto); align-items:center;
  margin-bottom:1.25rem; gap:.75rem;
  background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius-sm); padding:.7rem 1.1rem;
}
.rh-toolbar-right{ min-width:0; }
.rh-toolbar-right select{ width:100%; }

/* ---------------- Product detail ---------------- */
.rh-product-gallery-main{
  border:1px solid var(--rh-sand); border-radius:var(--rh-radius); overflow:hidden; background:var(--rh-white);
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; position:relative;
}
.rh-product-carousel-track{ width:100%; height:100%; display:flex; }
.rh-product-gallery-main img{ width:100%; height:100%; object-fit:cover; cursor:zoom-in; flex:0 0 100%; display:none; }
.rh-product-gallery-main img.active{ display:block; }
.rh-carousel-btn{ position:absolute; top:50%; transform:translateY(-50%); z-index:2; width:40px; height:40px; border:0; border-radius:50%; background:rgba(255,255,255,.9); color:var(--rh-espresso-dk); box-shadow:var(--rh-shadow); }
.rh-carousel-prev{ right:.75rem; }.rh-carousel-next{ left:.75rem; }
.rh-carousel-dots{ display:flex; justify-content:center; gap:.4rem; margin-top:.75rem; min-height:10px; }
.rh-carousel-dots button{ width:9px; height:9px; border:0; border-radius:50%; padding:0; background:var(--rh-sand); }
.rh-carousel-dots button.active{ background:var(--rh-terracotta); }
.rh-product-gallery-thumbs{ display:flex; gap:.6rem; margin-top:.75rem; flex-wrap:wrap; }
.rh-product-gallery-thumbs img{
  width:72px; height:72px; object-fit:cover; border-radius:var(--rh-radius-sm);
  border:2px solid transparent; cursor:pointer; transition:border-color .15s ease;
}
.rh-product-gallery-thumbs img.active{ border-color:var(--rh-terracotta); }

.rh-product-title{ font-size:1.9rem; margin-bottom:.4rem; font-weight:800; }
.rh-product-sku{ color:var(--rh-ink-soft); font-size:.85rem; margin-bottom:1rem; }
.rh-product-price{ font-size:1.65rem; font-weight:800; color:var(--rh-terracotta-dk); margin-bottom:.25rem; font-family:var(--rh-font-head); }
.rh-product-price .rh-price-was{ font-size:1.05rem; margin-inline-start:.6rem; font-weight:500; }
.rh-stock{ font-weight:700; font-size:.9rem; margin-bottom:1.25rem; }
.rh-stock.in{ color:var(--rh-sage); }
.rh-stock.low{ color:var(--rh-terracotta); }
.rh-stock.out{ color:var(--rh-rust); }

.rh-option-group{ margin-bottom:1.25rem; }
.rh-option-label{
  font-weight:800; font-size:.85rem; margin-bottom:.5rem; display:block;
  font-family:var(--rh-font-head); color:var(--rh-espresso);
}
.rh-swatches{ display:flex; gap:.6rem; flex-wrap:wrap; }
.rh-swatch{
  width:38px; height:38px; border-radius:50%; border:2px solid var(--rh-sand);
  cursor:pointer; position:relative; transition:transform .12s ease;
}
.rh-swatch:hover{ transform:scale(1.1); }
.rh-swatch.active{ border-color:var(--rh-espresso); box-shadow:0 0 0 2px var(--rh-cream), 0 0 0 4px var(--rh-espresso); }
.rh-size-options{ display:flex; gap:.6rem; flex-wrap:wrap; }
.rh-size-option{
  border:1.5px solid var(--rh-sand); border-radius:999px; padding:.45rem 1.15rem;
  cursor:pointer; font-weight:700; background:var(--rh-white); font-family:var(--rh-font-head);
  transition:all .15s ease;
}
.rh-size-option:hover{ border-color:var(--rh-espresso); }
.rh-size-option.active{ background:var(--rh-espresso); color:#fff; border-color:var(--rh-espresso); }
.rh-size-option.disabled{ opacity:.4; cursor:not-allowed; text-decoration:line-through; }

.rh-qty-input{
  display:flex; align-items:center; border:1.5px solid var(--rh-sand);
  border-radius:999px; width:fit-content; overflow:hidden; background:var(--rh-white);
}
.rh-qty-input button{ background:none; border:none; width:40px; height:44px; font-size:1.15rem; color:var(--rh-espresso); }
.rh-qty-input button:hover{ background:var(--rh-cream-dark); }
.rh-qty-input input{ width:52px; border:none; text-align:center; font-weight:700; background:transparent; }
.rh-qty-input input:focus{ outline:none; }

.rh-tabs{ margin-top:3rem; border-bottom:1px solid var(--rh-sand); }
.rh-tabs .nav-link{
  color:var(--rh-espresso-dk); font-weight:700; font-family:var(--rh-font-head);
  border:none; border-bottom:2.5px solid transparent; border-radius:0; background:none;
}
.rh-tabs .nav-link.active{ color:var(--rh-terracotta-dk); border-bottom-color:var(--rh-terracotta); background:none; }
.rh-tab-content-body{ padding:1.5rem 0; }

/* ---------------- Product detail dialog (home page) ---------------- */
.rh-modal{
  border:none; border-radius:var(--rh-radius); padding:0;
  width:min(920px, 92vw); max-height:88vh; margin:auto;
  background:var(--rh-white); box-shadow:var(--rh-shadow-lg);
}
.rh-modal::backdrop{ background:rgba(36,31,23,.55); backdrop-filter:blur(2px); }
.rh-modal-close{
  position:sticky; float:inline-end; top:.9rem; inset-inline-end:.9rem; z-index:2;
  width:38px; height:38px; border-radius:50%; border:none; background:var(--rh-white);
  box-shadow:var(--rh-shadow); color:var(--rh-espresso-dk); font-size:1.1rem;
  display:flex; align-items:center; justify-content:center; margin-inline-start:auto;
}
.rh-modal-close:hover{ background:var(--rh-terracotta); color:#fff; }
.rh-modal-body{ padding:1.75rem; overflow-y:auto; max-height:88vh; clear:both; }
.rh-modal-loading{ display:flex; align-items:center; justify-content:center; padding:4rem 0; font-size:1.6rem; color:var(--rh-ink-soft); }
@media (max-width:576px){
  .rh-toolbar{ grid-template-columns:minmax(0,1fr) minmax(130px,42%); padding:.6rem; }
  .rh-live-search input{ min-width:0; }
  .rh-modal{ width:100vw; max-height:100vh; height:100vh; border-radius:0; }
  .rh-modal-body{ max-height:100vh; padding:3.5rem 1.1rem 1.1rem; }
  .rh-modal-close{ position:fixed; top:.75rem; inset-inline-end:.75rem; z-index:10001; }
}

/* ---------------- Cart / checkout ---------------- */
.rh-cart-list{ display:flex; flex-direction:column; gap:1rem; }
.rh-cart-row{
  display:flex; gap:1rem; background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius); padding:1rem;
}
.rh-cart-row-media{
  width:76px; height:76px; flex:0 0 76px; border-radius:var(--rh-radius-sm); overflow:hidden;
  background:var(--rh-cream-dark); display:flex; align-items:center; justify-content:center;
  color:var(--rh-sand); font-size:1.5rem;
}
.rh-cart-row-media-img{ width:100%; height:100%; object-fit:cover; }
.rh-cart-row-body{ flex:1; min-width:0; display:flex; flex-direction:column; gap:.5rem; }
.rh-cart-row-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:.75rem; }
.rh-cart-row-top a{ font-weight:700; font-family:var(--rh-font-head); color:var(--rh-espresso-dk); }
.rh-cart-row-remove{ background:none; border:none; color:var(--rh-rust); font-size:1rem; padding:.25rem; flex:0 0 auto; }
.rh-cart-row-remove:hover{ color:var(--rh-espresso-dk); }
.rh-cart-row-meta{ display:flex; align-items:center; justify-content:space-between; gap:.75rem; flex-wrap:wrap; }
.rh-cart-row-price{ color:var(--rh-ink-soft); font-size:.9rem; }
.rh-cart-row-total{ font-weight:800; color:var(--rh-coral-dark); font-family:var(--rh-font-head); min-width:4.5em; text-align:end; }
.rh-cart-summary{
  background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius); padding:1.6rem; box-shadow:var(--rh-shadow);
}
.rh-cart-summary h5{ font-weight:800; margin-bottom:1rem; }
.rh-cart-summary-row{ display:flex; justify-content:space-between; padding:.4rem 0; gap:1rem; }
.rh-cart-summary-row.total{
  font-weight:800; font-size:1.15rem; border-top:1.5px dashed var(--rh-sand);
  margin-top:.5rem; padding-top:.85rem; color:var(--rh-terracotta-dk);
}
.rh-empty-state{ text-align:center; padding:4rem 1rem; color:var(--rh-ink-soft); }
.rh-empty-state i{ font-size:3rem; color:var(--rh-sand); margin-bottom:1rem; display:block; }

.rh-form label{ font-weight:700; margin-bottom:.35rem; font-size:.9rem; font-family:var(--rh-font-head); }
.rh-form .form-control{ border-color:var(--rh-sand); border-radius:var(--rh-radius-sm); padding:.65rem 1rem; background:var(--rh-white); }
.rh-form .form-control:focus{ border-color:var(--rh-espresso); box-shadow:0 0 0 .2rem rgba(90,64,50,.1); }

/* ---------------- Static content pages ---------------- */
.rh-content-page h1{ margin-bottom:1.5rem; font-weight:800; }
.rh-content-page h2{ font-size:1.3rem; margin-top:2rem; font-weight:800; }
.rh-content-page p, .rh-content-page li{ color:var(--rh-espresso-dk); }
.rh-faq-item{
  background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius); padding:1.3rem 1.5rem; margin-bottom:1rem;
}
.rh-faq-item h3{ font-size:1.05rem; margin:0 0 .5rem; font-weight:800; color:var(--rh-terracotta-dk); }
.rh-faq-item h3 i{ margin-inline-end:.5rem; }

/* ---------------- Auth (login/reset) ---------------- */
.rh-auth-card{
  background:var(--rh-white); border:1px solid var(--rh-sand);
  border-radius:var(--rh-radius); padding:2rem; box-shadow:var(--rh-shadow);
}

/* ---------------- Footer ---------------- */
.rh-footer{ background:var(--rh-espresso-dk); color:var(--rh-cream-dark); margin-top:4rem; }
.rh-footer-grid{ display:flex; justify-content:center; padding:3rem 0 2rem; }
.rh-footer-contact-col{ display:flex; flex-direction:column; align-items:center; text-align:center; max-width:420px; }
.rh-footer-col h6{
  color:#fff; font-size:.95rem; margin-bottom:1rem; font-family:var(--rh-font-head); font-weight:800;
}
.rh-footer-col ul{ list-style:none; padding:0; margin:0; }
.rh-footer-col li{ margin-bottom:.6rem; }
.rh-footer-col a{ color:var(--rh-cream-dark); }
.rh-footer-col a:hover{ color:#fff; }
.rh-footer-contact{ display:inline-flex; flex-direction:column; align-items:flex-start; }
.rh-footer-contact li{ display:flex; gap:.6rem; align-items:flex-start; margin-bottom:.85rem; }
.rh-footer-contact i{ margin-top:.4rem; width:1.1em; text-align:center; color:var(--rh-blush); }
.rh-footer-social{
  display:flex; gap:.75rem; justify-content:center; margin-top:1.5rem; padding-top:1.5rem;
  border-top:1px solid rgba(255,255,255,.12); width:100%;
}
.rh-footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; transition:all .15s ease;
  color:var(--rh-cream-dark);
}
.rh-footer-social a:hover{ background:var(--rh-terracotta); border-color:var(--rh-terracotta); color:#fff; }
.rh-footer-bottom{ border-top:1px solid rgba(255,255,255,.12); padding:1rem 0; font-size:.8rem; text-align:center; color:#b8a894; }

/* ---------------- Floating WhatsApp ---------------- */
.rh-wa-float{
  position:fixed; bottom:1.4rem; inset-inline-start:1.4rem; z-index:1040;
  width:56px; height:56px; border-radius:50%; background:#25A55C; color:#fff;
  display:flex; align-items:center; justify-content:center; font-size:1.7rem;
  box-shadow:0 8px 24px rgba(0,0,0,.25); transition:transform .15s ease, background .15s ease;
}
.rh-wa-float:hover{ transform:scale(1.08); background:#1C8449; color:#fff; }

/* ---------------- Floating cart (mobile only — desktop already has the
   always-visible navbar cart icon) ---------------- */
.rh-cart-float{
  display:none; position:fixed; bottom:1.4rem; inset-inline-end:1.4rem; z-index:1040;
  width:56px; height:56px; border-radius:50%; background:var(--rh-espresso-dk); color:#fff;
  align-items:center; justify-content:center; font-size:1.5rem;
  box-shadow:0 8px 24px rgba(0,0,0,.25); transition:transform .15s ease, background .15s ease;
}
.rh-cart-float:hover{ transform:scale(1.1); background:var(--rh-espresso); color:#fff; }
.rh-cart-float-badge{ inset-inline-start:auto; inset-inline-end:-4px; top:-4px; background:var(--rh-terracotta-dk); }
@media (max-width:991px){
  .rh-cart-float{ display:flex; }
}

/* ---------------- Responsive ---------------- */
@media (max-width:991px){
  .rh-section{ padding:2rem 0; }
  .rh-toolbar{ gap:.6rem; }
  .rh-toolbar form.d-flex{ width:100%; }
  .rh-toolbar select{ flex:1; }
}
@media (max-width:576px){
  .rh-footer-contact-col{ max-width:100%; padding:0 1rem; }
  .rh-hero-caption{ padding:1.4rem; }
  .rh-hero-caption h1{ font-size:1.4rem; }
  .rh-product-grid{ grid-template-columns:repeat(2,1fr); gap:.75rem; }
  .rh-product-card-body{ padding:.75rem .8rem .9rem; }
  .rh-product-card-price{ flex-wrap:wrap; }
  .rh-card-add-cart{ width:100%; height:36px; font-size:.85rem; border-radius:999px; margin-top:.25rem; }
  .rh-section-alt{ padding:1.75rem 1.25rem; }
  .rh-topbar-inner{ justify-content:center; }
  .rh-cart-row{ flex-wrap:wrap; }
  .rh-cart-row-media{ width:64px; height:64px; flex-basis:64px; }
  .rh-cart-row-meta{ justify-content:space-between; }
  .rh-qty-input button{ width:36px; height:40px; }
}
