/* =====================================================================
   PEBBLES ENTERPRISES — STYLES
   Palette: warm cream + terracotta + olive (handmade, earthy)
   Fonts:   Fraunces (headings) + DM Sans (body)
   ===================================================================== */

:root {
  --cream:        #FAF6F0;
  --cream-deep:   #F1E9DA;
  --ink:          #2A2522;
  --ink-soft:     #5C544F;
  --terracotta:   #C7522A;
  --terracotta-d: #A4391A;
  --olive:        #6B7A3F;
  --gold:         #B8893B;
  --line:         #E6DCC8;
  --white:        #FFFFFF;
  --shadow-sm:    0 2px 8px rgba(42, 37, 34, .06);
  --shadow-md:    0 8px 28px rgba(42, 37, 34, .10);
  --radius:       18px;
  --radius-sm:    10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

::selection { background: var(--terracotta); color: var(--cream); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
  gap: 16px;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.brand span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}
.nav-links a {
  position: relative;
  transition: color .2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  position: relative;
  background: transparent;
  border: 1px solid var(--line);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .25s;
  color: var(--ink);
  font-size: 0.95rem;
}
.icon-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.icon-btn .badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--terracotta);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 20px; height: 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 0 5px;
  font-family: 'DM Sans', sans-serif;
}

.menu-toggle {
  display: none;
  background: none; border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink);
}
.google-search {
  text-align: center;
  padding: 40px 20px;
}

.google-card {
  max-width: 420px;
  margin: 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.google-card img {
  width: 100%;
  display: block;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}
.btn-upi {
  background: var(--gold);
  color: var(--white);
}
.btn-upi:hover { background: #9b7228; }

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-deep);
  color: var(--ink-soft);
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 {
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.hero-tag strong { color: var(--terracotta); }

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head .subtitle {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 8px;
}
.section-link {
  font-size: 0.95rem;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .2s;
}
.section-link:hover { opacity: 0.7; }

/* ---------- CATEGORIES ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s ease;
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--terracotta);
  transition: all .3s;
}
.cat-card:hover .cat-icon {
  background: var(--terracotta);
  color: var(--cream);
}
.cat-card h3 { font-size: 1.05rem; }

/* ---------- SEARCH ---------- */
.search-bar {
  position: relative;
  margin-bottom: 32px;
  max-width: 540px;
}
.search-bar input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  transition: border-color .2s;
}
.search-bar input:focus {
  outline: none;
  border-color: var(--terracotta);
}
.search-bar i {
  position: absolute;
  left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.chip {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  color: var(--ink);
}
.chip:hover { border-color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ---------- PRODUCTS ---------- */
  
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-img-wrap{
    aspect-ratio:1/1;
    overflow:hidden;
}

.product-img-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.wish-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: all .25s;
  z-index: 2;
}
.wish-btn:hover { transform: scale(1.1); }
.wish-btn.active { color: var(--terracotta); }
.wish-btn.active i { font-weight: 900; }

.stock-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.stock-tag.made { background: var(--gold); }
.stock-tag.out  { background: var(--ink-soft); }

.product-body {
  padding: 18px 20px 22px;
}
.product-cat {
  font-size: 0.75rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.product-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--ink);
}
.product-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}
.product-price small {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.78rem;
}
.add-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.add-btn:hover {
  background: var(--terracotta);
}

/* ---------- PRODUCT DETAIL ---------- */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }

.detail-info .product-cat { font-size: 0.8rem; margin-bottom: 12px; }
.detail-info h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.detail-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.detail-info .desc {
  color: var(--ink-soft);
  margin: 22px 0;
  font-size: 1rem;
  line-height: 1.7;
}
.detail-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream-deep);
  padding: 18px 22px;
  border-radius: 14px;
  margin: 26px 0;
  font-size: 0.92rem;
}
.detail-meta div { display: flex; justify-content: space-between; }
.detail-meta span:first-child { color: var(--ink-soft); }

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

/* ---------- CART / WISHLIST PAGES ---------- */
.list-page { padding: 60px 0 100px; }
.list-empty {
  text-align: center;
  padding: 80px 20px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.list-empty i {
  font-size: 2.5rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.list-empty h3 { margin-bottom: 8px; }
.list-empty p { color: var(--ink-soft); margin-bottom: 22px; }

.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 18px;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  align-items: center;
}
.cart-item img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px;
}
.cart-item h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem; margin-bottom: 4px;
}
.cart-item .cat {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-control button {
  background: transparent; border: none;
  width: 30px; height: 30px;
  cursor: pointer; color: var(--ink);
}
.qty-control button:hover { background: var(--cream-deep); }
.qty-control span { padding: 0 12px; font-size: 0.9rem; }
.cart-item-right {
  text-align: right;
  display: flex; flex-direction: column;
  gap: 10px; align-items: flex-end;
}
.cart-item-price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
}
.remove-btn {
  background: none; border: none;
  color: var(--ink-soft);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
}
.remove-btn:hover { color: var(--terracotta); }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-size: 1.3rem; margin-bottom: 22px; }
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}
.sum-row.total {
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding-top: 18px;
  font-size: 1.15rem;
  font-weight: 600;
}
.sum-row.total span:last-child {
  font-family: 'Fraunces', serif;
  color: var(--terracotta);
}
.checkout-actions {
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 22px;
}
.checkout-actions .btn { justify-content: center; }
.payment-note {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-row {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ic {
  width: 44px; height: 44px;
  background: var(--cream-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}
.contact-row h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-row p { font-size: 1rem; }

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.contact-form button { margin-top: 22px; width: 100%; justify-content: center; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 70px 0 30px;
  margin-top: 60px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-grid h4 {
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.foot-brand { font-family: 'Fraunces', serif; font-size: 1.6rem; margin-bottom: 14px; }
.foot-brand span { color: var(--terracotta); }
.foot-grid p, .foot-grid a {
  color: rgba(250, 246, 240, 0.7);
  font-size: 0.92rem;
  line-height: 1.9;
}
.foot-grid a { display: block; transition: color .2s; }
.foot-grid a:hover { color: var(--terracotta); }
.foot-socials { display: flex; gap: 10px; margin-top: 18px; }
.foot-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(250,246,240,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.foot-socials a:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
.foot-bottom {
  border-top: 1px solid rgba(250,246,240,0.1);
  padding-top: 26px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250,246,240,0.5);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.92rem;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: transform .35s ease;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: #6ed28a; }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform .25s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: 24px 0 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- UPI MODAL ---------- */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 34, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 38px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-md);
}
.modal h3 { margin-bottom: 6px; }
.modal p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none; border: none;
  font-size: 1.2rem; cursor: pointer;
  color: var(--ink-soft);
}
.qr-box {
  background: var(--white);
  padding: 18px;
  border-radius: 14px;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.qr-box img { width: 200px; height: 200px; }
.upi-id-box {
  background: var(--cream-deep);
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'DM Mono', monospace;
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.copy-btn {
  background: var(--ink); color: var(--cream);
  border: none; padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem; cursor: pointer;
  font-family: inherit;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .detail-grid,
  .cart-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 56px 0; }
  .hero { padding: 50px 0 60px; }
  .cart-summary { position: static; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .menu-toggle { display: inline-flex; }
  .foot-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
  .container { padding: 0 18px; }
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-right {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
}
.nav-actions a[aria-label="Search"] {
    display: none;
}
/* ================================
   SIDE DRAWER
================================ */

.drawer-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:998;
}

.drawer-overlay.show{
    opacity:1;
    visibility:visible;
}

.side-drawer{
    position:fixed;
    top:0;
    left:-320px;
    width:300px;
    height:100%;
    background:#fff;
    z-index:999;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    box-shadow:0 0 20px rgba(0,0,0,.25);
}

.side-drawer.open{
    left:0;
}

.drawer-header{
    background:var(--terracotta);
    color:#fff;
    text-align:center;
    padding:28px 20px;
    position:relative;
}

.drawer-logo{
    width:75px;
    height:75px;
    border-radius:50%;
    background:#fff;
    padding:6px;
    margin:auto;
    margin-bottom:12px;
}

.drawer-header h2{
    color:#fff;
    margin-bottom:6px;
}

.drawer-header p{
    color:#f5f5f5;
    font-size:.9rem;
}

.close-drawer{
    position:absolute;
    right:15px;
    top:15px;
    background:none;
    border:none;
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.drawer-links{
    flex:1;
    padding:15px 0;
}

.drawer-links a{
    display:flex;
    align-items:center;
    gap:15px;
    padding:16px 24px;
    font-size:16px;
    color:#333;
    border-bottom:1px solid #eee;
    transition:.25s;
}

.drawer-links a:hover{
    background:#f8f8f8;
    color:var(--terracotta);
}

.drawer-links i{
    width:24px;
    text-align:center;
    color:var(--terracotta);
}

.drawer-bottom{
    padding:20px;
}

.drawer-btn{
    display:block;
    background:var(--terracotta);
    color:#fff;
    text-align:center;
    padding:14px;
    border-radius:10px;
    font-weight:bold;
}
/* ================================
   MOBILE DRAWER
================================ */

@media (min-width:641px){
    .drawer-overlay,
    .side-drawer{
        display:none;
    }
}

@media (max-width:640px){

    .nav-links{
        display:none !important;
    }

    .menu-toggle{
        display:inline-flex !important;
        align-items:center;
        justify-content:center;
    }

    body.drawer-open{
        overflow:hidden;
    }

    .drawer-links a{
        font-size:17px;
    }

    .drawer-btn{
        font-size:16px;
    }
}
.collage{
    position:relative;
    min-height:520px;
}

.hero-logo{
    width:180px;
    display:block;
    margin:auto;
    border-radius:50%;
    background:#fff;
    padding:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.hero-slider{
    max-width: 320px;
    margin: 30px auto;
}

.hero-slider img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
}
.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand-logo{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.nav-logo{
    width:48px;
    height:48px;
    border-radius:50%;
    object-fit:cover;
    margin-right:12px;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}
.brand span{
    display:block;
    line-height:1.1;
}

@media (max-width:640px){

.nav-logo{
    width:60px;
    height:60px;
}

.brand{
    gap:10px;
}

.brand span{
    font-size:18px;
}
}
/* Force 2 products per row on mobile */
@media screen and (max-width:640px){

.product-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:12px !important;
}

.product-img-wrap{
    height:160px !important;
}

.product-body{
    padding:10px !important;
}

.product-name{
    font-size:15px !important;
}

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

.add-btn{
    padding:8px 10px !important;
    font-size:13px !important;
}

}
.large-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}
