@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700;9..144,800&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =========================================================
   Just Muds — Premium Earthenware Theme (Envato-grade)
   ========================================================= */
:root{
  --clay:#a85a32;
  --clay-dark:#5e2f17;
  --clay-deep:#3a1c0c;
  --terracotta:#c97b4a;
  --sand:#f6efe6;
  --cream:#fbf7f1;
  --paper:#ffffff;
  --ink:#22160e;
  --muted:#8b7d70;
  --line:#ecdfd0;
  --gold:#c89b54;
  --accent:#c97b4a;
  --success:#2f8f5d;
  --danger:#c0392b;
  --radius:18px;
  --radius-lg:28px;
  --shadow-sm:0 4px 14px rgba(94,47,23,.06);
  --shadow:0 14px 40px rgba(94,47,23,.12);
  --shadow-lg:0 30px 60px -20px rgba(58,28,12,.35);
  --grad-warm:linear-gradient(135deg,#f7e7d0 0%,#efd4b3 45%,#e2b489 100%);
  --grad-clay:linear-gradient(135deg,#a85a32 0%,#7a3a1d 100%);
  --grad-dark:linear-gradient(135deg,#3a1c0c 0%,#1a0d06 100%);
  --ff-display:'Fraunces','Playfair Display',Georgia,serif;
  --ff-body:'Inter','Helvetica Neue',system-ui,sans-serif;
}

/* ============= LOGO IMAGE - LARGER SIZE ============= */
.jm-logo-img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 10px;
}

.jm-brand:hover .jm-logo-img {
  transform: scale(1.05);
}

*{scroll-behavior:smooth}
*,*::before,*::after{box-sizing:border-box}
html,body{overflow-x:hidden}
body{
  font-family:var(--ff-body);
  background:var(--cream);
  color:var(--ink);
  font-weight:400;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  padding-top: 108px;
}
h1,h2,h3,h4,h5,.jm-logo,.section-title{
  font-family:var(--ff-display);
  font-weight:600;
  letter-spacing:-.015em;
  line-height:1.15;
  color:var(--clay-deep);
}
a{color:var(--clay);text-decoration:none;transition:color .2s}
a:hover{color:var(--clay-deep)}
img{max-width:100%;display:block}

/* ============= TOP BAR ============= */
.top-bar{
 position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;

  background: var(--grad-dark);
  color:#f3e6d3;
  font-size:.78rem;
  letter-spacing:.06em;
  padding:.5rem 0;
}
.top-bar .marquee{
  display:flex;
  gap:3rem;
  animation:marq 28s linear infinite;
  white-space:nowrap;
}

@keyframes marq{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

.top-bar a{
  color:#f3e6d3;
}
.top-bar a:hover{
  color:#fff;
}

/* ============= NAV ============= */
.jm-nav{
  position: fixed;
  top: 32px; /* top-bar height adjust */
  left: 0;
  width: 100%;
  z-index: 10000;
  height: 70px;
  display: flex;
  align-items: center;

  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);

  transition: all .3s ease;
}

/* Scroll effect */
.jm-nav.scrolled{
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

/* Container alignment fix */
.jm-nav .container{
   display: flex;
  align-items: center;
}

/* ============= BRAND ============= */
.jm-brand{
  display: flex;
  align-items: center;
  overflow: visible;
}

/* ============= LOGO (IMPORTANT FIX) ============= */
.jm-logo-img{
  padding:10px;
 max-height: 98px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}

/* Hover */
.jm-brand:hover .jm-logo-img{
  transform:scale(1.05);
}

/* ============= NAV LINKS ============= */
.nav-link{
  color:var(--ink)!important;
  font-weight:500;
  font-size:.9rem;
  position:relative;
  padding:.35rem .7rem!important;
}

/* underline animation */
.nav-link::after{
  content:'';
  position:absolute;
  left:50%;
  bottom:.1rem;
  width:0;
  height:2px;
  background:var(--clay);
  transition:width .25s,left .25s;
  border-radius:2px;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:60%;
  left:20%;
}

.nav-link:hover{
  color:var(--clay)!important;
}

/* ============= DROPDOWN MENU ============= */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: white;
  padding: 8px 0;
  top: 100%;
  margin-top: 8px;
}

.dropdown-item {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.5rem;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(168, 90, 50, 0.08), transparent);
  color: var(--clay);
  border-left-color: var(--clay);
  padding-left: 1.8rem;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: rgba(168, 90, 50, 0.1);
  color: var(--clay);
}

/* ============= ICONS ============= */
.nav-icon{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  /* position:relative; */
  transition:.25s;
}

.nav-icon:hover{
  background:var(--sand);
  color:var(--clay-deep);
}

/* badge */
.nav-icon .badge{
  position:absolute;
  top:2px;
  right:2px;
  background:var(--clay);
  color:#fff;
  font-size:.62rem;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ============= DROPDOWN ============= */
.jm-dropdown{
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:.6rem;
}

.jm-dropdown .dropdown-item{
  border-radius:10px;
  color:var(--ink);
  font-size:.92rem;
  padding:.55rem .8rem;
}

.jm-dropdown .dropdown-item:hover{
  background:var(--sand);
  color:var(--clay-deep);
}

/* ============= RESPONSIVE ============= */

/* Tablet */
@media (max-width:992px){
  .jm-nav{
    height:65px;
  }

  .jm-logo-img{
     height: 60px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
}

/* Mobile */
@media (max-width:768px){
  .jm-nav{
     top: 35px;
    height: 62px;
  }

   body{
    padding-top: 95px;
  }

  .jm-logo-img{
    max-height: 75px;
  }
}

/* Small mobile */
@media (max-width:576px){
  .jm-nav{
    top: 32px;
    height: 58px;
  }

   body{
    padding-top: 88px;
  }

  .jm-logo-img{
    max-height: 65px;
  }
}
/* ============= BUTTONS ============= */
.btn{font-weight:500;border-radius:999px;padding:.7rem 1.5rem;transition:transform .25s,box-shadow .25s,background .25s,color .25s}
.btn-lg{padding:.95rem 2rem;font-size:1rem}
.btn-clay{
  background:var(--grad-clay);color:#fff;border:none;
  box-shadow:0 10px 24px -8px rgba(168,90,50,.6);
}
.btn-clay:hover{color:#fff;transform:translateY(-2px);box-shadow:0 16px 32px -10px rgba(168,90,50,.7)}
.btn-outline-clay{border:1.5px solid var(--clay);color:var(--clay);background:transparent}
.btn-outline-clay:hover{background:var(--clay);color:#fff;transform:translateY(-2px)}
.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--line)}
.btn-ghost:hover{background:#fff;border-color:var(--clay);color:var(--clay-deep)}
.btn-dark-clay{background:var(--clay-deep);color:#fff;border:none}
.btn-dark-clay:hover{background:#000;color:#fff;transform:translateY(-2px)}

/* ============= HERO ============= */
.hero{
  position:relative;
  padding:5.5rem 0 6rem;
  background:
    radial-gradient(1100px 500px at 85% 0%, rgba(201,123,74,.18), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(168,90,50,.12), transparent 55%),
    linear-gradient(180deg,#fbf2e3 0%, #f6e6cf 100%);
  overflow:hidden;
}
.hero::before{
  content:'';position:absolute;inset:0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(94,47,23,.05) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(94,47,23,.04) 1px, transparent 2px);
  background-size:60px 60px;
  opacity:.6;pointer-events:none;
}
.hero .eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  background:rgba(255,255,255,.6);backdrop-filter:blur(8px);
  border:1px solid rgba(168,90,50,.25);
  color:var(--clay-deep);font-weight:500;
  padding:.45rem 1rem;border-radius:999px;font-size:.82rem;
  margin-bottom:1.4rem;
}
.hero .eyebrow .pulse{width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 0 rgba(201,123,74,.7);animation:pulse 2s infinite}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(201,123,74,.7)}70%{box-shadow:0 0 0 14px rgba(201,123,74,0)}100%{box-shadow:0 0 0 0 rgba(201,123,74,0)}}
.hero h1{
  font-size:clamp(2.6rem,5.5vw,4.6rem);
  font-weight:600;
  line-height:1.02;
  color:var(--clay-deep);
}
.hero h1 em{font-style:italic;color:var(--clay);font-weight:500}
.hero .lead{font-size:1.18rem;color:#5a4738;max-width:560px;margin-top:1.2rem}
.hero-stats{display:flex;gap:2rem;margin-top:2.5rem;flex-wrap:wrap}
.hero-stats .num{font-family:var(--ff-display);font-size:1.8rem;color:var(--clay-deep);font-weight:700;line-height:1}
.hero-stats .lbl{font-size:.78rem;color:var(--muted);letter-spacing:.06em;text-transform:uppercase;margin-top:.2rem}

/* Hero collage */
.hero-collage{position:relative;height:560px;max-width:540px;margin-left:auto}
.hero-tile{
  position:absolute;border-radius:32px;overflow:hidden;
  box-shadow:var(--shadow-lg);
  background:linear-gradient(135deg,#d4a274,#7a3a1d);
  display:flex;align-items:center;justify-content:center;
  color:#fff7e9;font-size:5rem;
}
.hero-tile img{width:100%;height:100%;object-fit:cover}
.hero-tile.t1{width:62%;height:70%;top:0;right:0;animation:floatY 6s ease-in-out infinite}
.hero-tile.t2{width:46%;height:46%;bottom:0;left:0;background:linear-gradient(135deg,#efd4b3,#a85a32);animation:floatY 7s ease-in-out infinite reverse;animation-delay:.4s}
.hero-tile.t3{width:32%;height:32%;top:22%;left:4%;background:var(--grad-dark);color:#c89b54;font-size:2.6rem;border-radius:50%;animation:floatY 5s ease-in-out infinite;animation-delay:.8s}
@keyframes floatY{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-14px) rotate(-1.2deg)}}
.hero-badge{
  position:absolute;bottom:8%;right:8%;background:#fff;padding:.9rem 1.2rem;border-radius:18px;
  box-shadow:var(--shadow);display:flex;align-items:center;gap:.7rem;z-index:3;
}
.hero-badge .icon{width:42px;height:42px;border-radius:12px;background:var(--grad-warm);display:flex;align-items:center;justify-content:center;color:var(--clay-deep);font-size:1.2rem}
.hero-badge .t1{font-weight:700;font-size:.88rem;color:var(--clay-deep)}
.hero-badge .t2{font-size:.72rem;color:var(--muted)}

/* ============= USP STRIP ============= */
.usp-strip{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:1.5rem 0}
.usp{display:flex;align-items:center;gap:.9rem}
.usp i{width:44px;height:44px;border-radius:50%;background:var(--sand);color:var(--clay);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.usp .t{font-weight:600;font-size:.92rem;color:var(--clay-deep);font-family:var(--ff-display)}
.usp .s{font-size:.78rem;color:var(--muted)}

/* ============= SECTIONS ============= */
section{padding:5.5rem 0}
.section-eyebrow{display:inline-block;letter-spacing:.18em;font-size:.72rem;text-transform:uppercase;color:var(--clay);font-weight:600;margin-bottom:.7rem}
.section-title{font-size:clamp(1.9rem,3.2vw,2.6rem);margin:0 0 .5rem}
.section-sub{color:var(--muted);margin-bottom:3rem;font-size:1.02rem}

/* ============= CATEGORIES ============= */
.cat-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:1rem}
@media(max-width:991px){.cat-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:575px){.cat-grid{grid-template-columns:repeat(2,1fr)}}
.cat-card{
  background:#fff;border:1px solid var(--line);border-radius:22px;
  padding:1.6rem 1rem;text-align:center;display:block;
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s,border-color .35s;
  position:relative;overflow:hidden;
}
.cat-card::before{
  content:'';position:absolute;inset:0;background:var(--grad-warm);opacity:0;transition:.4s;z-index:0;
}
.cat-card>*{position:relative;z-index:1}
.cat-card:hover{transform:translateY(-8px);box-shadow:var(--shadow);border-color:transparent;color:var(--clay-deep)}
.cat-card:hover::before{opacity:.35}
.cat-icon{
  width:74px;height:74px;border-radius:22px;
  background:var(--grad-warm);color:var(--clay-deep);
  display:flex;align-items:center;justify-content:center;
  font-size:2rem;margin:0 auto 1rem;
  box-shadow:inset 0 -8px 16px rgba(94,47,23,.08);
}
.cat-name{font-weight:600;font-size:.95rem;color:var(--clay-deep);font-family:var(--ff-display)}
.cat-count{font-size:.72rem;color:var(--muted);margin-top:.2rem}

/* ============= PRODUCT CARDS ============= */
.product-card{
  background:#fff;border-radius:22px;overflow:hidden;
  border:1px solid var(--line);
  transition:transform .35s cubic-bezier(.2,.8,.2,1),box-shadow .35s,border-color .35s;
  height:100%;display:flex;flex-direction:column;position:relative;
}
.product-card:hover{transform:translateY(-8px);box-shadow:var(--shadow);border-color:#e4cda8}
.product-thumb{
  aspect-ratio:1;background:var(--sand);position:relative;overflow:hidden;
}
.product-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .8s cubic-bezier(.2,.8,.2,1)}
.product-card:hover .product-thumb img{transform:scale(1.08)}
.product-thumb .placeholder-art{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  font-size:4rem;color:var(--clay);opacity:.35;
  background:radial-gradient(circle at 50% 50%, #efd9bd 0%, var(--sand) 70%);
}
.product-tag{
  position:absolute;top:.8rem;left:.8rem;background:var(--clay-deep);color:#fff;
  font-size:.68rem;padding:.3rem .7rem;border-radius:999px;letter-spacing:.06em;font-weight:600;
}
.product-tag.sale{background:var(--clay)}
.product-tag.new{background:var(--success)}
.product-wish{
  position:absolute;top:.7rem;right:.7rem;width:38px;height:38px;border-radius:50%;
  background:rgba(255,255,255,.92);backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;color:var(--clay-deep);
  border:none;cursor:pointer;transition:.25s;opacity:0;transform:translateY(-6px);
}
.product-card:hover .product-wish{opacity:1;transform:translateY(0)}
.product-wish:hover{background:var(--clay);color:#fff}
.product-wish.active{opacity:1;transform:translateY(0);background:var(--clay);color:#fff}
.product-body{padding:1.1rem 1.2rem 1.3rem}
.product-cat{font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);font-weight:600}
.product-title{font-size:1.05rem;font-weight:600;margin:.25rem 0 .6rem;font-family:var(--ff-display);color:var(--clay-deep);line-height:1.3}
.price{color:var(--clay-deep);font-weight:700;font-size:1.1rem;font-family:var(--ff-display)}
.mrp{color:var(--muted);text-decoration:line-through;font-size:.85rem;margin-left:.4rem;font-weight:500}
.stars{color:#e8a93b;font-size:.78rem;letter-spacing:.05em}
.stars .count{color:var(--muted);margin-left:.3rem}

/* ============= BEST SELLER SECTION - COMPACT PRODUCT CARDS ============= */
.bg-sand .product-card {
  max-width: 100%;
}

.bg-sand .product-thumb {
  aspect-ratio: 1;
  height: 200px;
}

.bg-sand .product-body {
  padding: 0.8rem 0.9rem;
}

.bg-sand .product-title {
  font-size: 0.95rem;
  margin: 0.15rem 0 0.4rem;
  line-height: 1.2;
  max-height: 2.4em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bg-sand .product-cat {
  font-size: 0.65rem;
}

.bg-sand .price {
  font-size: 1rem;
}

.bg-sand .stars {
  font-size: 0.7rem;
}

.bg-sand .product-tag {
  font-size: 0.6rem;
  padding: 0.25rem 0.5rem;
}

@media(max-width:991px) {
  .bg-sand .product-thumb {
    height: 180px;
  }
  
  .bg-sand .product-title {
    font-size: 0.9rem;
  }
}

@media(max-width:768px) {
  .bg-sand .product-thumb {
    height: 160px;
  }
  
  .bg-sand .product-title {
    font-size: 0.85rem;
  }
  
  .bg-sand .product-body {
    padding: 0.7rem 0.8rem;
  }
}

@media(max-width:575px) {
  .bg-sand .product-thumb {
    height: 150px;
  }
  
  .bg-sand .product-body {
    padding: 0.6rem 0.7rem;
  }
  
  .bg-sand .product-title {
    font-size: 0.8rem;
  }
}

/* ============= BESTSELLER PRODUCT ACTIONS ============= */
.product-card-bestseller {
  position: relative;
}

.product-actions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
  border-radius: 22px 22px 0 0;
}

.product-card-bestseller:hover .product-actions {
  opacity: 1;
}

.product-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: none;
  color: var(--clay-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.product-action-btn:hover {
  background: var(--clay);
  color: white;
  transform: scale(1.1);
}

.add-to-cart-form {
  margin-top: 0.5rem;
}

.add-to-cart-form .btn {
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
}

/* ============= CARD IMAGE ALIGNMENT FIXES ============= */
.product-card {
  height: 100%;
}

.product-thumb {
  display: grid;
  place-items: center;
  background: #fff;
}

.product-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
  padding: clamp(.2rem, .7vw, .45rem);
}

.product-card:hover .product-thumb img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-title {
  min-height: 2.6em;
}

.add-to-cart-form {
  margin-top: auto;
}

.bg-sand .product-thumb {
 aspect-ratio: 1 / 1;
  background: #fff; /* important change */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-sand .product-card {
  min-height: 100%;
}

.bg-sand .product-body {
  min-height: 204px;
}

.mk-cat {
  min-height: 0;
  aspect-ratio: 16 / 8.8;
  background: #dfdcd7;
}

.mk-cat-bg {
  display: block;
  background: #d8c3a8;
}

.mk-cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.mk-cat:hover .mk-cat-bg img {
  transform: scale(1.035);
}

/* ============= BANNERS ============= */
.banner-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:1.2rem}
@media(max-width:767px){.banner-grid{grid-template-columns:1fr}}
.banner{
  position:relative;border-radius:28px;overflow:hidden;padding:3rem;color:#fff;
  min-height:280px;display:flex;flex-direction:column;justify-content:flex-end;
  background:var(--grad-clay);box-shadow:var(--shadow);
  transition:transform .35s;
}
.banner:hover{transform:translateY(-4px)}
.banner.dark{background:var(--grad-dark)}
.banner h3{color:#fff;font-size:2rem;margin:0 0 .5rem;font-weight:600}
.banner p{opacity:.85;margin:0 0 1.2rem;max-width:380px}
.banner .ico{position:absolute;right:-30px;bottom:-30px;font-size:14rem;opacity:.15;color:#fff}
.banner .btn{align-self:flex-start;background:#fff;color:var(--clay-deep);font-weight:600}
.banner .btn:hover{background:var(--clay-deep);color:#fff}

/* ============= TESTIMONIALS ============= */
.tm-card{
  background:#fff;border:1px solid var(--line);border-radius:22px;
  padding:2rem;height:100%;position:relative;transition:.3s;
}
.tm-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.tm-card .quote{font-size:2.5rem;color:var(--clay);opacity:.3;line-height:1;font-family:var(--ff-display)}
.tm-card p{color:#3a2a1d;font-size:.98rem;margin:.5rem 0 1.5rem}
.tm-meta{display:flex;align-items:center;gap:.8rem}
.tm-meta .av{width:46px;height:46px;border-radius:50%;background:var(--grad-warm);display:flex;align-items:center;justify-content:center;color:var(--clay-deep);font-weight:700;font-family:var(--ff-display)}
.tm-meta .nm{font-weight:600;color:var(--clay-deep);font-size:.95rem}
.tm-meta .lo{font-size:.78rem;color:var(--muted)}

/* ============= NEWSLETTER ============= */
.newsletter{
  background:
    radial-gradient(800px 400px at 80% 100%, rgba(201,123,74,.35), transparent 60%),
    var(--grad-dark);
  border-radius:36px;padding:4rem 3rem;color:#f3e6d3;
  position:relative;overflow:hidden;
}
.newsletter h2{color:#fff;font-size:clamp(1.8rem,3vw,2.6rem)}
.newsletter p{color:#d8c9b3;max-width:540px;margin-top:.8rem}
.newsletter form{display:flex;gap:.6rem;max-width:520px;margin-top:1.8rem;flex-wrap:wrap}
.newsletter input{
  flex:1;min-width:220px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
  color:#fff;padding:1rem 1.3rem;border-radius:999px;outline:none;font-size:.95rem;
}
.newsletter input::placeholder{color:#bca791}
.newsletter input:focus{border-color:var(--accent);background:rgba(255,255,255,.12)}
.newsletter .ico{position:absolute;right:-60px;top:-60px;font-size:24rem;opacity:.07;color:#fff}

/* ============= FOOTER ============= */
.jm-footer{
    background:#f5f5f5;
    margin-top:80px;
}

/* top */
.footer-top{
    padding:60px 0;
    border-bottom:1px solid #e3e3e3;
}

.footer-logo{
    max-width:180px;
}

.footer-menu{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-menu li{
    margin-bottom:12px;
}

.footer-menu a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}

.footer-menu a:hover{
    color:#cb6434;
}

/* middle */
.footer-middle{
    padding:60px 0;
}

.footer-block h4{
    color:#cb6434;
    font-size:30px;
    font-weight:500;
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

.footer-block h4:after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:#cb6434;
}

.footer-block a{
    display:block;
    text-decoration:none;
    color:#444;
    margin-bottom:12px;
    line-height:1.6;
}

.footer-block a:hover{
    color:#cb6434;
}

/* bottom */
.footer-bottom{
    background:#222;
    color:#fff;
    padding:18px 0;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:14px;
}

.footer-social a{
    color:#fff;
    font-size:18px;
}

.payment-icons{
    max-height:32px;
    display:inline-block;
}

/* responsive */
@media(max-width:991px){

    .footer-top{
        text-align:center;
    }

    .footer-block{
        text-align:center;
    }

    .footer-block h4:after{
        left:50%;
        transform:translateX(-50%);
    }
}

@media(max-width:767px){

    .footer-middle{
        padding:40px 0;
    }

    .footer-block h4{
        font-size:24px;
    }

    .footer-bottom{
        text-align:center;
    }
}

.scroll-top-btn{
     position:fixed;
    right:24px;
    bottom:95px;
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#cb6434;
    color:#fff;
    z-index:9999;
    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.scroll-top-btn.show{
    opacity:1;
    visibility:visible;
}

.scroll-top-btn:hover{
    background:#a84d24;
    transform:translateY(-3px);
}

@media(max-width:767px){
    .scroll-top-btn{
        width:45px;
        height:45px;
        right:15px;
        bottom:15px;
        font-size:18px;
    }
}

/* ============= SEARCH ============= */
.search-wrap{position:relative;width:100%;max-width:320px}
.search-wrap input{
  background:var(--sand);border:1px solid transparent;border-radius:999px;
  padding:.6rem 1rem .6rem 2.4rem;font-size:.9rem;width:100%;
}
.search-wrap input:focus{outline:none;border-color:var(--clay);background:#fff}
.search-wrap .si{position:absolute;left:.9rem;top:50%;transform:translateY(-50%);color:var(--muted)}
.search-results{
  position:absolute;top:115%;left:0;right:0;background:#fff;border-radius:16px;
  box-shadow:var(--shadow);max-height:380px;overflow:auto;z-index:1000;display:none;
  border:1px solid var(--line);
}
.search-results a{display:flex;gap:.8rem;align-items:center;padding:.7rem .9rem;border-bottom:1px solid var(--line);color:var(--ink)}
.search-results a:last-child{border-bottom:none}
.search-results a:hover{background:var(--sand)}
.search-results .thumb{width:44px;height:44px;border-radius:10px;background:var(--sand);display:flex;align-items:center;justify-content:center;color:var(--clay);overflow:hidden;flex-shrink:0}
.search-results .thumb img{width:100%;height:100%;object-fit:cover}

/* ============= WHATSAPP ============= */
.whatsapp-fab{
  position:fixed;right:24px;bottom:24px;width:58px;height:58px;border-radius:50%;
  background:#25d366;color:#fff;display:flex;align-items:center;justify-content:center;
  font-size:1.85rem;z-index:1050;box-shadow:0 14px 30px rgba(37,211,102,.4);
  transition:transform .25s;
}
.whatsapp-fab::before{
  content:'';position:absolute;inset:-6px;border-radius:50%;border:2px solid rgba(37,211,102,.4);
  animation:ring 2s ease-out infinite;
}
@keyframes ring{0%{transform:scale(.9);opacity:.8}100%{transform:scale(1.5);opacity:0}}
.whatsapp-fab:hover{transform:scale(1.08);color:#fff}

/* ============= FADE-IN / REVEAL ============= */
[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .8s cubic-bezier(.2,.8,.2,1),transform .8s cubic-bezier(.2,.8,.2,1)}
[data-reveal].show{opacity:1;transform:none}
[data-reveal-delay="1"]{transition-delay:.08s}
[data-reveal-delay="2"]{transition-delay:.16s}
[data-reveal-delay="3"]{transition-delay:.24s}
[data-reveal-delay="4"]{transition-delay:.32s}

/* legacy class compatibility */
.fade-in{opacity:0;transform:translateY(20px);transition:opacity .7s,transform .7s}
.fade-in.show{opacity:1;transform:none}

/* ============= FORMS ============= */
.form-control,.form-select{
  border-radius:14px;border:1.5px solid var(--line);padding:.8rem 1.1rem;font-size:.95rem;
  background:#fff;transition:.2s;
}
.form-control:focus,.form-select:focus{border-color:var(--clay);box-shadow:0 0 0 4px rgba(168,90,50,.12)}
.form-label{font-weight:500;color:var(--clay-deep);font-size:.88rem;margin-bottom:.4rem}

/* ============= PANELS ============= */
.panel{background:#fff;border:1px solid var(--line);border-radius:24px;padding:2rem;box-shadow:var(--shadow-sm)}

/* ============= AUTH PAGES ============= */
.auth-wrap{min-height:80vh;display:flex;align-items:center;padding:3rem 0;background:
  radial-gradient(700px 400px at 100% 0%, rgba(201,123,74,.18), transparent 60%),
  var(--cream);
}
.auth-card{
  background:#fff;border-radius:28px;box-shadow:var(--shadow);padding:3rem 2.5rem;
  border:1px solid var(--line);max-width:460px;margin:0 auto;
}
.auth-card h2{font-size:2rem;margin-bottom:.4rem}
.auth-card .sub{color:var(--muted);margin-bottom:1.8rem;font-size:.95rem}

/* ============= ADMIN ============= */
.admin-shell{display:flex;min-height:100vh;background:#f7f3ed}
.admin-side{
  width:260px;background:var(--grad-dark);color:#f3e6d3;padding:1.8rem 1rem;flex-shrink:0;
  position:sticky;top:0;height:100vh;overflow:auto;
}
.admin-side .brand{padding:0 .8rem 1.4rem;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:1rem}
.admin-side .brand .jm-logo{color:#fff;font-size:1.4rem}
.admin-side .brand .jm-logo span{color:var(--accent)}
.admin-side a{
  display:flex;align-items:center;gap:.8rem;color:#d8c9b3;padding:.7rem .9rem;
  border-radius:10px;margin-bottom:.2rem;font-size:.92rem;transition:.2s;
}
.admin-side a:hover,.admin-side a.active{background:rgba(255,255,255,.08);color:#fff}
.admin-side a i{font-size:1.1rem}
.admin-main{flex:1;padding:2rem;min-width:0}
.admin-topbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}
.admin-topbar h1{font-size:1.6rem;margin:0}
.stat-card{
  background:#fff;border-radius:18px;padding:1.5rem;border:1px solid var(--line);
  transition:.25s;
}
.stat-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm)}
.stat-card .lbl{font-size:.78rem;color:var(--muted);text-transform:uppercase;letter-spacing:.08em;font-weight:600}
.stat-card .num{font-size:2rem;font-weight:700;color:var(--clay-deep);font-family:var(--ff-display);margin-top:.4rem}
.stat-card .ico{
  width:48px;height:48px;border-radius:14px;background:var(--grad-warm);
  display:flex;align-items:center;justify-content:center;color:var(--clay-deep);font-size:1.3rem;float:right;
}
.table-card{background:#fff;border-radius:18px;border:1px solid var(--line);overflow:hidden}
.table{margin:0}
.table thead th{background:#faf5ee;color:var(--clay-deep);font-weight:600;border-bottom:1px solid var(--line);padding:1rem}
.table tbody td{padding:1rem;border-color:var(--line);vertical-align:middle}

@media(max-width:991px){
  .admin-shell{flex-direction:column}
  .admin-side{width:100%;height:auto;position:relative}
  .hero-collage{height:380px;margin-top:2rem}
  .newsletter{padding:2.5rem 1.6rem}
  section{padding:4rem 0}
}
@media(max-width:575px){
  .hero{padding:3rem 0 4rem}
  .navbar .search-wrap{display:none}
}

/* ============= UTILITIES ============= */
.bg-cream{background:var(--cream)}
.bg-sand{background:var(--sand)}
.bg-paper{background:#fff}
.text-clay{color:var(--clay)}
.text-clay-dark{color:var(--clay-deep)}
.rounded-4{border-radius:var(--radius-lg)!important}
.divider{height:1px;background:var(--line);width:60px;margin:1rem 0}

/* Toast */
.jm-toast{
  position:fixed;bottom:30px;left:50%;transform:translateX(-50%) translateY(100px);
  background:var(--clay-deep);color:#fff;padding:1rem 1.6rem;border-radius:14px;
  box-shadow:var(--shadow);z-index:1100;opacity:0;transition:.35s;font-size:.92rem;
  display:flex;align-items:center;gap:.6rem;
}
.jm-toast.show{transform:translateX(-50%) translateY(0);opacity:1}
.jm-toast i{color:#7fd6a1;font-size:1.1rem}

/* ============= MITIKA-STYLE HOMEPAGE ============= */
.eyebrow-light{color:#fbe4cd !important}
.lead-light{color:#f3e6d3;opacity:.9;max-width:560px}
.bg-sand{background:var(--sand)}
.link-arrow{color:var(--clay-deep);font-weight:600;border-bottom:1px solid var(--line);padding-bottom:2px}
.link-arrow:hover{color:var(--clay)}
.mk-aside{max-width:320px;text-align:right}
@media(max-width:768px){.mk-aside{text-align:left}}

/* =========================
   HERO SECTION
========================= */
.mk-hero{
  position:relative;
  min-height:700px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

/* =========================
   FULL BACKGROUND SLIDER
========================= */
.mk-hero-slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.mk-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  opacity:0;
  transition:opacity 1s ease-in-out;
}

.mk-slide.active{
  opacity:1;
}

/* DARK OVERLAY FOR TEXT */
.mk-slide::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    90deg,
    rgba(27, 9, 4, 0.85) 0%,
    rgba(0,0,0,0.65) 35%,
    rgba(0,0,0,0.25) 70%,
    rgba(0,0,0,0.05) 100%
  );

  z-index:1;
}

/* =========================
   CONTENT
========================= */
.mk-hero-content{
  position:relative;
  z-index:10;
  max-width:650px;
  padding:80px 20px;
  color:#fff;
   margin-left:6%;
}

.eyebrow{
  color:#fff;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:15px;
  display:block;
}

.mk-hero-title{
  font-size:clamp(2.5rem,5vw,5rem);
  line-height:1.05;
  color:#fff;
  font-weight:700;
}

.mk-hero-title em{
  font-style:italic;
  color:#c89a5b;
  font-weight:500;
}

.mk-hero-content p{
  color:rgba(255,255,255,.9);
  font-size:1.1rem;
  line-height:1.7;
  margin-top:20px;
}

/* =========================
   BUTTONS
========================= */
.btn-light-ghost{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  backdrop-filter:blur(8px);
  border-radius:999px;
  padding:.75rem 1.6rem;
  font-weight:600;
}

.btn-light-ghost:hover{
  background:rgba(255,255,255,.18);
  color:#fff;
}

/* =========================
   SLIDER DOTS
========================= */
.mk-dots{
  position:absolute;
  bottom:30px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:20;
}

.mk-dots .dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  cursor:pointer;
}

.mk-dots .dot.active{
  background:#fff;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

  .mk-hero{
    min-height:550px;
  }

  .mk-hero-content{
    max-width:100%;
    text-align:center;
    padding:60px 20px;
  }

  .mk-slide::before{
    background:rgba(0,0,0,.55);
  }

  .mk-hero-title{
    font-size:2.6rem;
  }

  .mk-hero-content p{
    font-size:1rem;
  }
}

/* MARQUEE */
.mk-marquee{background:var(--clay-deep);color:#fbe4cd;padding:.9rem 0;overflow:hidden;border-block:1px solid rgba(255,255,255,.06)}
.mk-marquee-track{display:flex;gap:3rem;white-space:nowrap;animation:marq 32s linear infinite;font-family:var(--ff-display);font-style:italic;font-size:1.05rem}
.mk-marquee-track span i{color:var(--gold);margin-right:.5rem;font-size:.7em;vertical-align:middle}

/* DEAL CARDS */
.deal-card{display:block;border-radius:var(--radius-lg);padding:2rem 1.8rem;min-height:200px;text-decoration:none;position:relative;overflow:hidden;transition:transform .35s, box-shadow .35s;box-shadow:var(--shadow-sm)}
.deal-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.deal-card .deal-eyebrow{font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;opacity:.75;display:block;margin-bottom:.8rem}
.deal-card h3{font-size:1.9rem;margin:.2rem 0 .4rem}
.deal-card p{opacity:.85;margin-bottom:1rem;font-size:.95rem}
.deal-card .deal-link{font-weight:600;border-bottom:1px solid currentColor;padding-bottom:2px}
.deal-clay{background:linear-gradient(135deg,#c97b4a,#a85a32);color:#fff}
.deal-clay h3,.deal-clay .deal-eyebrow{color:#fff}
.deal-cream{background:#f1e6d4;color:var(--clay-deep)}
.deal-dark{background:linear-gradient(135deg,#3a1c0c,#1a0d06);color:#f3e6d3}
.deal-dark h3{color:#fff}

/* CATEGORY GRID */
.mk-cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
@media(max-width:900px){.mk-cat-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.mk-cat-grid{grid-template-columns:1fr}}
.mk-cat{position:relative;display:block;border-radius:var(--radius-lg);overflow:hidden;min-height:230px;text-decoration:none;color:#fff;transition:transform .4s}
.mk-cat:hover{transform:translateY(-5px)}
.mk-cat:hover .mk-cat-arrow{background:#fff;color:var(--clay-deep);transform:rotate(-12deg)}
.mk-cat-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
  }

.mk-cat-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
    display:block;
}

.mk-cat:hover .mk-cat-bg img{
    transform:scale(1.08);
}
.mk-cat:nth-child(2) .mk-cat-bg{background:linear-gradient(160deg,#a85a32,#5e2f17)}
.mk-cat:nth-child(3) .mk-cat-bg{background:linear-gradient(160deg,#c89b54,#7a3a1d)}
.mk-cat:nth-child(4) .mk-cat-bg{background:linear-gradient(160deg,#5e2f17,#1a0d06)}
.mk-cat:nth-child(5) .mk-cat-bg{background:linear-gradient(160deg,#c97b4a,#7a3a1d)}
.mk-cat:nth-child(6) .mk-cat-bg{background:linear-gradient(160deg,#3a1c0c,#0e0703)}
.mk-cat::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(0,0,0,.55) 100%)}
.mk-cat-body{position:absolute;left:1.4rem;bottom:1.2rem;z-index:2}
.mk-cat-body h3{color:#fff;margin:0;font-size:1.35rem}
.mk-cat-cnt{color:#fbe4cd;opacity:.8;font-size:.85rem}
.mk-cat-arrow{position:absolute;right:1rem;bottom:1rem;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.15);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;color:#fff;z-index:2;transition:all .3s;font-size:1.1rem}

.mk-cat {
  min-height: 0;
  aspect-ratio: 16 / 8.8;
  background: #dfdcd7;
}

.mk-cat-bg {
  display: block;
  background: #d8c3a8;
}

.mk-cat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.mk-cat:hover .mk-cat-bg img {
  transform: scale(1.035);
}

/* STORY (FROM A FISTFUL OF SOIL) */
.mk-story{background:linear-gradient(180deg,#2a1308,#1a0d06);color:#f3e6d3;border-radius:32px;margin:3rem 1rem 0;padding:5rem 0}
.section-title.light{color:#fff}
.section-title.light em{color:var(--gold);font-style:italic;font-weight:500}
/* STORY IMAGE */
.mk-story-img{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    width: min(100%, 480px);
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin: 0 auto;
    background: #fff7ed;
    box-shadow: 0 22px 55px rgba(0,0,0,.24);
}

.mk-story-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: clamp(.65rem, 2vw, 1.2rem);
}

/* Desktop */
@media (min-width: 992px){
    .mk-story .row{
        min-height: 520px;
    }
}

/* Tablet */
@media (max-width: 991px){
    .mk-story-img{
        width: min(100%, 420px);
    }
}

/* Mobile */
@media (max-width: 767px){
    .mk-story{
        padding: 3rem 0;
        margin: 2rem 0 0;
        border-radius: 20px;
    }

    .mk-story-img{
        width: min(100%, 360px);
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px){
    .mk-story-img{
        width: min(100%, 300px);
    }
}
.mk-story-ico{font-size:14rem;color:rgba(0,0,0,.35)}
.mk-story-tag{position:absolute;left:1.4rem;bottom:1.4rem;background:#fbf7f1;color:var(--clay-deep);padding:1rem 1.2rem;border-radius:14px;box-shadow:var(--shadow)}
.mk-story-tag .t1{font-family:var(--ff-display);font-size:1.1rem;font-weight:600}
.mk-story-tag .t2{font-size:.78rem;color:var(--muted)}
.mk-stepper{list-style:none;padding:0;margin:2rem 0 0;display:grid;gap:1.4rem}
.mk-stepper li{display:flex;gap:1.2rem;padding-bottom:1.4rem;border-bottom:1px solid rgba(255,255,255,.08)}
.mk-stepper li:last-child{border-bottom:0}
.stp-n{font-family:var(--ff-display);color:var(--gold);font-size:1.1rem;letter-spacing:.1em;min-width:38px}
.mk-stepper h4{color:#fff;margin:0 0 .25rem;font-size:1.15rem}
.mk-stepper p{color:#d9c7b0;opacity:.85;margin:0;font-size:.95rem}

/* CTA STRIP */
.mk-cta{background:linear-gradient(135deg,#c97b4a,#a85a32);color:#fff;border-radius:var(--radius-lg);padding:4rem 2rem;text-align:center;box-shadow:var(--shadow)}
.mk-cta h2{color:#fff;font-size:clamp(1.8rem,4vw,2.8rem);max-width:720px;margin:0 auto 1rem}
.mk-cta h2 em{color:#f7d9a8;font-style:italic;font-weight:500}
.mk-cta p{color:#fbe4cd;max-width:560px;margin:0 auto 1.6rem}
.mk-cta .btn-light{background:#fff;color:var(--clay-deep);border:0;border-radius:999px;padding:.8rem 1.8rem;font-weight:600}
.mk-cta .btn-outline-light{border-radius:999px;padding:.8rem 1.8rem;font-weight:600;border-color:rgba(255,255,255,.6);color:#fff}
.mk-cta .btn-outline-light:hover{background:#fff;color:var(--clay-deep)}

/* NEWSLETTER */
.mk-news{background:linear-gradient(180deg,#a85a32,#7a3a1d);color:#fff;padding:5rem 0;margin-top:3rem;position:relative;overflow:hidden}
.mk-news::before,.mk-news::after{content:"";position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.12)}
.mk-news::before{width:280px;height:280px;left:-80px;bottom:-100px}
.mk-news::after{width:380px;height:380px;right:-120px;top:-140px}
.mk-news .container{position:relative;z-index:2}
.mk-news-form{display:flex;gap:.6rem;max-width:480px;margin:1.5rem auto 0;background:#fbf7f1;border-radius:999px;padding:.4rem;box-shadow:var(--shadow)}
.mk-news-form input{flex:1;border:0;background:transparent;padding:.6rem 1rem;outline:none;color:var(--ink);font-size:.95rem}
.mk-news-form .btn-clay{border-radius:999px;padding:.65rem 1.6rem}

/* TM cards refinement */
.tm-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.8rem;box-shadow:var(--shadow-sm);height:100%}
.tm-card .stars{color:var(--clay);letter-spacing:.15em}
.tm-card p{color:var(--ink);font-style:italic}
.tm-meta{display:flex;align-items:center;gap:.8rem;margin-top:1rem}
.tm-meta .av{width:42px;height:42px;border-radius:50%;background:var(--grad-clay);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem}
.tm-meta .nm{font-weight:600;color:var(--clay-deep)}
.tm-meta .lo{font-size:.8rem;color:var(--muted)}

/* ============= PRODUCT DETAIL ============= */
.crumbs{color:var(--muted)}
.crumbs a{color:inherit}
.crumbs a:hover{color:var(--clay)}
.product-detail .pd-title{font-size:2.1rem;margin-bottom:.3rem}
.pd-lead{color:#5b463a}
.pd-gallery{display:flex;gap:1rem}
@media(max-width:768px){.pd-gallery{flex-direction:column-reverse}}
.pd-thumbs{display:flex;flex-direction:column;gap:.6rem;width:80px;flex-shrink:0}
@media(max-width:768px){.pd-thumbs{flex-direction:row;width:auto;overflow-x:auto}}
.pd-thumb{width:78px;height:78px;border-radius:14px;overflow:hidden;border:2px solid transparent;background:var(--sand);cursor:pointer;padding:0;flex-shrink:0;transition:all .25s}
.pd-thumb img{width:100%;height:100%;object-fit:cover}
.pd-thumb.active,.pd-thumb:hover{border-color:var(--clay);box-shadow:var(--shadow-sm)}
.pd-main{flex:1;position:relative}
.pd-stage{position:relative;aspect-ratio:1;border-radius:var(--radius-lg);overflow:hidden;background:var(--sand);cursor:zoom-in}
.pd-stage img{width:100%;height:100%;object-fit:cover;display:block}
.pd-lens{position:absolute;width:140px;height:140px;border:2px solid rgba(168,90,50,.7);background:rgba(255,255,255,.15);border-radius:8px;pointer-events:none;display:none;backdrop-filter:blur(1px)}
.pd-zoom{position:absolute;top:0;left:105%;width:100%;height:100%;border-radius:var(--radius-lg);background-repeat:no-repeat;background-color:var(--sand);display:none;box-shadow:var(--shadow);z-index:5;border:1px solid var(--line)}
@media(max-width:991px){.pd-zoom{display:none !important}}
.pd-stage.zooming .pd-lens,.pd-stage.zooming .pd-zoom{display:block}
.pd-fs{position:absolute;right:1rem;top:1rem;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.92);border:0;color:var(--clay-deep);display:flex;align-items:center;justify-content:center;z-index:6;box-shadow:var(--shadow-sm);cursor:pointer;transition:transform .2s}
.pd-fs:hover{transform:scale(1.08);background:#fff}
.pd-hint{position:absolute;left:1rem;bottom:1rem;background:rgba(255,255,255,.9);border-radius:999px;padding:.4rem .9rem;font-size:.78rem;color:var(--muted);display:flex;align-items:center;gap:.4rem;z-index:6}

.qty-pill{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;overflow:hidden;background:#fff}
.qty-pill .qb{width:42px;height:46px;background:transparent;border:0;font-size:1.2rem;color:var(--clay-deep);cursor:pointer}
.qty-pill .qb:hover{background:var(--sand)}
.qty-pill input{width:56px;height:46px;text-align:center;border:0;outline:none;font-weight:600;background:transparent}

.pd-buy{display:flex;gap:.6rem;flex-wrap:wrap;align-items:center}

.pd-tabs{background:#fff;border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden}
.pd-tabnav{padding:1rem 1.4rem;border-bottom:1px solid var(--line);gap:.4rem;background:var(--cream)}
.pd-tabnav .nav-link{color:var(--clay-deep);font-weight:600;border-radius:999px;padding:.5rem 1.1rem;background:transparent}
.pd-tabnav .nav-link.active{background:var(--clay-deep);color:#fff}
.pd-tabbody{padding:1.6rem 1.6rem 2rem}
.pd-bullets{list-style:none;padding:0;margin-top:1rem}
.pd-bullets li{padding:.4rem 0;color:#4a382a;display:flex;gap:.6rem;align-items:flex-start}
.pd-bullets li i{color:var(--success);font-size:1.1rem;margin-top:.15rem}
.pd-side{background:var(--cream);border-radius:var(--radius);padding:1.2rem;border:1px solid var(--line)}
.pd-stat{display:flex;align-items:baseline;gap:.5rem;padding:.5rem 0;border-bottom:1px dashed var(--line)}
.pd-stat:last-child{border-bottom:0}
.pd-stat strong{font-family:var(--ff-display);font-size:1.4rem;color:var(--clay-deep);min-width:60px}
.pd-stat span{color:var(--muted);font-size:.9rem}
.pd-table th{width:140px;color:var(--muted);font-weight:500}
.pd-table td{font-weight:600;color:var(--clay-deep)}

/* LIGHTBOX */
.pd-lightbox{position:fixed;inset:0;background:rgba(20,10,5,.94);z-index:9999;display:none;align-items:center;justify-content:center;padding:2rem}
.pd-lightbox.open{display:flex}
.pd-lb-stage{max-width:90vw;max-height:90vh}
.pd-lb-stage img{max-width:90vw;max-height:90vh;border-radius:12px;box-shadow:0 30px 80px rgba(0,0,0,.6)}
.pd-lb-close,.pd-lb-nav{position:absolute;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff;width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;backdrop-filter:blur(8px);transition:all .25s;font-size:1.2rem}
.pd-lb-close:hover,.pd-lb-nav:hover{background:rgba(255,255,255,.22);transform:scale(1.08)}
.pd-lb-close{top:1.5rem;right:1.5rem}
.pd-lb-nav.prev{left:1.5rem;top:50%;transform:translateY(-50%)}
.pd-lb-nav.next{right:1.5rem;top:50%;transform:translateY(-50%)}
.pd-lb-counter{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);color:#fbe4cd;font-family:var(--ff-display);font-size:.95rem;letter-spacing:.1em}


/* ============= SHOP — FILTERS + GRID ============= */
.shop-hero{background:linear-gradient(180deg,#f7e7d0 0%, var(--cream) 100%)}
.shop-filters .form-label{font-weight:600;font-size:.85rem;color:var(--clay-deep);letter-spacing:.04em;text-transform:uppercase}
.btn-link-clay{background:none;border:0;color:var(--clay);font-weight:600;padding:0;cursor:pointer}
.btn-link-clay:hover{color:var(--clay-deep);text-decoration:underline}

.filter-search{position:relative}
.filter-search i{position:absolute;left:.85rem;top:50%;transform:translateY(-50%);color:var(--muted)}
.filter-search input{padding-left:2.3rem;border-radius:999px;border:1px solid var(--line)}

.filter-cats{list-style:none;padding:0;margin:0}
.filter-cats li label{display:flex;align-items:center;gap:.6rem;padding:.45rem .2rem;border-radius:8px;cursor:pointer;color:var(--ink);font-size:.95rem;transition:background .2s}
.filter-cats li label:hover{background:var(--cream)}
.filter-cats input[type=radio]{accent-color:var(--clay);width:16px;height:16px}

/* View toggle */
.shop-view-toggle{display:flex;align-items:center;gap:.2rem}
.shop-view-toggle .shop-view-btn,
.shop-view-toggle .view-btn{
  min-width:30px;height:28px;border:0;background:transparent;color:#b8c0c6;
  display:inline-flex;align-items:center;justify-content:center;
  font-size:1rem;line-height:1;border-radius:6px;cursor:pointer;
  transition:color .2s,background .2s,transform .2s;text-decoration:none;
}
.shop-view-toggle .shop-view-btn:hover,
.shop-view-toggle .view-btn:hover{color:var(--clay);background:#fff3e8}
.shop-view-toggle .shop-view-btn.active,
.shop-view-toggle .view-btn.active{color:var(--clay-deep);background:#f2dfc8}

.view-icon{display:block;color:currentColor}
.view-icon-cols{width:18px;height:14px;display:block}
.view-icon-cols::before,
.view-icon-cols::after,
.view-icon-list::before,
.view-icon-list::after{content:none}

.view-cols-5{
  background:
    linear-gradient(currentColor 0 0) 0 0/2px 100% no-repeat,
    linear-gradient(currentColor 0 0) calc(25% - 1px) 0/2px 100% no-repeat,
    linear-gradient(currentColor 0 0) calc(50% - 1px) 0/2px 100% no-repeat,
    linear-gradient(currentColor 0 0) calc(75% - 1px) 0/2px 100% no-repeat,
    linear-gradient(currentColor 0 0) 100% 0/2px 100% no-repeat;
}
.view-cols-4{
  background:
    linear-gradient(currentColor 0 0) 0 0/3px 100% no-repeat,
    linear-gradient(currentColor 0 0) 33.333% 0/3px 100% no-repeat,
    linear-gradient(currentColor 0 0) 66.666% 0/3px 100% no-repeat,
    linear-gradient(currentColor 0 0) 100% 0/3px 100% no-repeat;
}
.view-cols-3{
  background:
    linear-gradient(currentColor 0 0) 0 0/4px 100% no-repeat,
    linear-gradient(currentColor 0 0) 50% 0/4px 100% no-repeat,
    linear-gradient(currentColor 0 0) 100% 0/4px 100% no-repeat;
}
.view-cols-2{
  background:
    linear-gradient(currentColor 0 0) 2px 0/5px 100% no-repeat,
    linear-gradient(currentColor 0 0) calc(100% - 2px) 0/5px 100% no-repeat;
}
.view-icon-list{
  width:18px;height:14px;
  background:
    linear-gradient(currentColor 0 0) 0 1px/18px 2px no-repeat,
    linear-gradient(currentColor 0 0) 0 6px/18px 2px no-repeat,
    linear-gradient(currentColor 0 0) 0 11px/18px 2px no-repeat;
}

/* Grid widths */
#shopGrid[class*="shop-view-grid"] > .grid-in{
  width:var(--shop-item-width);
  flex:0 0 var(--shop-item-width);
  max-width:var(--shop-item-width);
}
#shopGrid.shop-view-grid-5 > .grid-in{width:20% !important;flex:0 0 20% !important;max-width:20% !important}
#shopGrid.shop-view-grid-4 > .grid-in{width:25% !important;flex:0 0 25% !important;max-width:25% !important}
#shopGrid.shop-view-grid-3 > .grid-in{width:33.333333% !important;flex:0 0 33.333333% !important;max-width:33.333333% !important}
#shopGrid.shop-view-grid-2 > .grid-in{width:50% !important;flex:0 0 50% !important;max-width:50% !important}
#shopGrid.shop-view-list > .grid-in{width:100% !important;flex:0 0 100% !important;max-width:100% !important}

/* List content hidden in normal grids */
.product-list-desc,
.product-list-actions{display:none}
.product-grid-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.55rem;
  margin-top:auto;
  padding-top:1rem;
}
.product-grid-actions form{margin:0}
.product-grid-actions .btn{
  width:40px;
  height:40px;
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 40px;
  padding:0;
  border-radius:50%;
  font-size:1rem;
  line-height:1;
}
#shopGrid:not([data-view="list"]) .product-grid-actions{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:space-between !important;
  width:100% !important;
}
#shopGrid:not([data-view="list"]) .product-grid-actions form,
#shopGrid:not([data-view="list"]) .product-grid-actions a{
  width:40px !important;
  height:40px !important;
  min-width:40px !important;
  max-width:40px !important;
  flex:0 0 40px !important;
  margin:0 !important;
}
#shopGrid:not([data-view="list"]) .product-grid-actions .btn{
  width:40px !important;
  height:40px !important;
  min-width:40px !important;
  max-width:40px !important;
  min-height:40px !important;
  padding:0 !important;
  border-radius:50% !important;
}
#shopGrid:not([data-view="list"]) .product-list-actions{
  display:none !important;
}
.product-thumb > a{display:block;width:100%;height:100%;color:inherit}

/* Desktop list/single horizontal view */
#shopGrid[data-view="list"] > .grid-in > .product-card,
#shopGrid.shop-view-list > .grid-in > .product-card{
  display:flex !important;
  flex-direction:row !important;
  align-items:flex-start !important;
  gap:1.6rem !important;
  width:100% !important;
  min-height:210px !important;
  padding:1.2rem !important;
}

#shopGrid[data-view="list"] > .grid-in > .product-card > .product-thumb,
#shopGrid.shop-view-list > .grid-in > .product-card > .product-thumb{
  flex:0 0 180px !important;
  width:180px !important;
  height:180px !important;
  min-height:0 !important;
  aspect-ratio:auto !important;
  border-radius:4px;
}

#shopGrid[data-view="list"] > .grid-in > .product-card > .product-body,
#shopGrid.shop-view-list > .grid-in > .product-card > .product-body{
  flex:1 1 auto !important;
  min-width:0 !important;
  display:block !important;
  padding:.2rem 0 0 !important;
}

#shopGrid[data-view="list"] .product-cat,
#shopGrid.shop-view-list .product-cat{color:#9aa0a6;margin-bottom:.8rem}

#shopGrid[data-view="list"] .product-title,
#shopGrid.shop-view-list .product-title{font-size:1.25rem;max-width:520px;margin-bottom:1.3rem}

#shopGrid[data-view="list"] .product-list-desc,
#shopGrid.shop-view-list .product-list-desc{
  display:block !important;
  margin:0;
  padding-top:1rem;
  border-top:1px solid var(--line);
  color:var(--ink);
  line-height:1.6;
  font-size:.95rem;
  max-width:620px;
}

#shopGrid[data-view="list"] .stars,
#shopGrid[data-view="list"] .product-card-price,
#shopGrid[data-view="list"] .product-grid-actions,
#shopGrid.shop-view-list .stars,
#shopGrid.shop-view-list .product-card-price,
#shopGrid.shop-view-list .product-grid-actions{display:none !important}

#shopGrid[data-view="list"] > .grid-in > .product-card > .product-list-actions,
#shopGrid.shop-view-list > .grid-in > .product-card > .product-list-actions{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:.75rem !important;
  flex:0 0 190px !important;
  padding-top:.15rem;
}

#shopGrid[data-view="list"] .product-list-price .price,
#shopGrid.shop-view-list .product-list-price .price{font-size:1rem;font-family:inherit;font-weight:500;color:var(--clay)}

#shopGrid[data-view="list"] .product-list-price .mrp,
#shopGrid.shop-view-list .product-list-price .mrp{font-size:.9rem}

#shopGrid[data-view="list"] .product-list-quick,
#shopGrid.shop-view-list .product-list-quick{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  color:var(--ink);
  text-decoration:none;
  font-size:.9rem;
  margin-top:.5rem;
}

#shopGrid[data-view="list"] .product-list-quick i,
#shopGrid.shop-view-list .product-list-quick i{color:#aab2bb}

#shopGrid[data-view="list"] .product-list-cart .btn,
#shopGrid.shop-view-list .product-list-cart .btn{border-radius:3px;padding:.35rem .7rem;font-size:.82rem}

.product-oos{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:rgba(58,28,12,.85);color:#fff;padding:.4rem 1rem;border-radius:999px;font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}

/* Cart thumbnails */
.cart-thumb{
  width:80px;height:80px;flex:0 0 80px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  background:#fff;border:1px solid var(--line);
}
.cart-thumb img{width:100%;height:100%;object-fit:contain;padding:.25rem}
.cart-thumb i{font-size:1.6rem;color:var(--clay);opacity:.45}

/* Dual-range price slider */
.price-range{position:relative;height:36px;margin-top:.5rem}
.price-range .pr-track{position:absolute;left:0;right:0;top:50%;height:6px;background:var(--line);border-radius:999px;transform:translateY(-50%)}
.price-range .pr-fill{position:absolute;top:0;bottom:0;background:var(--grad-clay);border-radius:999px}
.price-range input[type=range]{position:absolute;left:0;right:0;top:0;width:100%;height:36px;background:transparent;pointer-events:none;-webkit-appearance:none;appearance:none;margin:0}
.price-range input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;pointer-events:auto;width:20px;height:20px;border-radius:50%;background:#fff;border:3px solid var(--clay);box-shadow:0 2px 6px rgba(94,47,23,.3);cursor:grab}
.price-range input[type=range]::-moz-range-thumb{pointer-events:auto;width:20px;height:20px;border-radius:50%;background:#fff;border:3px solid var(--clay);box-shadow:0 2px 6px rgba(94,47,23,.3);cursor:grab}
.price-range input[type=range]::-webkit-slider-runnable-track{background:transparent}

/* Skeleton loader */
.sk-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:.8rem}
.sk-img{aspect-ratio:1;border-radius:12px;background:linear-gradient(90deg,#f1e6d4 0%,#fbf7f1 50%,#f1e6d4 100%);background-size:200% 100%;animation:sk 1.2s linear infinite}
.sk-line{height:14px;border-radius:6px;margin-top:.8rem;background:linear-gradient(90deg,#f1e6d4 0%,#fbf7f1 50%,#f1e6d4 100%);background-size:200% 100%;animation:sk 1.2s linear infinite}
.sk-line.w70{width:70%}
.sk-line.w40{width:40%}
@keyframes sk{0%{background-position:0 0}100%{background-position:-200% 0}}

.grid-in{animation:gridIn .35s ease both}
@keyframes gridIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

/* Mobile */
@media(max-width:575px){
  .shop-view-toggle{order:3;width:100%;justify-content:flex-start;margin-top:.25rem}

  .shop-view-toggle [data-view="grid-5"],
  .shop-view-toggle [data-view="grid-4"],
  .shop-view-toggle [data-view="grid-3"]{display:none}

  #shopGrid.shop-view-grid-5 > .grid-in,
  #shopGrid.shop-view-grid-4 > .grid-in,
  #shopGrid.shop-view-grid-3 > .grid-in,
  #shopGrid.shop-view-grid-2 > .grid-in{
    width:50% !important;
    flex:0 0 50% !important;
    max-width:50% !important;
  }

  #shopGrid:not([data-view="list"]) .product-thumb{min-height:0}
  #shopGrid:not([data-view="list"]) .product-body{padding:.8rem .75rem .9rem}
  #shopGrid:not([data-view="list"]) .product-cat{font-size:.58rem;letter-spacing:.08em}
  #shopGrid:not([data-view="list"]) .product-title{font-size:.86rem;line-height:1.25;margin:.2rem 0 .45rem}
  #shopGrid:not([data-view="list"]) .stars{font-size:.72rem;margin-bottom:.35rem !important}
  #shopGrid:not([data-view="list"]) .stars .count{font-size:.72rem}
  #shopGrid:not([data-view="list"]) .price{font-size:.92rem}
  #shopGrid:not([data-view="list"]) .mrp{font-size:.76rem}
  #shopGrid:not([data-view="list"]) .product-tag{font-size:.65rem;padding:.25rem .55rem}
  #shopGrid:not([data-view="list"]) .product-wish{width:32px;height:32px;right:.55rem;top:.55rem}
  #shopGrid:not([data-view="list"]) .product-grid-actions{
    display:flex;
    flex-direction:row;
    justify-content:space-between;
    gap:.5rem;
    padding-top:.7rem;
  }
  #shopGrid:not([data-view="list"]) .product-grid-actions .btn{
    width:34px;
    height:34px;
    min-height:34px;
    flex-basis:34px;
    padding:0;
    font-size:.85rem;
  }
  #shopGrid:not([data-view="list"]) .product-grid-actions form,
  #shopGrid:not([data-view="list"]) .product-grid-actions a,
  #shopGrid:not([data-view="list"]) .product-grid-actions .btn{
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
    max-width:34px !important;
    min-height:34px !important;
    flex-basis:34px !important;
  }

  #shopGrid[data-view="list"] > .grid-in > .product-card,
  #shopGrid.shop-view-list > .grid-in > .product-card{
    display:flex !important;
    flex-direction:column !important;
    gap:.75rem !important;
    min-height:0 !important;
    padding:.85rem !important;
  }

  #shopGrid[data-view="list"] > .grid-in > .product-card > .product-thumb,
  #shopGrid.shop-view-list > .grid-in > .product-card > .product-thumb{
    flex:0 0 auto !important;
    width:100% !important;
    height:150px !important;
  }

  #shopGrid[data-view="list"] > .grid-in > .product-card > .product-body,
  #shopGrid.shop-view-list > .grid-in > .product-card > .product-body{padding:0 !important}

  #shopGrid[data-view="list"] .product-cat,
  #shopGrid.shop-view-list .product-cat{font-size:.58rem;letter-spacing:.08em;margin-bottom:.35rem}

  #shopGrid[data-view="list"] .product-title,
  #shopGrid.shop-view-list .product-title{font-size:.94rem;line-height:1.25;margin-bottom:.55rem;max-width:none}

  #shopGrid[data-view="list"] .product-list-desc,
  #shopGrid.shop-view-list .product-list-desc{
    font-size:.8rem;
    line-height:1.45;
    max-height:2.9em;
    overflow:hidden;
    margin-top:.45rem;
    padding-top:.45rem;
  }

  #shopGrid[data-view="list"] > .grid-in > .product-card > .product-list-actions,
  #shopGrid.shop-view-list > .grid-in > .product-card > .product-list-actions{
    display:flex !important;
    flex:0 0 auto !important;
    gap:.45rem !important;
    padding-top:0 !important;
  }

  #shopGrid[data-view="list"] .product-list-price .price,
  #shopGrid.shop-view-list .product-list-price .price{font-size:.92rem}

  #shopGrid[data-view="list"] .product-list-cart .btn,
  #shopGrid.shop-view-list .product-list-cart .btn{font-size:.78rem;padding:.3rem .6rem}
}
.product-oos{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);background:rgba(58,28,12,.85);color:#fff;padding:.4rem 1rem;border-radius:999px;font-size:.8rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase}

/* ============= LOGO WITH IMAGE ============= */
.jm-logo-img {
  padding-top:15px;
   height: 100px;
  display: flex;
  align-items: center;
}
.jm-logo-img img{
  height: 100%;
  width: auto;
  object-fit: contain;
}
.jm-brand:hover .jm-logo-img {
  transform: scale(1.05);
}

/* ============= CONTENT PAGES ============= */
.category-feature{
  min-height:150px;
  display:flex;
  align-items:center;
  gap:1rem;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:1.4rem;
  color:var(--clay-deep);
  box-shadow:var(--shadow-sm);
  transition:transform .3s, box-shadow .3s, border-color .3s;
}
.category-feature:hover{transform:translateY(-5px);box-shadow:var(--shadow);border-color:#e4cda8;color:var(--clay-deep)}
.category-feature-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  background:var(--grad-warm);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:1.7rem;
}
.category-feature-body{display:flex;flex-direction:column;gap:.25rem;flex:1}
.category-feature-body strong{font-family:var(--ff-display);font-size:1.2rem}
.category-feature-body small{color:var(--muted)}
.about-art{
  min-height:460px;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 62% 46%,rgba(201,123,74,.65),transparent 32%),
    linear-gradient(135deg,#3a1c0c,#a85a32);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.about-art>i{font-size:13rem;opacity:.22}
.about-art>div{
  position:absolute;
  left:1.5rem;
  bottom:1.5rem;
  background:#fff;
  color:var(--clay-deep);
  border-radius:16px;
  padding:1rem 1.2rem;
  box-shadow:var(--shadow);
}
.about-art span{display:block;color:var(--muted);font-size:.78rem;text-transform:uppercase;letter-spacing:.12em}
.about-art strong{display:block;font-family:var(--ff-display);font-size:1.15rem}
.wishlist-actions-pro{
  display:flex;
  gap:.5rem;
  margin-top:.6rem;
}

.about-tradition{
    background:#fff;
}

.about-image-card{
    height:450px;
    border-radius:30px;
    background:linear-gradient(135deg,#c86a3a,#8a4d2b);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:120px;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.mission-vision-section{
    background:#f8f5f1;
}

.mv-card{
    height:100%;
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.mv-card:hover{
    transform:translateY(-10px);
}

.mv-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#c86a3a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:25px;
}

.mv-card h2{
    margin-bottom:20px;
    color:#8a4d2b;
}

.mv-card ul{
    padding-left:20px;
    margin:0;
}

.mv-card ul li{
    margin-bottom:12px;
}

.values-strip{
    background:#fff;
}

.value-box{
    background:#f8f5f1;
    padding:35px 20px;
    border-radius:20px;
    transition:.3s;
}

.value-box:hover{
    transform:translateY(-8px);
}

.value-box i{
    font-size:42px;
    color:#c86a3a;
}

.value-box h4{
    margin-top:15px;
    margin-bottom:5px;
    color:#8a4d2b;
    font-size:32px;
    font-weight:700;
}

.value-box p{
    margin:0;
    color:#666;
}

@media(max-width:991px){

    .about-image-card{
        height:300px;
        font-size:90px;
    }

    .mv-card{
        padding:30px;
    }
}

@media(max-width:767px){

    .about-image-card{
        height:240px;
        font-size:70px;
    }

    .mv-card{
        padding:25px;
    }

    .mv-card h2{
        font-size:28px;
    }
}

[data-reveal]{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

[data-reveal].active{
    opacity:1;
    transform:none;
}
.wishlist-actions-pro .btn:first-child{flex:1}

/* ============= NEW PAGES STYLING ============= */

/* ABOUT HERO */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(168, 90, 50, 0.05), rgba(94, 47, 23, 0.05));
}

.about-hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clay-deep);
  margin: 1.5rem 0;
}

.about-hero-title em {
  font-style: italic;
  color: var(--clay);
  font-weight: 800;
}

.about-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin: 1.5rem 0;
}

.about-image-box {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.about-image-box {
  position: relative;
  min-height: 400px;
  background: #fff7ed url('../images/story-image.jpg') center/contain no-repeat;
}

.about-image-box > div {
  display: none !important;
}

.about-story-section {
  padding: 70px 0;
  background: #fff;
}

.about-story-image {
  overflow: hidden;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-inline: auto;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(.65rem, 2vw, 1.1rem);
}

.about-story-points {
  display: grid;
  gap: .85rem;
  margin-top: 1.4rem;
}

.about-story-points div {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--clay-deep);
  font-weight: 700;
}

.about-story-points i {
  color: var(--clay);
  font-size: 1.2rem;
}

/* PROJECT HERO */
.project-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(168, 90, 50, 0.08), rgba(58, 28, 12, 0.08));
}

.project-hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--clay-deep);
  margin: 1.5rem 0;
}

.project-hero-title em {
  font-style: italic;
  color: var(--clay);
  font-weight: 800;
}

.project-hero-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 400px;
}

.project-tile {
  background: linear-gradient(135deg, #a85a32, #7a3a1d);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.project-tile:hover {
  transform: translateY(-5px);
}

.project-tile.t3 {
  grid-column: 1 / -1;
}

/* SECTION STYLES */
.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clay);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}

.section-projects {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* PROJECT CARD */
.project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.project-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
}

.project-card-body {
  padding: 30px;
}

.project-card-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 12px;
}

.project-card-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-stats {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.project-stats span {
  color: var(--clay-deep);
}

.project-stats strong {
  color: var(--clay);
  font-weight: 700;
}

/* MVV CARDS */
.section-mvv {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f3f0, #faf8f5);
}

.mvv-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.mvv-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.mvv-card.mission {
  border-top: 4px solid var(--clay);
}

.mvv-card.vision {
  border-top: 4px solid #d4a574;
}

.mvv-card.values {
  border-top: 4px solid #8d5a3a;
}

.mvv-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.mvv-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 15px;
}

.mvv-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* TIMELINE */
.section-journey {
  padding: 80px 0;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clay);
  transform: translateX(-1px);
}

.timeline-item {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.timeline-item:nth-child(even) {
  direction: rtl;
}

.timeline-item:nth-child(even) > * {
  direction: ltr;
}

.timeline-marker {
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-marker::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--clay);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--clay);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.year {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clay);
}

.timeline-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.timeline-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* TEAM SECTION */
.section-team {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f3f0, #faf8f5);
}

.team-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.team-avatar {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 8px;
}

.team-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* WHY US SECTION */
.section-why-us {
  padding: 80px 0;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-item {
  background: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border-top: 3px solid var(--line);
}

.why-item:hover {
  border-top-color: var(--clay);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  color: var(--clay);
  margin-bottom: 20px;
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* DETAIL CARDS */
.section-project-details {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f3f0, #faf8f5);
}

.detail-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.detail-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.detail-icon {
  font-size: 2.5rem;
  color: var(--clay);
  margin-bottom: 20px;
}

.detail-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 15px;
}

.detail-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* STATS SECTION */
.section-project-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--clay-deep), var(--clay));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  font-size: 1rem;
  opacity: 0.9;
}

/* CTA SECTIONS */
.section-project-cta, .section-about-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--clay-deep), var(--clay-dark));
}

.project-cta-card, .about-cta-card {
  text-align: center;
  color: white;
}

.project-cta-card h2, .about-cta-card h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.project-cta-card p, .about-cta-card p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media(max-width:991px){
  .timeline::before { left: 30px; }
  
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .timeline-item:nth-child(even) { direction: ltr; }
  .timeline-item:nth-child(even) > * { direction: ltr; }
  
  .timeline-marker {
    justify-content: flex-start;
    margin-left: 10px;
  }
  
  .timeline-marker::after { left: -48px; }
  
  .project-hero-img {
    grid-template-columns: 1fr;
    height: auto;
    gap: 15px;
  }
  
  .project-tile { min-height: 200px; }
  .project-tile.t3 { grid-column: auto; }
}

@media(max-width:768px){
  .about-hero, .project-hero { padding: 60px 0; }
  
  .project-hero-title, .about-hero-title { margin-top: 1rem; }
  
  .section-projects, .section-journey, .section-team, 
  .section-why-us, .section-project-details, .section-mvv {
    padding: 60px 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card-body { padding: 20px; }
  
  .mvv-card, .team-card, .why-item, .detail-card {
    padding: 25px;
  }
  
  .timeline-marker { margin-left: 0; }
  .timeline-marker::after { left: -38px; width: 16px; height: 16px; }
  
  .timeline::before { left: 20px; }
}

@media(max-width:575px){
  .about-hero, .project-hero { padding: 40px 0; }
  
  .about-hero-title, .project-hero-title { font-size: 1.8rem; }
  
  .about-lead { font-size: 1rem; }
  
  .section-eyebrow { font-size: 0.75rem; }
  
  .section-title { font-size: 1.5rem; }
  
  .project-card-img { height: 150px; font-size: 48px; }
  
  .project-hero-img { height: auto; }
  .project-tile { min-height: 150px; font-size: 60px; }
  
  .mvv-card, .team-card, .why-item, .detail-card {
    padding: 20px;
  }
  
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.9rem; }
  
  .project-cta-card h2, .about-cta-card h2 { font-size: 1.5rem; }
  .project-cta-card p, .about-cta-card p { font-size: 1rem; }
  
  .section-project-cta, .section-about-cta { padding: 60px 0; }
  
  .timeline::before { left: 15px; }
  .timeline-marker::after { left: -30px; }
}

/* ============= PRODUCT DETAILS PAGE ============= */
.product-detail-section {
  background: white;
}

/* BREADCRUMB */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-link {
  color: var(--clay);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumb-link:hover {
  color: var(--clay-deep);
}

.breadcrumb-sep {
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--clay-deep);
  font-weight: 600;
}

.policy-card {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.3rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}

.policy-card h2 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.6rem 0 .55rem;
  color: var(--clay-deep);
}

.policy-card h3 {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 800;
  margin: 1rem 0 .45rem;
  color: var(--clay);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  color: #5f5145;
  margin-bottom: .85rem;
}

.policy-card ul {
  color: #5f5145;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.policy-card li {
  margin-bottom: .35rem;
}

.faq-section {
  background: #fff;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}

.faq-card {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(1.25rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}

.faq-card h2 {
  text-align: center;
  margin: 2rem 0 1.4rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.faq-card h2:first-child {
  margin-top: 0;
}

.faq-accordion {
  display: grid;
  gap: .85rem;
  --bs-accordion-bg: #fff;
  --bs-accordion-border-color: var(--line);
  --bs-accordion-active-bg: var(--cream);
  --bs-accordion-active-color: var(--clay);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(168,90,50,.12);
}

.faq-accordion .faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  border: 1px solid var(--line) !important;
  border-radius: 10px !important;
  overflow: hidden;
  background: #fff;
}

.faq-accordion .faq-item:last-child {
  border-bottom: 1px solid var(--line) !important;
}

.faq-accordion .accordion-button {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 800;
  color: var(--clay-deep) !important;
  background: #fff !important;
  padding: 1rem 1.15rem;
  box-shadow: none !important;
  line-height: 1.45;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--clay) !important;
  background: var(--cream) !important;
}

.faq-accordion .accordion-button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 .2rem rgba(168,90,50,.12) !important;
}

.faq-accordion .accordion-button::after {
  flex-shrink: 0;
}

.faq-accordion .accordion-body {
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid var(--line);
}

.faq-accordion .accordion-body,
.faq-accordion .accordion-body li {
  color: #5f5145;
  font-size: .95rem;
  line-height: 1.75;
}

.faq-accordion .accordion-body p {
  margin: 0;
}

.faq-accordion .accordion-body ul {
  margin: 0;
  padding-left: 1.4rem;
}

/* PRODUCT GALLERY */
.product-gallery {
  position: relative;
}

.product-gallery-main {
  position: relative;
  background: var(--sand);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
}

.product-discount-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--clay-deep);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10;
}

.product-fullscreen-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-deep);
  font-size: 1.2rem;
  transition: all 0.2s ease;
  z-index: 5;
}

.product-fullscreen-btn:hover {
  background: white;
  transform: scale(1.05);
}

.product-zoom-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.product-gallery-main:hover .product-zoom-hint {
  opacity: 1;
}

/* THUMBNAIL GALLERY */
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 12px;
}

.product-thumb-btn {
  position: relative;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.product-thumb-btn:hover {
  border-color: var(--clay);
  transform: scale(0.95);
}

.product-thumb-btn.active {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(168, 90, 50, 0.1);
}

.product-thumb-btn.active img {
  transform: scale(1.05);
}

/* PRODUCT INFO */
.product-info {
  padding: 1rem 0;
}

.product-category-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clay);
  margin-bottom: 1rem;
}

.product-title-main {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--clay-deep);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  color: #ffc107;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.rating-count {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-sku {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* PRICING */
.product-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.current-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clay-deep);
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.savings-badge {
  background: var(--success);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.tax-info {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  width: 100%;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.product-benefits-summary {
  border: 1px solid rgba(168, 90, 50, .18);
  background: rgba(251, 247, 241, .75);
  border-radius: 8px;
  padding: 1rem 1.15rem;
}

.product-benefits-summary h2 {
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 800;
  color: var(--clay-deep);
  margin: 0 0 .6rem;
}

.product-benefits-summary ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: .92rem;
}

.product-benefits-summary li::marker {
  color: var(--clay);
}

.product-combo-summary {
  border: 1px dashed rgba(168, 90, 50, .36);
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.15rem;
}

.product-combo-summary h2 {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 800;
  color: var(--clay-deep);
  margin: 0 0 .6rem;
}

.product-combo-summary h2 i {
  color: var(--clay);
}

.product-combo-summary ul {
  margin: 0 0 .8rem;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: .92rem;
}

.product-combo-summary ul:last-child {
  margin-bottom: 0;
}

.product-combo-summary li::marker {
  color: var(--clay);
}

.product-free-shipping-note {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 1px solid rgba(35, 128, 83, .2);
  background: rgba(35, 128, 83, .08);
  color: #176a43;
  border-radius: 8px;
  padding: .65rem .85rem;
  font-size: .92rem;
  font-weight: 800;
}

.product-free-shipping-note i {
  font-size: 1.05rem;
}

/* STOCK STATUS */
.product-stock-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  font-weight: 500;
}

.stock-available {
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stock-low {
  color: #ff6b35;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.stock-unavailable {
  color: var(--danger);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* PURCHASE FORM */
.product-purchase-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--clay-deep);
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-deep);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.qty-btn:hover {
  background: var(--sand);
}

.qty-input {
  border: none;
  width: 60px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clay-deep);
}

.qty-input:focus {
  outline: none;
}

.button-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.button-group .btn {
  flex: 1;
  min-width: 150px;
  min-height: 50px;
  font-weight: 600;
}

.wishlist-toggle {
  flex: 0 0 58px !important;
  width: 58px;
  padding: 0 1.5rem;
}

/* USP GRID */
.product-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.usp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fef5f0, #fef0e7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.usp-content {
  flex: 1;
}

.usp-title {
  font-weight: 600;
  color: var(--clay-deep);
  font-size: 0.95rem;
}

.usp-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* TABS SECTION */
.product-tabs-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--line);
}

.tabs-header {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 5vw, 4rem);
  border-bottom: 0;
  margin-bottom: 2.3rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: .35rem 0 1rem;
  font-family: var(--ff-body);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
  color: #bfc3c8;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--clay);
}

.tab-btn.active {
  color: #1f2933;
}

.tab-btn.active::after {
  display: none;
}

.tabs-content {
  display: flex;
  flex-direction: column;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 1.5rem;
}

.tab-pane h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clay-deep);
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.info-list li {
  padding: 0.8rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.info-list i {
  color: var(--clay);
  font-weight: 700;
  margin-top: 0.25rem;
}

.product-how-use {
  max-width: 1128px;
  margin: 0 auto;
  color: #17202a;
  line-height: 1.9;
}

.product-how-use h5 {
  font-family: var(--ff-body);
  font-size: .92rem;
  font-weight: 500;
  color: #17202a;
  margin-bottom: .65rem;
  text-transform: uppercase;
}

.how-do-list,
.how-dont-list {
  margin: 0;
  padding: 0;
  font-size: .92rem;
}

.how-do-list {
  list-style: none;
}

.how-do-list li {
  position: relative;
  padding-left: .75rem;
  margin-bottom: .55rem;
}

.how-do-list li::before {
  content: "-";
  position: absolute;
  left: 0;
}

.how-dont-list {
  padding-left: 1.1rem;
}

.how-dont-list li {
  margin-bottom: .18rem;
}

.how-important-note {
  height: 100%;
  border: 1px solid rgba(168, 90, 50, .18);
  border-radius: 8px;
  background: rgba(251, 247, 241, .72);
  padding: 1rem;
}

.how-important-note h5 {
  color: var(--clay);
}

.how-important-note p {
  margin: 0;
  color: #26313a;
  font-size: .9rem;
  line-height: 1.75;
}

.info-card {
  background: var(--sand);
  padding: 2rem;
  border-radius: 12px;
}

.info-card h5 {
  margin-bottom: 1.5rem;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clay);
  min-width: 50px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SPECS GRID */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--sand);
  border-radius: 12px;
}

.spec-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-weight: 600;
  color: var(--clay-deep);
  font-size: 1rem;
}

/* CARE STEPS */
.care-steps {
  margin: 0;
  padding: 0 0 0 2rem;
}

.care-steps li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* RELATED PRODUCTS */
.related-products-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
}

.related-products-head {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.4rem);
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.related-product-card {
  min-width: 0;
}

/* RESPONSIVE */
@media(max-width:991px) {
  .product-showcase {
    flex-direction: column;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media(max-width:768px) {
  .product-title-main {
    font-size: 1.8rem;
  }

  .current-price {
    font-size: 1.8rem;
  }

  .product-pricing {
    padding: 1rem 0;
  }

  .product-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .tabs-header {
    gap: 0;
  }

  .tab-btn {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .related-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }

  .wishlist-toggle {
    flex: 1 1 auto !important;
    width: 100%;
  }
}

@media(max-width:575px) {
  .product-detail-section {
    padding: 2rem 0;
  }

  .product-category-label {
    font-size: 0.75rem;
  }

  .product-title-main {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .current-price {
    font-size: 1.5rem;
  }

  .product-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 8px;
  }

  .product-usp-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .tabs-header {
    gap: 0;
    overflow-x: auto;
    margin-bottom: 1.5rem;
  }

  .tab-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .button-group {
    flex-direction: column;
  }

  .tab-pane h3 {
    font-size: 1.2rem;
  }

  .specs-grid {
    gap: 1rem;
  }

  .spec-item {
    padding: 1rem;
  }

  .related-products-section {
    padding: 2.5rem 0;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width:575px){
  .category-feature{min-height:auto;padding:1rem}
  .category-feature-icon{width:52px;height:52px;font-size:1.35rem}
  .about-art{min-height:320px}
  .wishlist-actions-pro{flex-direction:column}
}

/* ============= SITE POLISH OVERRIDES ============= */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  min-width: 120px;
}

.jm-nav .navbar-collapse {
  align-items: center;
}

.nav-icon {
  position: relative;
}

.dropdown-toggle::after {
  display: none;
}

@media (max-width: 991px) {
  .jm-nav .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 1rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .jm-nav .navbar-nav {
    gap: .25rem;
  }

  .jm-nav .d-flex.align-items-center.gap-2 {
    justify-content: center;
    margin-top: .75rem;
  }
}

.mk-cat {
  background: linear-gradient(160deg,#a85a32,#5e2f17);
  box-shadow: 0 16px 34px rgba(58,28,12,.16);
}

.mk-cat-bg i {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,.72);
}

.mk-cat::after {
  background: linear-gradient(180deg,rgba(20,8,2,.08) 0%,rgba(20,8,2,.24) 42%,rgba(20,8,2,.76) 100%);
}

.mk-cat-body {
  max-width: calc(100% - 78px);
}

.mk-cat-body h3 {
  overflow-wrap: anywhere;
}

.product-detail-rich {
  overflow: hidden;
  max-width: 1128px;
  margin: 0 auto;
}

.product-feature-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: clamp(.8rem, 2vw, 1.6rem);
  padding: .75rem 0 1.45rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.product-feature {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .5rem;
  text-align: center;
  color: #17202a;
  font-weight: 800;
  font-size: .78rem;
  line-height: 1.25;
}

.product-feature i {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(184,93,72,.78);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b85d48;
  font-size: 1.7rem;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.product-feature:hover i {
  transform: translateY(-4px) scale(1.03);
  background: var(--clay);
  color: #fff;
}

.product-detail-rich .row.g-4 {
  align-items: start;
}

.description-tab-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: clamp(1.35rem, 3vw, 2.5rem);
  align-items: start;
}

.description-tab-layout-single {
  grid-template-columns: minmax(0, 1fr);
}

.description-tab-left,
.description-tab-right {
  min-width: 0;
}

.description-block {
  margin-bottom: 1rem;
}

.description-block:last-child {
  margin-bottom: 0;
}

.product-detail-rich h4 {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: #17202a;
  font-size: .92rem;
  font-family: var(--ff-body);
  font-weight: 800;
  margin-bottom: .6rem;
}

.product-detail-rich h4::first-letter {
  color: var(--clay);
}

.product-table-card {
  overflow: hidden;
}

.product-table-card h4 i {
  color: var(--clay);
}

.product-detail-rich .product-spec-table {
  width: 100%;
  border: 1px solid #26313a;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 0;
  table-layout: fixed;
}

.product-detail-rich .product-spec-table th,
.product-detail-rich .product-spec-table td {
  border: 1px solid #26313a;
  vertical-align: middle;
  padding: .42rem .65rem;
  font-size: .78rem;
  text-align: center;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-detail-rich .product-spec-table th {
  width: 36%;
  font-weight: 800;
  color: #050505;
  background: #fafafa;
}

.product-detail-rich .product-spec-table td {
  color: #26313a;
  background: #fff;
}

.product-detail-rich .product-spec-table tr:nth-child(even) td {
  background: #fcfcfc;
}

.product-detail-rich ul {
  padding-left: 1.2rem;
  color: #26313a;
  line-height: 1.72;
  font-size: .84rem;
  margin-bottom: 0;
}

.product-detail-rich li::marker {
  color: var(--clay);
}

.product-detail-rich a,
.knowledge-links li {
  color: var(--clay);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-description-full {
  max-width: 1128px;
  color: #26313a;
  line-height: 1.75;
  font-size: .88rem;
}

.porosity-tab-title {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--clay-deep);
  margin: .35rem auto .5rem;
}

.porosity-tab-body,
.additional-info-content {
  margin: 0 auto;
}

.porosity-tab-body p {
  margin: 0 0 .45rem;
}

.description-notes {
  border: 1px solid rgba(168, 90, 50, .18);
  border-radius: 8px;
  background: rgba(251, 247, 241, .72);
  padding: 1rem;
}

.description-notes p {
  margin: 0;
  color: #26313a;
  font-size: .88rem;
  line-height: 1.75;
}

.combo-description-list {
  display: grid;
  gap: .85rem;
}

.combo-description-intro {
  margin-bottom: .35rem;
}

.combo-description-intro h4 {
  margin: 0 0 .65rem;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #152433;
}

.combo-description-intro p {
  margin: 0;
  color: #152433;
  line-height: 1.9;
  font-size: .98rem;
}

.combo-description-intro a,
.combo-description-item a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.combo-description-item {
  position: relative;
  padding-left: 1.25rem;
}

.combo-description-item::before {
  content: "";
  position: absolute;
  left: .2rem;
  top: .58rem;
  width: .28rem;
  height: .28rem;
  border-radius: 50%;
  background: #152433;
}

.combo-description-item h4 {
  margin: 0 0 .45rem;
  font-family: var(--ff-body);
  font-size: .95rem;
  font-weight: 800;
  color: #152433;
}

.combo-description-item p {
  margin: 0;
  color: #152433;
  line-height: 1.85;
  font-size: .95rem;
}

.knowledge-article {
  max-width: 980px;
  font-size: .98rem;
  line-height: 1.8;
}

.knowledge-article h2 {
  margin-top: 1.6rem;
}

.knowledge-article .article-note {
  border-left: 4px solid var(--clay);
  background: var(--cream);
  padding: 1rem 1.15rem;
  border-radius: 8px;
}

.product-description-list {
  padding-left: 1.25rem;
}

.product-description-list li {
  margin-bottom: .35rem;
}

.product-export-table {
  max-width: 70%;
}

.jm-footer {
  position: relative;
  background:
    linear-gradient(180deg,rgba(255,255,255,.92),rgba(246,239,230,.96)),
    url('../images/bg-image.jpeg') center/cover fixed;
  border-top: 1px solid var(--line);
  margin-top: 70px;
}

.footer-top,
.footer-middle {
  position: relative;
  z-index: 1;
}

.footer-top {
  padding: 46px 0;
}

.footer-logo {
  max-width: 150px;
  margin-inline: auto;
}

.footer-menu a,
.footer-block a {
  display: block;
  width: fit-content;
  min-height: 28px;
}

.footer-menu a:hover,
.footer-block a:hover,
.footer-social a:hover {
  transform: translateX(4px);
}

.footer-block h4 {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-family: var(--ff-display);
}

.footer-middle .row {
  align-items: start;
}

.footer-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
}

.footer-block h4 {
  width: fit-content;
  margin-bottom: .8rem;
}

.footer-block a {
  margin-bottom: 0;
  line-height: 1.55;
}

.footer-bottom {
  background: rgba(34,22,14,.96);
}

.payment-icons-text {
  color: #f3e6d3;
  font-size: .85rem;
}

.payment-methods {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .35rem;
}

.pay-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  padding: .28rem .55rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.22);
  color: #17202a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 3px 10px rgba(0,0,0,.16);
}

.pay-upi {
  color: #176a34;
}

.pay-card {
  color: #0b4a7a;
}

.pay-net {
  color: #7a3a1d;
}

.pay-visa {
  color: #1434cb;
}

.pay-rupay {
  color: #0b7a5a;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 10020;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.bulk-order-panel,
.bulk-benefits {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.bulk-benefits {
  background:
    linear-gradient(180deg,rgba(255,255,255,.9),rgba(251,247,241,.94)),
    url('../images/03.jpg') center/cover;
}

.bulk-benefits ul {
  padding-left: 1.2rem;
  color: var(--clay-deep);
  line-height: 1.9;
}

.bulk-order-form .form-control,
.bulk-order-form .form-select,
.contact-form .form-control,
.admin-product-content .form-control {
  border-radius: 10px;
  border-color: var(--line);
}

.bulk-order-form .form-control:focus,
.contact-form .form-control:focus,
.admin-product-content .form-control:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 .2rem rgba(168,90,50,.12);
}

.admin-product-content .admin-link-group {
  background: rgba(251,247,241,.58);
  border-color: var(--line) !important;
}

.admin-product-content .admin-link-row {
  align-items: center;
}

.admin-product-content .admin-link-row:last-child {
  margin-bottom: 0 !important;
}

@media (max-width: 575px) {
  .admin-product-content .row.g-2 > [class*="col-"],
  .admin-product-content .admin-link-row > [class*="col-"] {
    width: 100%;
    flex: 0 0 100%;
  }
}

.product-detail-rich .row.g-4 > .col-lg-6:first-child > .jm-fixed-description {
  display: none;
}

.jm-fixed-description {
  display: block;
}

.jm-fixed-description h4 i {
  color: var(--clay);
}

.jm-fixed-description .knowledge-links a {
  color: var(--clay);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-video-box,
.product-review-box {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.product-video-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: .75rem;
  text-align: center;
  background: linear-gradient(135deg,#f6efe6,#fff);
  border: 1px dashed rgba(168,90,50,.35);
  border-radius: 14px;
}

.product-video-placeholder i {
  font-size: 4rem;
  color: var(--clay);
}

.product-video-placeholder h3,
.product-video-placeholder p {
  margin: 0;
}

.product-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.product-video-frame iframe,
.product-video-player {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-video-player {
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
}

.product-review-list {
  display: grid;
  gap: 1rem;
}

.product-review-pane {
  display: none;
}

.product-review-pane.active {
  display: block;
}

.product-review-summary {
  margin-bottom: 1.5rem;
}

.product-review-summary h3,
.product-review-form-wrap h3 {
  font-family: var(--ff-display);
  color: var(--clay-deep);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  margin-bottom: .35rem;
}

.product-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .65rem;
}

.product-review-form-wrap {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.product-review-form .form-control,
.product-review-form .form-select {
  border-radius: 10px;
  border-color: var(--line);
}

.product-review-form .form-control:focus,
.product-review-form .form-select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 .2rem rgba(168,90,50,.12);
}

.product-description-full {
  color: #26313a;
  line-height: 1.9;
}

.product-video-pane > h3,
.product-video-pane > ul,
.product-video-pane > p,
.product-review-pane > .row {
  display: none;
}

@media (max-width: 900px) {
  .product-feature-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .description-tab-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  section {
    padding: 3.5rem 0;
  }

  .footer-top,
  .footer-middle {
    padding: 34px 0;
  }

  .footer-menu {
    text-align: center;
  }

  .footer-menu a,
  .footer-block a,
  .footer-block h4 {
    margin-inline: auto;
  }

  .footer-block {
    align-items: center;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .product-tabs-section {
    margin-top: 2.6rem;
    padding-top: 2rem;
  }

  .tabs-header {
    justify-content: flex-start;
    gap: 1.2rem;
    padding-bottom: .25rem;
  }

  .tab-btn {
    font-size: 1.05rem;
    padding: .45rem 0 .85rem;
  }

  .product-feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    padding-bottom: 1.1rem;
  }

  .product-feature i {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
  }

  .product-feature {
    font-size: .74rem;
  }

  .description-tab-layout {
    gap: 1.35rem;
  }

  .product-detail-rich .product-spec-table {
    table-layout: fixed;
  }

  .product-detail-rich .product-spec-table th,
  .product-detail-rich .product-spec-table td {
    padding: .55rem;
    font-size: .82rem;
    overflow-wrap: anywhere;
  }

  .product-detail-rich h4 {
    font-size: .9rem;
  }

  .product-detail-rich ul,
  .product-description-full {
    font-size: .84rem;
  }

  .mk-cat {
    min-height: 190px;
  }

  .scroll-top-btn {
    right: 16px;
    bottom: 86px;
    width: 46px;
    height: 46px;
  }
}

/* ============= RESPONSIVE LOGO BADGE OVERRIDE ============= */
.jm-nav {
  overflow: visible;
}

.jm-nav .container {
  min-height: 70px;
}

.navbar-brand.jm-brand {
  min-width: 118px;
  height: 70px;
  padding-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.jm-logo-badge {
  width: 104px;
  height: 104px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding-top: 0;
  overflow: hidden;
  border-radius: 50%;
  clip-path: none;
  background: transparent;
  border: 0;
  box-shadow: 0 18px 34px rgba(58,28,12,.18);
  filter: none;
  transform: translateY(29px);
  transition: transform .25s ease, box-shadow .25s ease;
}

.navbar-brand.jm-brand:hover .jm-logo-badge {
  transform: translateY(29px) scale(1.04);
  box-shadow: 0 22px 40px rgba(58,28,12,.22);
}

.navbar-brand.jm-brand .jm-logo-img {
  width: 116%;
  height: 116%;
  max-width: none;
  max-height: none;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: contain;
  filter: none;
  transform: translateY(-1px);
}

.navbar-brand.jm-brand:hover .jm-logo-img {
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .jm-nav .container,
  .navbar-brand.jm-brand {
    min-height: 65px;
    height: 65px;
  }

  .navbar-brand.jm-brand {
    min-width: 96px;
    padding-bottom: 20px;
  }

  .jm-logo-badge {
    width: 86px;
    height: 86px;
    transform: translateY(24px);
  }

  .navbar-brand.jm-brand:hover .jm-logo-badge {
    transform: translateY(24px) scale(1.03);
  }
}

@media (max-width: 768px) {
  .jm-nav .container,
  .navbar-brand.jm-brand {
    min-height: 62px;
    height: 62px;
    
  }

  .jm-logo-badge {
    width: 78px;
    height: 78px;
    transform: translateY(21px);
  }

  .navbar-brand.jm-brand:hover .jm-logo-badge {
    transform: translateY(21px) scale(1.03);
  }
}

@media (max-width: 576px) {
  .jm-nav .container,
  .navbar-brand.jm-brand {
    min-height: 58px;
    height: 58px;
  }

  .navbar-brand.jm-brand {
    min-width: 82px;
  }

  .jm-logo-badge {
    width: 72px;
    height: 72px;
    transform: translateY(20px);
  }

  .navbar-brand.jm-brand:hover .jm-logo-badge {
    transform: translateY(20px) scale(1.03);
  }
}

/* Offer cards background images */
.deal-card.deal-card-bg-1 {
  background: linear-gradient(135deg, rgba(58,28,12,.82), rgba(168,90,50,.38)), url("../images/03.jpg") center/cover no-repeat !important;
  color: #fff !important;
}

.deal-card.deal-card-bg-2 {
  background: linear-gradient(135deg, rgba(58,28,12,.82), rgba(168,90,50,.38)), url("../images/000.jpg") center/cover no-repeat !important;
  color: #fff !important;
}

.deal-card.deal-card-bg-3 {
  background: linear-gradient(135deg, rgba(58,28,12,.82), rgba(168,90,50,.38)), url("../images/bg-image.jpeg") center/cover no-repeat !important;
  color: #fff !important;
}

.deal-card.deal-card-bg-1 h3,
.deal-card.deal-card-bg-1 p,
.deal-card.deal-card-bg-1 .deal-eyebrow,
.deal-card.deal-card-bg-1 .deal-link,
.deal-card.deal-card-bg-2 h3,
.deal-card.deal-card-bg-2 p,
.deal-card.deal-card-bg-2 .deal-eyebrow,
.deal-card.deal-card-bg-2 .deal-link,
.deal-card.deal-card-bg-3 h3,
.deal-card.deal-card-bg-3 p,
.deal-card.deal-card-bg-3 .deal-eyebrow,
.deal-card.deal-card-bg-3 .deal-link {
  color: #fff !important;
}

.cart-thumb{
  width:80px;height:80px;flex:0 0 80px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  background:#fff;border:1px solid var(--line);
}
.cart-thumb img{width:100%;height:100%;object-fit:contain;padding:.25rem}
.cart-thumb i{font-size:1.6rem;color:var(--clay);opacity:.45}

