/** Shopify CDN: Minification failed

Line 21:10 Unexpected "{"
Line 21:19 Expected ":"
Line 21:26 Unexpected "{"
Line 22:14 Expected identifier but found whitespace
Line 22:16 Unexpected "{"
Line 22:25 Expected ":"
Line 22:51 Expected ":"
Line 23:17 Expected identifier but found whitespace
Line 23:19 Unexpected "{"
Line 23:28 Expected ":"
... and 1 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:gallery (INDEX:33) */
.section-{{ section.id }} {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
}

/* ✅ Make gallery images taller */
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card__image-wrapper img {
  height: 320px; /* was 220px */
  object-fit: cover;
}

/* General Layout */
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-row {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-background, #fff);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card:hover {
  transform: translateY(-5px);
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card__image-wrapper {
  position: relative;
  cursor: pointer;
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card__image-wrapper img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-card:hover .multicolumn-card__image-wrapper img {
  transform: scale(1.05);
}

@media (max-width: 749px) {
  div#shopify-section-template--25987288924469__gallery_kXD9VD .multicolumn-row {
    grid-template-columns: 1fr !important;
  }
}

/* ✅ Lightbox popup */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.gallery-lightbox.active {
  display: flex;
}
.gallery-lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
}
.gallery-lightbox .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 50%;
  transition: background 0.3s ease;
}
.gallery-lightbox .nav-btn:hover {
  background: rgba(255,255,255,0.4);
}
.gallery-lightbox .prev { left: 40px; }
.gallery-lightbox .next { right: 40px; }
.gallery-lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}
/* END_SECTION:gallery */

/* START_SECTION:product-multitabs (INDEX:72) */
/* ═══════════════════════════════════════════════
   GULABCHAND — Tabbed Products Section
   ═══════════════════════════════════════════════ */

:root {
  --gc-ivory:   #fffdf5;
  --gc-sand:    #f5ecce;
  --gc-sand2:   #ede0b0;
  --gc-border:  #e3d3ab;
  --gc-gold:    #c8860a;
  --gc-rust:    #c0601a;
  --gc-brown:   #3d2600;
  --gc-mid:     #7a5820;
  --gc-muted:   #a08040;
  --gc-serif:   'Georgia', 'Times New Roman', serif;
  --gc-sans:    -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gc-ease:    cubic-bezier(.4,0,.2,1);
  
  --gc-cream:       #f8f2e0;
  --gc-cream-dark:  #ede5c8;
  --gc-amber:       #c8860a;
  --gc-amber-light: #e8a422;
  --gc-amber-pale:  #fdf3d8;
  --gc-brown:       #3d2b00;
  --gc-brown-mid:   #7a5c1e;
  --gc-rust:        #c0671a;
  --gc-white:       #fffdf6;
  --gc-border:      #e0d0a8;
  --gc-shadow:      rgba(61, 43, 0, 0.10);
  --gc-radius:      10px;
  --gc-radius-sm:   6px;
  --gc-transition:  0.22s ease;
}

/* ── Section wrapper ── */
.gc-tabs-section {
  background: var(--gc-ivory);
  padding: 50px 0 35px;
  position: relative;
  overflow: hidden;
}
.gc-tabs-section::before,
.gc-tabs-section::after {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gc-gold) 30%, var(--gc-gold) 70%, transparent);
  opacity: .25;
  position: absolute;
  left: 0; right: 0;
}
.gc-tabs-section::before { top: 0; }
.gc-tabs-section::after  { bottom: 0; }

/* ═══════════════════════════════════════════════
   FLYING DRY FRUITS
   ═══════════════════════════════════════════════ */
.gc-flying-fruits {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.gc-fruit {
  position: absolute;
  width: 42px;
  height: 42px;
  object-fit: contain;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 4px 8px rgba(61,38,0,.18));
}
@keyframes gc-fly-1  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.7)} 15%{opacity:.75} 85%{opacity:.75} 100%{opacity:0;transform:translate(160px,-340px) rotate(300deg) scale(1.1)} }
@keyframes gc-fly-2  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.8)} 15%{opacity:.7} 85%{opacity:.7} 100%{opacity:0;transform:translate(-180px,-280px) rotate(-240deg) scale(1.05)} }
@keyframes gc-fly-3  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.65)} 15%{opacity:.8} 85%{opacity:.8} 100%{opacity:0;transform:translate(220px,-200px) rotate(400deg) scale(1.15)} }
@keyframes gc-fly-4  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.75)} 15%{opacity:.65} 85%{opacity:.65} 100%{opacity:0;transform:translate(-120px,-380px) rotate(-360deg) scale(1.0)} }
@keyframes gc-fly-5  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.8)} 15%{opacity:.7} 85%{opacity:.7} 100%{opacity:0;transform:translate(80px,-420px) rotate(280deg) scale(1.1)} }
@keyframes gc-fly-6  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.7)} 15%{opacity:.75} 85%{opacity:.75} 100%{opacity:0;transform:translate(-200px,-300px) rotate(-300deg) scale(1.05)} }
@keyframes gc-fly-7  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.6)} 15%{opacity:.8} 85%{opacity:.8} 100%{opacity:0;transform:translate(300px,-250px) rotate(420deg) scale(1.2)} }
@keyframes gc-fly-8  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.75)} 15%{opacity:.65} 85%{opacity:.65} 100%{opacity:0;transform:translate(-90px,-450px) rotate(-200deg) scale(1.0)} }
@keyframes gc-fly-9  { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.8)} 15%{opacity:.7} 85%{opacity:.7} 100%{opacity:0;transform:translate(250px,-180px) rotate(350deg) scale(1.15)} }
@keyframes gc-fly-10 { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.7)} 15%{opacity:.6} 85%{opacity:.6} 100%{opacity:0;transform:translate(-250px,-220px) rotate(-380deg) scale(1.1)} }
@keyframes gc-fly-11 { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.65)} 15%{opacity:.75} 85%{opacity:.75} 100%{opacity:0;transform:translate(180px,-390px) rotate(460deg) scale(1.0)} }
@keyframes gc-fly-12 { 0%{opacity:0;transform:translate(0,0) rotate(0deg) scale(.8)} 15%{opacity:.7} 85%{opacity:.7} 100%{opacity:0;transform:translate(-160px,-160px) rotate(-420deg) scale(1.2)} }

.gc-fruit:nth-child(1)  { left:  5%; bottom: 18%; animation: gc-fly-1  7.2s ease-in-out 0.0s  infinite; }
.gc-fruit:nth-child(2)  { left: 12%; bottom: 22%; animation: gc-fly-2  8.5s ease-in-out 1.1s  infinite; }
.gc-fruit:nth-child(3)  { left: 20%; bottom: 10%; animation: gc-fly-3  6.8s ease-in-out 2.3s  infinite; }
.gc-fruit:nth-child(4)  { left: 30%; bottom: 25%; animation: gc-fly-4  9.1s ease-in-out 0.7s  infinite; }
.gc-fruit:nth-child(5)  { left: 42%; bottom: 12%; animation: gc-fly-5  7.6s ease-in-out 3.2s  infinite; }
.gc-fruit:nth-child(6)  { left: 55%; bottom: 20%; animation: gc-fly-6  8.0s ease-in-out 1.8s  infinite; }
.gc-fruit:nth-child(7)  { left: 65%; bottom: 15%; animation: gc-fly-7  6.5s ease-in-out 0.4s  infinite; }
.gc-fruit:nth-child(8)  { left: 75%; bottom: 28%; animation: gc-fly-8  9.4s ease-in-out 2.9s  infinite; }
.gc-fruit:nth-child(9)  { left: 83%; bottom: 10%; animation: gc-fly-9  7.0s ease-in-out 1.4s  infinite; }
.gc-fruit:nth-child(10) { left: 90%; bottom: 22%; animation: gc-fly-10 8.8s ease-in-out 0.2s  infinite; }
.gc-fruit:nth-child(11) { left:  8%; top: 15%;    animation: gc-fly-11 7.4s ease-in-out 3.8s  infinite; }
.gc-fruit:nth-child(12) { left: 92%; top: 18%;    animation: gc-fly-12 8.2s ease-in-out 2.0s  infinite; }

/* ── Section Header ── */
.gc-tabs-header {
  text-align: center;
  margin-bottom: 44px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.gc-tabs-header__eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.gc-tabs-header__title {
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 10px;
}
.gc-tabs-header__subheading {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.gc-tabs-ornament {
  display: flex;
  justify-content: center;
}

/* ── Tabs nav ── */
.gc-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.gc-tab-btn {
  position: relative;
  background: var(--gc-sand);
  border: 1.5px solid var(--gc-border);
  color: var(--gc-mid);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 10px 28px;
  border-radius: 40px;
  cursor: pointer;
  min-width: 100px;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  transition: background .22s var(--gc-ease), color .22s var(--gc-ease),
              border-color .22s var(--gc-ease), transform .15s, box-shadow .22s;
}
.gc-tab-btn:hover {
  background: linear-gradient(90deg, #FFD338 0%, #987F29 100%);
  border-color: var(--gc-gold);
  color: var(--gc-brown);
  transform: translateY(-1px);
}
.gc-tab-btn.active {
  color: #fff;
  background-color: transparent;
  background-image: url('/cdn/shop/files/Group_3446.png?v=1760025228');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  box-shadow: none;
  transform: translateY(-1px);
  padding: 10px 28px;
}
.gc-tab-btn.active::after { content: none; }

/* ── Tab content ── */
.gc-tabs-content {
  display: none;
  animation: gcFadeUp .35s var(--gc-ease);
  position: relative;
  z-index: 1;
}
.gc-tabs-content.active { display: block; }
@keyframes gcFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.gc-btn-cart{height:100%;
width:100%;}
/* ── Product grid ── */
.gc-product-grid {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
}

/* ══════════════════════════════════════
   PRODUCT CARD — matches reference image
   ══════════════════════════════════════ */
.gc-product-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
/*  transition: transform .3s var(--gc-ease), box-shadow .3s var(--gc-ease);
  box-shadow: 0 2px 12px rgba(61,38,0,.08);*/
}
.gc-product-card:hover {
  transform: translateY(-6px);
  /* box-shadow: 0 12px 32px rgba(61,38,0,.14); */
}

/* ── Image zone — warm amber background like the reference ── */
.gc-product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #d4a24a 0%, #c8860a 40%, #b87320 70%, #a06500 100%);
  /* Subtle mandala-like radial overlay for depth */
  background-image:
    radial-gradient(circle at 50% 40%, rgba(255,235,180,.22) 0%, transparent 65%),
    linear-gradient(145deg, #d4a24a 0%, #c8860a 40%, #b87320 70%, #a06500 100%);
}

/* Shopify card-product snippet renders inside here — hide its default wrapper visually */
.gc-product-card__img-wrap .card-wrapper,
.gc-product-card__img-wrap .card__media {
  width: 100%;
  height: 100%;
  display: block;
}
.gc-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s var(--gc-ease), filter .55s var(--gc-ease);
  margin: 0;
  border-radius: 0;
  max-height: none;
}
.gc-product-card:hover .gc-product-card__img-wrap img {
  transform: scale(1.06);
  filter: brightness(1.04) saturate(1.06);
}

/* ── Badges ── */
.gc-product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gc-product-card__badge span {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  border-radius: 2px;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.gc-badge--sale { background: rgba(192,96,26,.9);  color: #fff; }
.gc-badge--new  { background: rgba(200,134,10,.9); color: #fff; }
.gc-badge--sold { background: rgba(61,38,0,.85);   color: var(--gc-sand); }

/* ── Card info panel ── */
.gc-product-card__info {
  padding: 14px 14px 0;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.gc-product-card__vendor {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gc-gold);
}

.gc-product-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gc-brown);
  line-height: 1.4;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
  text-decoration: none;
  transition: color .2s;
}
.gc-product-card__title h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: 831113;
}
.gc-product-card:hover .gc-product-card__title {
  color: var(--gc-rust);
}

/* Price row */
.gc-product-card__price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.gc-product-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gc-brown);
}
.gc-product-card__price--sale { color: var(--gc-rust); }
.gc-product-card__price-was {
  font-size: 12px;
  color: var(--gc-muted);
  text-decoration: line-through;
}
.gc-product-card__discount {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  background: #fdf0e8;
  color: var(--gc-rust);
  border: 1px solid rgba(192,96,26,.18);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
}

/* Shelf life meta */
.gc-product-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--gc-muted);
  margin-bottom: 10px;
}
.gc-product-card__meta::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gc-gold);
  opacity: .6;
  flex-shrink: 0;
}

/* ── Two-button CTA bar — exact match to reference image ── */
.gc-product-card__cta {
display: grid
;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: auto;
}

.gc-product-card__cta .gc-btn-cart,
.gc-product-card__cta .gc-btn-buy {
 padding: 10px 0;
    font-family: var(--gc-font-serif);
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;text-decoration:none;
}

/* "ADD TO CART" — white background, dark text, right border divider */
.gc-product-card__cta .gc-btn-cart {
background: transparent;
    color: var(--gc-amber);
    border: 1px solid var(--gc-amber);
}
.gc-product-card__cta .gc-btn-cart:hover:not(:disabled) {
background: transparent;
    color: var(--gc-amber);
    border: 1px solid var(--gc-amber);}
.gc-product-card__cta .gc-btn-cart:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* "BUY NOW" — dark brown solid */
.gc-product-card__cta .gc-btn-buy {
    background: var(--gc-amber);
    color: var(--gc-white);
    border: 1px solid var(--gc-amber);
}
.gc-product-card__cta .gc-btn-buy:hover {
  background: var(--gc-rust);
}

/* Empty state */
.gc-no-collection {
  text-align: center;
  padding: 48px 20px;
  font-size: 14px;
  color: var(--gc-muted);
}

/* ═══════════════════════════════════════════════
   MOBILE — polished two-column layout
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .gc-tabs-section { padding: 40px 0 48px; }

  .gc-tabs-header { margin-bottom: 28px; }
  .gc-tabs-header__subheading { font-size: 13px; padding: 0 16px; }

  .gc-tabs-nav {
    gap: 8px;
    padding: 0 14px;
    margin-bottom: 24px;
  }
  .gc-tab-btn {
    font-size: 11.5px;
    padding: 9px 16px;
    min-width: 80px;
  }

  .gc-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
  }

  .gc-product-card__info {
    padding: 10px 10px 0;
    gap: 3px;
  }
  .gc-product-card__title {
    font-size: 12.5px;
    min-height: 34px;
    -webkit-line-clamp: 2;
  }
  .gc-product-card__price {
    font-size: 13px;
  }
  .gc-product-card__price-row {
    margin-bottom: 10px;
    gap: 4px;
  }

  /* Buttons — slightly smaller on mobile but still readable */
  .gc-product-card__cta .gc-btn-cart,
  .gc-product-card__cta .gc-btn-buy {
    font-size: 10px;
    padding: 11px 4px;
    letter-spacing: .06em;
  }

  /* Fruits smaller on mobile */
  .gc-fruit { width: 26px; height: 26px; }
}

@media (max-width: 390px) {
  .gc-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 10px;
  }
  .gc-product-card__cta .gc-btn-cart,
  .gc-product-card__cta .gc-btn-buy {
    font-size: 9.5px;
    padding: 10px 3px;
    letter-spacing: .04em;
  }
}
.sold-btn-new{  grid-column: 1 / -1;
  width: 100%;
}
/* END_SECTION:product-multitabs */