/** Shopify CDN: Minification failed

Line 1046:0 Expected "}" to go with "{"

**/
/* =========================================================
   HEADER — design tokens
========================================================= */
.site-header {
  --header-accent: #b6501c;
  --header-text: #1a1a1a;
  --header-muted: #6b6b6b;
  --header-border: #e6e2dc;
  --header-bg: #ffffff;
  --header-height: 76px;
  --header-nav-height: 46px;

  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--header-text);
}

.site-header * { box-sizing: border-box; }

/* =========================================================
   TOP ROW
========================================================= */
.header-top__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: var(--header-height);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.site-logo { flex: 0 0 auto; display: flex; align-items: center; }
.site-logo img { display: block; height: auto; }
.site-logo__text {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--header-accent);
  text-transform: lowercase;
}

/* Currency selector */
.currency-selector { flex: 0 0 auto; }
.currency-selector__select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--header-text);
  cursor: pointer;
  padding: 6px 4px;
}

/* =========================================================
   SEARCH
========================================================= */
.header-search { position: relative; flex: 1 1 auto; min-width: 0; }

.header-search__form {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--header-border);
  border-radius: 999px;
  padding: 0 16px;
  height: 44px;
}

.header-search__form:focus-within {
  border-color: var(--header-accent);
}

.icon { width: 18px; height: 18px; flex: 0 0 auto; color: var(--header-muted); }

.header-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: var(--header-text);
}
.header-search__input::placeholder { color: #9c9895; }

.header-search__divider {
  width: 1px;
  height: 22px;
  background: var(--header-border);
  flex: 0 0 auto;
}

.header-search__image-search {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: var(--header-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  padding: 8px 2px;
}
.header-search__image-search:hover { color: var(--header-accent); }
.header-search__image-search .icon { width: 16px; height: 16px; }

/* Predictive search dropdown */
.predictive-search {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--header-border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  max-height: 420px;
  overflow-y: auto;
  z-index: 20;
}
.predictive-search a {
  display: flex;
  flex-direction:column;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--header-text);
  font-size: 14px;
}
.predictive-search a:hover { background: #f7f6f4; }
.predictive-search img { width: 40px; height: 40px; object-fit: cover; border-radius: 6px; }
.predictive-search__empty { padding: 16px; font-size: 13px; color: var(--header-muted); }

/* =========================================================
   RIGHT ICONS
========================================================= */
.header-icons {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--header-text);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}
.header-icon:hover { color: var(--header-accent); }
.header-icon .icon { width: 22px; height: 22px; }
.header-icon--store span { white-space: nowrap; }
.header-icon--whatsapp { color: #25D366; }

.header-icon__badge {
  position: absolute;
  bottom: -6px;
  right: -8px;
  background:#000000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.header-icon--menu-toggle { display: none; }

/* =========================================================
   NAV MENU
========================================================= */
.header-nav {
  border-top: 1px solid var(--header-border);
}
.header-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1440px;
  height: var(--header-nav-height);
  overflow-x: auto;
  scrollbar-width: none;
}
.header-nav__list::-webkit-scrollbar { display: none; }

.header-nav__item { position: relative; flex: 0 0 auto; }

.header-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--header-text);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 0;
}
.header-nav__link .icon-caret { width: 12px; height: 12px; }
.header-nav__item.is-active .header-nav__link,
.header-nav__link:hover { color: var(--header-accent); }

/* .header-nav__item:first-child .header-nav__link {
  color: var(--header-accent);
  font-weight: 700;
  border-bottom: 2px solid var(--header-accent);
}
.header-nav__item:last-child .header-nav__link { color: var(--header-accent); font-weight: 600; } */
.header-nav__item.is-active .header-nav__link,
.header-nav__link:hover {
  color: var(--header-accent);
}

.header-nav__item.is-active .header-nav__link {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--header-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}


/* Dropdown submenu (desktop = hover) */
.header-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  min-width: 200px;
  padding: 8px 0;
  margin-top: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  list-style: none;
  z-index: 15;
}
.header-nav__submenu a {
  display: block;
  padding: 8px 18px;
  color: var(--header-text);
  text-decoration: none;
  font-size: 14px;
}
.header-nav__submenu a:hover { background: #f7f6f4; color: var(--header-accent); }

@media (hover: hover) {
  .has-dropdown:hover .header-nav__submenu { display: block; }
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 900;
}
.mobile-nav-overlay.is-visible { display: block; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
  .header-top__inner { gap: 16px; padding: 0 20px; }
  .header-icon--store span { display: none; }
  .header-nav__list { gap: 20px; padding: 0 20px; }
}

@media (max-width: 768px) {
  .site-header { --header-height: 60px; }

  .header-top__inner { padding: 0 14px; gap: 10px; flex-wrap: nowrap; }

  .currency-selector { display: none; }

  .site-logo__text { font-size: 24px; }

  .header-search__image-search span { display: none; }
  .header-search__form { padding: 0 10px; height: 40px; }

  .header-icon--account span,
  .header-icon--store span { display: none; }

  .header-icons { gap: 14px; }
  .header-icon--store { display: none; }

  .header-icon--menu-toggle {
    display: flex;
    color: var(--header-text);
  }

  /* Nav becomes a slide-in drawer */
  .header-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    border-top: none;
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    z-index: 950;
    overflow-y: auto;
  }
  .header-nav.is-open { right: 0; }

  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 70px 20px 30px;
    gap: 0;
    overflow: visible;
  }
  .header-nav__item {
    width: 100%;
    border-bottom: 1px solid var(--header-border);
  }
  .header-nav__link {
    padding: 14px 0;
    width: 100%;
    justify-content: space-between;
  }
  .header-nav__item:first-child .header-nav__link { border-bottom: none; }

  .header-nav__submenu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    margin: 0 0 8px;
    padding-left: 12px;
  }
  .header-nav__item.is-expanded .header-nav__submenu { display: block; }
  .header-nav__item.is-expanded .icon-caret { transform: rotate(180deg); }
}

@media (max-width: 480px) {
  .header-search__form { border-radius: 10px; }
}

.site-logo img {
  width: var(--logo-width, 120px);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hide image search button + divider */
.header-search__image-search,
.header-search__divider {
  display: none;
}

.header-icon--whatsapp {
  display: none;
}

/* .header-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;   
  gap: 30px;
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1440px;
  height: var(--header-nav-height);
  overflow-x: auto;
  scrollbar-width: none;
} */

/* Desktop (default) logo size */
.site-logo img {
  width: var(--logo-width, 120px);
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile-specific logo size — overrides desktop value below 768px */
@media (max-width: 768px) {
  .site-logo img {
    width: var(--logo-width-mobile, 90px);
  }
}

/* purana wala - isko replace kar do */
.site-logo img {
  width: var(--logo-width, 120px);
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   MOBILE HEADER — Clean Grid Layout
========================================================= */

.header-mobile-left {
  display: none;
  align-items: center;
  gap: 14px;
}

.header-icon--search-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header-top__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    padding: 10px 14px;
  }

  .header-mobile-left {
    display: flex;
    grid-column: 1;
    grid-row: 1;
  }

  .header-icon--search-toggle {
    display: flex;
  }

  .site-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .currency-selector {
    display: none;
  }

  .header-icons {
    grid-column: 3;
    grid-row: 1;
    gap: 2px;
  }

  /* Search bar hidden by default on mobile, shows as full-width row when toggled */
  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
  }

  .header-search.is-active {
    display: block;
  }

  .header-search__form {
    height: 42px;
    background:#fff;
  }
}


/* Center menu — DESKTOP ONLY */
@media (min-width: 769px) {
  .header-nav__list {
    justify-content: center;
  }
}

/* =========================================================
   MOBILE SIDEBAR CLOSE BUTTON
========================================================= */

.mobile-nav-header {
  display: none;
}

@media (max-width: 768px) {

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid var(--header-border);
    background: #fff;
  }

  .mobile-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--header-text);
  }

  .mobile-nav-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--header-text);
    cursor: pointer;
  }

  .mobile-nav-close svg {
    width: 22px;
    height: 22px;
    display: block;
  }

  .mobile-nav-close:hover {
    color: var(--header-accent);
  }

  .header-nav__list {
    padding-top: 0;
  }

  
}

/* =========================================================
   SEARCH DROPDOWN
========================================================= */

.predictive-search {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  background: #fff;

  border: 1px solid var(--header-border);
  border-radius: 12px;

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);

  max-height: 520px;
  overflow-y: auto;

  z-index: 9999;
}


/* =========================================================
   RECENTLY VIEWED HEADER
========================================================= */

.recently-viewed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px 10px;

  font-size: 12px;
  color: #555;
}


.recently-viewed-clear {
  border: none;
  background: transparent;

  padding: 0;

  font-size: 12px;
  color: #777;

  cursor: pointer;
}

.recently-viewed-clear:hover {
  color: #111;
}


/* =========================================================
   RECENTLY VIEWED GRID
========================================================= */

.recently-viewed-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 14px;

  padding: 0 10px 14px;
}


/* =========================================================
   RECENT PRODUCT
========================================================= */

.recently-viewed-product {
  display: block;

  min-width: 0;

  text-decoration: none;

  color: var(--header-text);
}


.recently-viewed-image {
  width: 100%;
  aspect-ratio: 0.78;

  overflow: hidden;

  border-radius: 8px;

  background: #f4f2ef;
}


.recently-viewed-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.3s ease;
}


.recently-viewed-product:hover
.recently-viewed-image img {
  transform: scale(1.03);
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.recently-viewed-info {
  padding-top: 7px;
}


.recently-viewed-title {
  font-size: 12px;
  line-height: 1.4;

  color: #555;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
}


.recently-viewed-price {
  display: flex;
  align-items: center;
  gap: 5px;

  margin-top: 4px;

  font-size: 12px;
}


.recently-viewed-current {
  color: #222;
}


.recently-viewed-compare {
  color: #999;

  text-decoration: line-through;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.recently-viewed-empty {
  padding: 22px 16px;

  text-align: center;

  font-size: 13px;

  color: var(--header-muted);
}


/* =========================================================
   PREDICTIVE SEARCH RESULTS
========================================================= */

.predictive-search-result {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 10px 16px;

  text-decoration: none;

  color: var(--header-text);

  font-size: 14px;
}


.predictive-search-result:hover {
  background: #f7f6f4;
}


.predictive-search-result img {
  width: 48px;
  height: 48px;

  object-fit: cover;

  border-radius: 6px;

  flex-shrink: 0;
}


.predictive-search-result span {
  line-height: 1.4;
}


.predictive-search__empty {
  padding: 18px 16px;

  font-size: 13px;

  color: var(--header-muted);
}

@media (max-width: 768px) {

  .predictive-search {
    top: calc(100% + 6px);

    left: 0;
    right: 0;

    max-height: 70vh;

    border-radius: 10px;
  }

  .recently-viewed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 10px;

    padding: 0 10px 12px;
  }

  .recently-viewed-header {
    padding: 12px 12px 8px;
  }

  .recently-viewed-title {
    font-size: 11px;
  }

  .recently-viewed-price {
    font-size: 11px;

  }

}

/* =========================================================
   RECENTLY VIEWED — MOBILE FIX
========================================================= */

@media (max-width: 768px) {

  .header-search {
    position: relative;
    z-index: 10000;
  }

  .predictive-search {
    position: absolute;

    top: calc(100% + 6px);
    left: 0;
    right: 0;

    width: 100%;

    background: #fff;

    z-index: 10001;

    max-height: 70vh;

    overflow-y: auto;

    border: 1px solid var(--header-border);

    border-radius: 10px;

    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.15);

    -webkit-overflow-scrolling: touch;
  }

  .recently-viewed-grid {
    display: grid;

    grid-template-columns:
      repeat(3, minmax(0, 1fr));

    gap: 10px;

    padding: 0 10px 14px;
  }

  .recently-viewed-product {
    min-width: 0;

    display: block;

    background: #fff;
  }

  .recently-viewed-image {
    width: 100%;

    aspect-ratio: 0.78;

    background: #f4f2ef;

    overflow: hidden;

    border-radius: 8px;
  }

  .recently-viewed-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
  }

  .recently-viewed-header {
    position: sticky;

    top: 0;

    z-index: 2;

    background: #fff;

    padding: 12px;

    border-bottom: 1px solid #eee;
  }

  .recently-viewed-price {
    display:flex;
    flex-direction:column;
    align-items:flex-start !important;

}


/* =========================================================
   DESKTOP SEARCH LAYER
========================================================= */

@media (min-width: 769px) {

  .header-search {
    position: relative;
    z-index: 10000;
  }

  .predictive-search {
    z-index: 10001;
  }

}

/* =========================================================
   SEARCH SECTIONS
========================================================= */

.search-section {
  width: 100%;
}

.popular-products-section {
  margin-top: 8px;
  border-top: 1px solid #eeeeee;
}


/* =========================================================
   POPULAR PRODUCTS HEADER
========================================================= */

.popular-products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px 10px;

  font-size: 12px;
  color: #555;

  font-weight: 500;
}


/* =========================================================
   POPULAR PRODUCT CARD
========================================================= */

.popular-product {
  transition: opacity 0.2s ease;
}

.popular-product:hover {
  opacity: 0.92;
}


/* =========================================================
   RECENT PRODUCT CARD & INFO LAYOUT
========================================================= */

.recently-viewed-product {
  display: flex;
  flex-direction: column; /* Stack image on top, info on bottom */
  min-width: 0;
  text-decoration: none;
  color: var(--header-text);
  background: #fff;
}

.recently-viewed-image {
  width: 100%;
  aspect-ratio: 0.78; /* Keeps your exact image aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  background: #f4f2ef;
  flex-shrink: 0;
}

.recently-viewed-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recently-viewed-product:hover .recently-viewed-image img {
  transform: scale(1.03);
}

/* Forces the text content container to sit strictly below the image */
.recently-viewed-info {
  display: block;
  width: 100%;
  padding-top: 8px;
}

.recently-viewed-title {
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.recently-viewed-price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: 12px;
}


