/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Expected identifier but found "%"
Line 8:35 Expected identifier but found "%"

**/
{% comment %} Customized By Mahdi {% endcomment %}

/* === Global mobile horizontal scroll fix === */
@media screen and (max-width: 749px) {
  html, body {
    overflow-x: hidden;
  }
}


/* ===== Custom fonts ===== */

/* 1) Myriad Pro Bold SemiExtended — Headings */
@font-face {
  font-family: 'MyriadProSE';
  src: url('/cdn/shop/files/Myriad_Pro_Bold_SemiExtended.otf?v=1759761723') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* 2) Argentum Sans Regular — Body (upload if missing) */
@font-face {
  font-family: 'ArgentumSans';
  src: url('/cdn/shop/files/argentum-sans.regular.otf?v=1761687600') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 3) CarmenSans Sans Medium — Buttons */
@font-face {
  font-family: 'CarmenSans';
  src: url('/cdn/shop/files/CarmenSans-Medium.ttf?v=1759761705') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


/* ===== Global font mapping ===== */

:root{
  --font-heading: 'MyriadProSE', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: 'ArgentumSans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-button: 'CarmenSans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;          /* Myriad Pro SemiExtended Bold */
  letter-spacing: .2px;
}

/* Body text */
body, p, li, dd, dt, small,
input, textarea, select,
.rte p, .rte li {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;          
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Buttons */
button, .button, .btn, [type="button"], [type="submit"] {
  font-family: var(--font-button) !important;
  font-weight: 600 !important;          /* 500–600 acceptable; 600 gives better punch */
  letter-spacing: .2px;
}



/* ==== Force heading font on product cards/titles (collection page) ==== */
.grid-product__title,
.product-card__title,
.product-item__title,
.card__heading,
.collection__title,
.section-header__title {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: .2px;
}

/* ==== Price / meta / filter copy → body font ==== */
.grid-product__title--heading,

.price__regular,
.price-item,
.product-card__price,
.collection-sidebar,
.collection-filters,
.collection-filters * {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}

/* ==== Buttons in cards / toolbar buttons → button font ==== */
.grid-product__meta .btn,
.product-card__button,
.button,
.btn,
.shopify-payment-button__button,
[type="button"],
[type="submit"] {
  font-family: var(--font-button) !important;
  font-weight: 600 !important;
}




/* Announce Bar */
/* ===== Force how many items are visible at once (no speed change) ===== */
.succeessify-announcement-bar__message{
  display: inline-flex;           /* inline + nowrap container */
  align-items: center;
  white-space: nowrap;
  gap: 0;
}

/* Desktop: show ~3 items */
.succeessify-announcement-bar__message li{
  min-width: calc(100vw / 3);     /* change 3 -> 4 if you want 4 items */
  text-align: center;
  padding-right: 0 !important;    /* override earlier padding */
  position: relative;
}

/* Optional: small separator dot at the end of each “cell” */
.succeessify-announcement-bar__message li::after{
  content: '';
  width: 4px; height: 4px;
  background-color: var(--text-color);
  opacity: .3; border-radius: 50%;
  position: absolute;
  right: 10px; top: 50%; transform: translateY(-50%);
}

/* Tablet: show ~2 items */
@media (max-width: 990px){
  .succeessify-announcement-bar__message li{
    min-width: calc(100vw / 2);
  }
}

/* Mobile: show 1 item */
@media (max-width: 560px){
  .succeessify-announcement-bar__message li{
    min-width: 100vw;
  }
}





/* ===============================
   NAV — Glass + Typography + Hover
   =============================== */

/* Glass container */
.site-header .header-item--navigation .site-nav.site-navigation.small--hide {
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 2px solid #F7F1E6;
  border-radius: 9999px;
  padding: 10px 30px;
  display: inline-flex;
  gap: 18px;
  box-shadow: 0 1px 10px rgba(0,0,0,.12);
}

/* Top-level links & triggers */
.site-header .header-item--navigation .site-nav.site-navigation.small--hide > li > a,
.site-header .header-item--navigation .site-nav.site-navigation.small--hide > li > summary.site-nav__link {
  padding: 10px 14px;
  border-radius: 9999px;
  color: #4C4D3C !important;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: background .2s ease, color .2s ease;
}
.site-header .header-item--navigation .site-nav.site-navigation.small--hide > li > a:hover,
.site-header .header-item--navigation .site-nav.site-navigation.small--hide > li > summary.site-nav__link:hover {
  background: rgba(255, 244, 230, 0.18);
  /* color: #FFFFFF !important; */
}

/* Icons tint */
.site-header .header-item--icons svg {
  stroke: #F7F1E6 !important;
  opacity: .9;
}

/* Mobile fallback */
@media (max-width: 768px) {
  .site-header .header-item--navigation .site-nav.site-navigation {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(0,0,0,.35);
    gap: 12px;
    padding: 8px 14px;
  }
}

/* ===============================
   DROPDOWN — Container + Links
   =============================== */

.site-header .site-nav__dropdown {
  background: #83866F;
  border-radius: 10px;
  border: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  overflow: hidden;
  padding: 8px 0;
  z-index: 90;
  will-change: auto;
  transition: opacity .18s ease, transform .18s ease;
}
.site-header .site-nav__dropdown::before,
.site-header .site-nav__dropdown::after {
  display: none !important;
}

/* Dropdown links */
.site-header .site-nav__dropdown-link {
  color: #F7F1E6;
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 16px;
  display: block;
  background: transparent;
  transition: background .2s ease, color .2s ease;
}
.site-header .site-nav__dropdown-link:hover {
  background: rgba(255, 244, 230, .15);
  color: #F7F1E6;
}

/* Show dropdown on hover — Impulse (details/summary) */
.site-header details.site-nav__item:hover > summary + .site-nav__dropdown,
.site-header details.site-nav__item:focus-within > summary + .site-nav__dropdown {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
  z-index: 200 !important;
}

/* Safety fallback: inherit brand color from parent */
.site-header .header-item--navigation { color: #4C4D3C; }
.site-header .header-item--navigation a.site-nav__link,
.site-header .header-item--navigation summary.site-nav__link {
  color: inherit !important;
  font-weight: 500;
}


/* === Sticky header: glass look + dark text ===================== */

/* থিম স্টিকি করলে যেই wrapper/toolbar সলিড রং বসায় সেটা বন্ধ */
:is(.header-wrapper--sticky, .site-header--stuck, .header-sticky-wrapper.is-sticky),
:is(.header-wrapper--sticky, .site-header--stuck, .header-sticky-wrapper.is-sticky) .toolbar {
  background: transparent !important;
  box-shadow: none !important;
}


/* Smooth transition always */
.site-header .header-item--navigation .site-nav.site-navigation.small--hide{
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}


/* Fallback: Safari/older devices where backdrop-filter nei */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  :is(.site-header--stuck, .header-wrapper--sticky)
    .header-item--navigation .site-nav.site-navigation.small--hide {
    background: rgba(255, 244, 230, 0.30) !important;   /* একটু বেশি অপাসিটি */
    box-shadow:
      0 8px 24px rgba(60, 38, 25, .18),
      0 0 0 1px rgba(60, 38, 25, .10) inset,
      inset 0 1px 0 rgba(255,255,255,.35);
  }
}

/* For Creamy tone navbar */
/* === Sticky creamy glass: visible even on white bg === */
:is(.site-header--stuck, .header-wrapper--sticky)
  .header-item--navigation .site-nav.site-navigation.small--hide {
  background: rgba(255, 244, 230, 0.33) !important;  /* creamy tone, more visible */
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  backdrop-filter: blur(12px) saturate(120%);
  border-color: #F7F1E6;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .2),
    0 6px 16px rgba(60, 38, 25, .12);  /* soft drop shadow */
  transition: all .25s ease;
}

/* Sticky hover */
:is(.site-header--stuck, .header-wrapper--sticky)
  .site-nav.site-navigation.small--hide > li > a:hover,
:is(.site-header--stuck, .header-wrapper--sticky)
  .site-nav.site-navigation.small--hide > li > summary.site-nav__link:hover {
  background: rgba(60, 38, 25, 0.18);
  color: #4C4D3C !important;
}



/* ========== NAV ACTIVE + HOVER STYLE FIX ========== */

/* Hover: nice inset shadow */
.site-header .site-nav__link:hover {
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
}

/* Active page: always show underline color #4C4D3C */
.site-header .site-nav__link[aria-current="page"],
.site-header .site-nav__item.is-active > .site-nav__link {
  position: relative;
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
  color: #4C4D3C !important;
}

/* Remove default underline line if any */
.site-header .site-nav__link::after {
  display: none !important;
  content: none !important;
}


/* ===== Active nav styling (exact page only) ===== */
:root{
  --nav-active-ink: #4C4D3C;
  --nav-active-bg: #F7F1E6;
}

.site-header .site-nav__link[aria-current="page"]{
  background: var(--nav-active-bg);
  color: var(--nav-active-ink) !important;
  border-radius: 12px;
  box-shadow: inset 0 -2px 0 var(--nav-active-ink);
}

/* ড্রপডাউনের parent highlight — শুধুই যখন ভেতরে active link আছে */
@supports selector(:has(*)) {
  .site-header .site-nav__item:has(.site-nav__dropdown a[aria-current="page"])
  > summary.site-nav__link{
    background: var(--nav-active-bg);
    color: var(--nav-active-ink) !important;
    border-radius: 12px;
    box-shadow: inset 0 -2px 0 var(--nav-active-ink);
  }
}

/* থিম যখন dropdown খোলার জন্য .is-active দেয়, তখন যেন পিল না বসে */
.site-header .site-nav__item.is-active > summary.site-nav__link{
  background: none !important;
  box-shadow: none !important;
}


/* Active page indicator
.site-header .site-nav__link.is-active,
.site-header .site-nav__item.is-active > .site-nav__link {
  background: rgba(60, 38, 25, .08);
  border-radius: 12px;
  color: #4C4D3C !important;
  box-shadow: inset 0 -2px 0 #4C4D3C;
} */


/* New Nav style */
/* --- A. underline/hover shadow কেবল anchor লিঙ্কে, summary-তে নয় --- */
.site-header a.site-nav__link:hover {
  box-shadow: inset 0 -2px 0 #4C4D3C !important; /* normal pages */
}
.site-header summary.site-nav__link:hover {
  box-shadow: none !important;                   /* Men/Women/Adventure */
  background: transparent !important;
}

/* থিমের default underline pseudo মুছে ফেলি: summary + has-dropdown উভয়েই */
.site-header summary.site-nav__link::after,
.site-header .site-nav__item--has-dropdown > .site-nav__link::after,
.site-header .site-nav__link--underline::after {
  content: none !important;
  display: none !important;
}

/* dropdown খুললে (theme .is-active/open দেয়) যেন shadow/pill না বসে */
.site-header .site-nav__item.is-active > summary.site-nav__link,
.site-header details.site-nav__item[open] > summary.site-nav__link {
  box-shadow: none !important;
  background: transparent !important;
}

/* --- B. dropdown-এর ভিতরের কোনো পেজ active হলে parent ট্যাব highlight হবে --- */
:root{
  --nav-active-ink: #4C4D3C;
  --nav-active-bg: rgba(60, 38, 25, .08);
}

/* JS যেটা .is-current-parent ক্লাস বসাবে—ওটার স্টাইল */
.site-header .site-nav__item.is-current-parent > summary.site-nav__link {
  background: var(--nav-active-bg) !important;
  color: var(--nav-active-ink) !important;
  border-radius: 12px;
  box-shadow: inset 0 -2px 0 var(--nav-active-ink) !important;
}

/* normal active anchor (single pages যেমন About/Contact) */
.site-header a.site-nav__link.is-active {
  background: var(--nav-active-bg);
  color: var(--nav-active-ink) !important;
  border-radius: 12px;
  box-shadow: inset 0 -2px 0 var(--nav-active-ink);
}
/* Active highlight for dropdown parent (Men/Women/Adventure etc.) */
.site-header .site-nav__item:has(.site-nav__dropdown a.is-active) > summary.site-nav__link {
  background: rgba(60, 38, 25, 0.08) !important;
  border-radius: 12px;
  color: #4C4D3C !important;
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
}

/* Active pill look we want */
.site-header .nav-active{
  background: rgba(60,38,25,.08) !important;
  border-radius: 12px !important;
  color: #4C4D3C !important;
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
}

/* Men/Women/Adventure parent-গুলোর default underline/shadow বন্ধ */
.site-header summary.site-nav__link::after,
.site-header .site-nav__link::after{
  display: none !important;
  content: none !important;
}
.site-header summary.site-nav__link:hover{
  box-shadow: none !important;
}


/* ---- NAV active pill ---- */
.site-header .nav-active{
  background: rgba(60,38,25,.08) !important;
  border-radius: 12px !important;
  color: #4C4D3C !important;
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
}

/* ---- summary (Men/Women/Adventure) থেকে shadow/underline সম্পূর্ণ বন্ধ ---- */
.site-header summary.site-nav__link,
.site-header summary.site-nav__link:hover,
.site-header .site-nav__item.is-active > summary.site-nav__link{
  box-shadow: none !important;
}

/* থিমের underline pseudo মুছে দিন */
.site-header summary.site-nav__link::after,
.site-header .site-nav__link::after{
  content: none !important;
  display: none !important;
}


/* dropdown parent (Men/Women/Adventure) – কোন shadow/underline নয় */
.site-header summary.site-nav__link,
.site-header summary.site-nav__link:hover,
.site-header .site-nav__item.is-active > summary.site-nav__link {
  box-shadow: none !important;
}

/* থিমের underline pseudo সরিয়ে দিন */
.site-header summary.site-nav__link::after,
.site-header .site-nav__link--underline::after {
  content: none !important;
  display: none !important;
}

/* আমরা যে active pill বসাবো তার স্টাইল */
.site-header .nav-active {
  background: rgba(60,38,25,.08) !important;
  border-radius: 20px !important;
  color: #4C4D3C !important;
  box-shadow: inset 0 -2px 0 #4C4D3C !important;
}




/* =========================
   HEADER ICONS — CLEAN FINAL
   ========================= */

/* Base reset + safety */
.site-header .header-item--icons {
  margin: 0 !important;          /* remove theme offsets */
  margin-top: 0 !important;
}
.site-header .header-item--icons .icon__fallback-text { font-size: 0 !important; }
.site-header .header-item--icons .cart-link__bubble {  /* keep bubble but don't affect layout */
  position: absolute; inset: auto; transform: translate(-9999px,-9999px);
}

/* Layout order (logo left, nav center, icons right) */
.header-layout--left-center .header-item--logo        { order: 1; }
.header-layout--left-center .header-item--navigation  { order: 2; }
.header-layout--left-center .header-item--icons       {
  order: 3;
  margin-left: auto !important;      /* push to right */
  align-self: center !important;
}

/* Keep icons block inside right gutter in all sticky/normal states */
@media (min-width: 769px) {
  .site-header .header-layout--left-center > .header-item--icons,
  .header-wrapper--sticky .header-layout--left-center > .header-item--icons,
  .site-header--stuck .header-layout--left-center > .header-item--icons {
    /* ----Pill Margin---- */
    margin-right: calc(var(--grid-gutter) - 5px) !important;
    right: auto !important;
    transform: none !important;
  }
  .site-header .header-item--icons .site-nav__icons { margin: 0 !important; }
}

/* Common hit-area: perfect centering for every icon */
.site-header .header-item--icons .site-nav_link--icon,
.site-header .header-item--icons .site-nav__link,
.site-header .header-item--icons button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  border: 0;
  border-radius: 9999px;
  transition: background .2s ease, opacity .2s ease;
}
.site-header .header-item--icons .site-nav_link--icon:hover,
.site-header .header-item--icons .site-nav__link:hover,
.site-header .header-item--icons button:hover {
  background: rgba(255, 244, 230, 0.18);
}

/* SVG behaviour (no baseline shift) + brand tint */
.site-header .header-item--icons svg {
  display: block !important;
  stroke: #4C4D3C !important;
  color:  #4C4D3C !important;
  opacity: .95;
}

/* ---------- Desktop (>=990px) ---------- */
@media (min-width: 990px) {
  /* pill */
  .site-header .header-item--icons .site-nav__icons{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* ------Pill Height------ */
    height: 65px; 
    padding: 0 16px;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 9999px;
    background: rgba(255, 244, 230, .30);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 2px solid #F7F1E6;
    box-shadow: 0 1px 10px rgba(0,0,0,.12);
  }

  /* hide hamburger on desktop */
  .site-header .header-item--icons .js-drawer-open-nav { display: none !important; }

  /* sizes */
  .site-header .header-item--icons .site-nav_link--icon,
  .site-header .header-item--icons .site-nav__link { width: 40px; height: 40px; }
  .site-header .header-item--icons svg { width: 24px; height: 24px; }
}

/* ---------- Mobile & Tablet (<990px) ---------- */
@media (max-width: 989px) {
  .site-header .header-item--icons { display: flex !important; justify-content: center; }

  .site-header .header-item--icons .site-nav__icons{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 9999px;
    background: rgba(255, 244, 230, .25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid #F7F1E6;
    box-shadow: 0 4px 10px rgba(60, 38, 25, .10);
  }

  /* show hamburger + keep three icons aligned */
  .site-header .header-item--icons .js-drawer-open-nav { display: inline-flex !important; }

  /* sizes */
  .site-header .header-item--icons .site-nav_link--icon,
  .site-header .header-item--icons .site-nav__link,
  .site-header .header-item--icons button { width: 36px; height: 36px; }
  .site-header .header-item--icons svg { width: 22px; height: 22px; }
}








/* Button Header */

/* === Hero button: Solid brown by default, glass on hover === */

/* Base (solid brand brown) */
[data-button_style] .hero__link > a.btn {
  position: relative;
  overflow: hidden;                         /* for the overlay */
  border-radius: 30px !important;
  padding: 12px 30px !important;
  border: 2px solid #fff !important;
  background: #4C4D3C !important;           /* <-- solid by default */
  color: #F7F1E6 !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  transition: background .25s ease, color .2s ease, box-shadow .25s ease !important;
}

/* Glass overlay (hidden initially) */
[data-button_style] .hero__link > a.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255,255,255,0.10);       /* a little milkiness */
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  backdrop-filter: blur(10px) saturate(120%);
  opacity: 0;                               /* off initially */
  pointer-events: none;
  transition: opacity .25s ease;
}

/* Hover: make base background transparent + show glass */
[data-button_style] .hero__link > a.btn:hover {
  background: transparent !important;       /* reveal the bg behind */
  color: #F7F1E6 !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.25),
    0 8px 20px rgba(0,0,0,.25) !important;
}
[data-button_style] .hero__link > a.btn:hover::after {
  opacity: 1;
}

/* Optional: focus-visible ring */
[data-button_style] .hero__link > a.btn:focus-visible {
  outline: 2px solid #F7F1E6 !important;
  outline-offset: 2px !important;
  box-shadow:
    0 0 0 4px rgba(255,244,230,.25),
    0 8px 20px rgba(0,0,0,.25) !important;
}

/* Fallback if blur unsupported */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  [data-button_style] .hero__link > a.btn:hover {
    background: rgba(60,38,25,.45) !important;  /* simulated glass */
  }
}




/* Back-to-top glass button */
button[id^="ss-back-to-top-arrow-sections"]{
  /* glass look */
  background: rgba(255, 255, 255, 0.12) !important;
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  backdrop-filter: blur(10px) saturate(160%);
  border: 1px solid #4C4D3C;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
             /* arrow color (SVG inherits currentColor) */
  
  /* polish */
  width: 54px; 
  height: 54px;
  border-radius: 50%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* hover + focus: subtle lift, a bit brighter glass */
button[id^="ss-back-to-top-arrow-sections"]:hover,
button[id^="ss-back-to-top-arrow-sections"]:focus {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #F7F1E6;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28), 0 0 22px rgba(255,255,255,.18);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* optional: when pressed */
button[id^="ss-back-to-top-arrow-sections"]:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
}



/* Featured collection section store */
.collection-header {
  text-align: center;
  margin-bottom: 30px;
}

.collection-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: #4C4D3C;
  letter-spacing: 0.05em;
}





/* RESET – no hiding */
div[class^="banner-image-template-"][class$="__ss_parallax_banner_iWTG74"],
div[class^="banner-body-template-"][class$="__ss_parallax_banner_iWTG74"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* MAIN GLASS CARD */
div[class^="banner-content-template-"][class$="__ss_parallax_banner_iWTG74"] {
  background: rgba(255,255,255,0.18) !important; /* light glass */
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.40);
  border-radius: 22px;
  padding: 32px 48px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 18px 48px rgba(0,0,0,0.30);
}

/* TEXT VISIBLE ALWAYS */
div[class^="banner-content-template-"][class$="__ss_parallax_banner_iWTG74"] h2,
div[class^="banner-content-template-"][class$="__ss_parallax_banner_iWTG74"] p {
  color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.40);
}

/* BUTTON GLASS */
div[class^="banner-content-template-"][class$="__ss_parallax_banner_iWTG74"] a {
  background: rgba(255,255,255,0.25) !important;
  border: 1px solid rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  color: #fff !important;

  padding: 10px 28px !important;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* MOBILE */
@media (max-width: 749px) {
  div[class^="banner-content-template-"][class$="__ss_parallax_banner_iWTG74"] {
    padding: 18px 22px !important;
    max-width: 90% !important;
    border-radius: 18px !important;
  }
}








/* ===============================
   COLLECTION PAGE NAVBAR BEHAVIOUR
   =============================== */

/* Default: creamy background (Collection + Product) */
.template-collection :is(.shopify-section-header,
                         .header-wrapper,
                         .site-header,
                         .header-sticky-wrapper),
.template-product :is(.shopify-section-header,
                      .header-wrapper,
                      .site-header,
                      .header-sticky-wrapper) {
  background: #ECE7DD !important;
  transition: background .35s ease, box-shadow .35s ease;
  box-shadow: none !important;
}


/* Sticky → transparent (Collection + Product) */
@media (min-width: 990px){
  .template-collection 
  :is(.shopify-section-header.is-sticky,
      .header-wrapper--sticky,
      .header-wrapper.is-sticky,
      .header-sticky-wrapper.is-sticky,
      .site-header--stuck,
      .site-header.is-stuck),
  .template-product 
  :is(.shopify-section-header.is-sticky,
      .header-wrapper--sticky,
      .header-wrapper.is-sticky,
      .header-sticky-wrapper.is-sticky,
      .site-header--stuck,
      .site-header.is-stuck) {
    background: transparent !important;
    box-shadow: none !important;
  }
}


/* Home page always transparent */
.template-index :is(.shopify-section-header,
                    .header-wrapper,
                    .header-sticky-wrapper,
                    .site-header) {
  background: transparent !important;
  box-shadow: none !important;
}




/* ===============================
   GLASS PILL — same look for NAV and RIGHT ICONS
   =============================== */

:root{
  /* glass tune করো চাইলে */
  --glass-bg: rgba(255,255,255,.30);
  --glass-bg-hover: rgba(255,255,255,.30);
  --glass-brd: #FFF4E6;
  --glass-blur: 14px;
}

/* NAVBAR large pill */
.site-header .header-item--navigation .site-nav.site-navigation.small--hide{
  background: var(--glass-bg) !important;
  background-image: none !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  border: 2px solid var(--glass-brd);
  border-radius: 9999px;
  box-shadow:
    0 4px 14px rgba(0,0,0,.10),
    inset 0 1px 1px rgba(255,255,255,.25) !important;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
/* hover একটু উজ্জ্বল */
.site-header .header-item--navigation .site-nav.site-navigation.small--hide:hover{
  background: var(--glass-bg-hover) !important;
}

/* RIGHT ICONS pill — same glass */
.site-header .header-item--icons .toolbar{
  background: var(--glass-bg) !important;
  background-image: none !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  border: 2px solid var(--glass-brd);
  border-radius: 9999px;
  box-shadow:
    0 4px 14px rgba(0,0,0,.10),
    inset 0 1px 1px rgba(255,255,255,.25) !important;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.site-header .header-item--icons .toolbar:hover{
  background: var(--glass-bg-hover) !important;
}

/* Sticky হলেও পিলগুলোর glass একই থাকে (safety override) */
:is(.site-header--stuck, .header-wrapper--sticky) 
  .header-item--navigation .site-nav.site-navigation.small--hide,
:is(.site-header--stuck, .header-wrapper--sticky) 
  .header-item--icons .toolbar{
  background: var(--glass-bg) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  backdrop-filter: blur(var(--glass-blur)) saturate(130%);
  border-color: var(--glass-brd);
}

/* Fallback: যেখানে backdrop-filter নেই */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header .header-item--navigation .site-nav.site-navigation.small--hide,
  .site-header .header-item--icons .toolbar{
    background: rgba(255, 244, 230, .40) !important;
    box-shadow: 0 6px 16px rgba(60,38,25,.14);
  }
}








/* ===============================
   SMOOTH FADE — header bg (collection only)
   =============================== */

/* ডিফল্ট: creamy; transition অন */
.template-collection :is(.shopify-section-header,
                         .header-wrapper,
                         .site-header,
                         .header-sticky-wrapper) {
  background: #ECE7DD !important;
  transition: background .35s ease, box-shadow .35s ease;
  box-shadow: none !important;
}

/* sticky হলে transparent → glass pills দেখা যায়, এবং fade হয় */
@media (min-width: 990px){
  .template-collection 
  :is(.shopify-section-header.is-sticky,
      .header-wrapper--sticky,
      .header-wrapper.is-sticky,
      .header-sticky-wrapper.is-sticky,
      .site-header--stuck,
      .site-header.is-stuck) {
    background: transparent !important;
    box-shadow: none !important;
  }

  /* pseudo/toolbar overlays থাকলে সেগুলোকেও transparent করে দাও */
  .template-collection 
  :is(.shopify-section-header, .header-wrapper)::before,
  .template-collection 
  :is(.header-wrapper--sticky, .site-header--stuck, .header-sticky-wrapper.is-sticky) .toolbar {
    background: transparent !important;
    box-shadow: none !important;
  }
}





/* Collection page Next Right Button */
/* Remove Impulse background layer completely */
.pagination .next,
.pagination .next::before,
.pagination .next::after {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  pointer-events: none !important;   /* overlay যেন block না করে */
}

/* Perfect round NEXT button */
.pagination .next a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #4c4d3c !important;
  color: #fff !important;
  border-radius: 50% !important;

  box-shadow: none !important;
  border: none !important;

  /* ---- cursor + interaction ---- */
  cursor: pointer !important;
  pointer-events: auto !important;
  z-index: 1000 !important;

  transition: all 0.25s ease-in-out;
}

/* Hover effect */
.pagination .next a:hover {
  background-color: #83866F !important;
  transform: scale(1.07);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* Prevent any hidden pseudo overlay */
.pagination .next a::before,
.pagination .next a::after {
  content: none !important;
}
/* Collection page Next Left Button */
/* Left PREV button style (same as NEXT) */
.pagination .prev,
.pagination .prev::before,
.pagination .prev::after {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.pagination .prev a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #4c4d3c !important;
  color: #fff !important;
  border-radius: 50% !important;
  box-shadow: none !important;
  border: none !important;
  transition: all 0.25s ease-in-out;
}

.pagination .prev a:hover {
  background-color: #83866F !important;
  transform: scale(1.07);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

.pagination .prev a::before,
.pagination .prev a::after {
  content: none !important;
}



/* ===== SALE badge styling ===== */
.grid-product__tag--sale {
  background-color: #83866f !important;   /* তোমার পছন্দের olive shade */
  color: #fff !important;                 /* টেক্সট সাদা রাখলে বেশি readable হয় */
  font-family: var(--font-button, sans-serif);
  font-weight: 400;
  border-radius: 20px;                     /* corner smoothness */
  padding: 4px 10px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 0.3s ease;
}

/* Optional hover effect */
.grid-product__tag--sale:hover {
  background-color: #6d705b !important;   /* hover হলে একটু গাঢ় olive tone */
}



/* Reduce paint cost of glass on scroll */
@media (max-width: 989px){
  .site-header .header-item--navigation .site-nav.site-navigation.small--hide,
  .site-header .header-item--icons .toolbar {
    backdrop-filter: none;          /* or blur(6px) */
    -webkit-backdrop-filter: none;
    background: rgba(255,244,230,.28);
  }
}





/* ===== STATIC PAGES (About, Contact, etc.) — same fade/glass behaviour ===== */

/* Default: creamy */
.template-page :is(.shopify-section-header,
                   .header-wrapper,
                   .site-header,
                   .header-sticky-wrapper){
  background: #ECE7DD !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: none !important;
}

/* Sticky: transparent so pills show; also kill any pseudo/toolbar bg */
@media (min-width: 990px){
  .template-page
  :is(.shopify-section-header.is-sticky,
      .header-wrapper--sticky,
      .header-wrapper.is-sticky,
      .header-sticky-wrapper.is-sticky,
      .site-header--stuck,
      .site-header.is-stuck){
    background: transparent !important;
    box-shadow: none !important;
  }

  .template-page
  :is(.shopify-section-header, .header-wrapper)::before,
  .template-page
  :is(.header-wrapper--sticky, .site-header--stuck, .header-sticky-wrapper.is-sticky) .toolbar{
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* ===== GLOBAL HEADER BG — সব পেজে (home বাদে) একই আচরণ ===== */

/* Default: creamy background for header */
body:not(.template-index)
  :is(.shopify-section-header,
      .header-wrapper,
      .site-header,
      .header-sticky-wrapper) {
  background: #ECE7DD !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: none !important;
}

/* Sticky অবস্থায়: ব্যাকগ্রাউন্ড ট্রান্সপারেন্ট (যেন নিচের সেকশন দেখা যায়) */
@media (min-width: 990px) {
  body:not(.template-index)
    :is(.shopify-section-header.is-sticky,
        .header-wrapper--sticky,
        .header-wrapper.is-sticky,
        .header-sticky-wrapper.is-sticky,
        .site-header--stuck,
        .site-header.is-stuck) {
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not(.template-index)
    :is(.shopify-section-header, .header-wrapper)::before,
  body:not(.template-index)
    :is(.header-wrapper--sticky,
        .site-header--stuck,
        .header-sticky-wrapper.is-sticky) .toolbar {
    background: transparent !important;
    box-shadow: none !important;
  }
}





/* Products Page "Add to cart and Buy with Shop" button styles */
.product-single__form .payment-buttons button,
.shopify-payment-button__button--unbranded,
.shopify-payment-button .shopify-payment-button__button--unbranded,
.shopify-payment-button__button,
button.shopify-payment-button__button {
  border-radius: 20px !important;
  overflow: hidden !important;
  background-color: #4C4D3C !important;
  color: white !important;
  transition: all 0.5s ease-in-out !important; /* smooth scale + color fade */
  transform-origin: center center;
}

/* Hover effect for Add to Cart (subtle lift + tone change) */
.product-single__form .payment-buttons button:hover {
  background-color: #83866F !important;
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}



/* Accordion parent wrapper rounded background */
.product-single__meta .product-block--tab {
  background-color: #ECE7DD; /* same tone as site bg */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 0;
  margin: 20px 0;
  transition: all 0.35s ease-in-out; /* smooth hover effect */
}

/* Hover — gentle lift + shadow */
.product-single__meta .product-block--tab:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Inside each accordion, remove redundant border so stack looks seamless */
.product-single__meta .collapsibles-wrapper--border-bottom {
  border: none !important;
  background: transparent !important;
}






/* Contact Form Fields — visible background + proper text color */
.contact-form input,
.contact-form textarea,
.grid.grid--small input,
.grid.grid--small textarea {
  background-color: #F7F4ED !important; /* subtle beige tone like rest of site */
  color: #4C4D3C !important; /* readable dark text */
  border: 1px solid rgba(76, 77, 60, 0.4) !important;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 15px;
  transition: all 0.25s ease-in-out;
}

/* Focus state — same tone as brand */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none !important;
  border-color: #4C4D3C !important;
  box-shadow: 0 0 0 2px rgba(76, 77, 60, 0.1);
  background-color: #FFFDF8 !important; /* light lift effect */
}

/* Contact form button */
#tab-contact-submit-contact10027993366803 {
  border-radius: 20px;
  background-color: #4C4D3C;
}

/* Product page: "You may also like" section background */
.template-product [id*="__product-recommendations"] {
  background-color: #ece7dd;
  padding: 10px 0;           /* চাইলে একটু vertical breathing room */
  margin: 80px 0px;
}

/* Product page: "Recently Viewed" section background */
.template-product [id*="__recently-viewed"] {
  background-color: #ece7dd;
  margin: 80px 0;
}

/* Optional: make inner grid spacing match product-recommendations */
.template-product [id*="__recently-viewed"] .page-width {
  background-color: transparent;
}
/* Smooth hover scale effect for social icons */
.social-sharing a {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-sharing a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}



/* Product Page Back Button */
/* Fix rounded "Back to Women's Tees" button */
.btn.btn--small.return-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #4C4D3C !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 18px !important;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), 
              background-color 0.35s ease, 
              box-shadow 0.35s ease !important;
  will-change: transform;
}

/* Hover effect */
.btn.btn--small.return-link:hover {
  background-color: #83866F !important;
  transform: scale(1.05); /* a bit smaller scale for realism */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}



/* শুধু Desktop এর জন্য ABOUT পেজের "Gear with a purpose" লেআউট টিউন */
@media screen and (min-width: 1024px) {
  #shopify-section-template--25485394575635__text_and_image_7iR33X .page-width {
    max-width: 1800px;      /* 1400 / 1600 / 1800 – যেটা ভাল লাগে রাখিস */
    width: 100%;
    padding-left: 90px;     /* বাম দিকে navbar content-এর সাথে মিলিয়ে */
    padding-right: 90px;    /* ডান দিকও match করার জন্য */
  }

  #shopify-section-template--25485394575635__text_and_image_7iR33X .feature-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr; /* টেক্সট একটু ছোট, ইমেজ একটু বড় */
    column-gap: 5rem;
  }
}



/* Globo swatch – প্রায় ইনস্ট্যান্ট, কিন্তু লাইট স্মুথ */
.template-product .product-single__meta .globo-align-content-left {
  opacity: 0;
  transform: translateY(2px);
  animation: sp-globo-fade-in 0.22s ease-out forwards;
  animation-delay: 0.15s;  /* delay খুব কম, প্রায় ধরা পড়ে না */
}
@keyframes sp-globo-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Globo size buttons & – hover color fix */
.globo-align-content-left .globo-detail-button-style-rounded {
  border-radius: 30px;
  border-color: #4C4D3C;
}

.globo-align-content-left .globo-detail-button-style-rounded:hover {
  background-color: #4C4D3C !important;  /* black → brand brown */
  border-color: #4C4D3C !important;
  color: #FFFFFF !important;
}




/* Collection page এ শুধু Globo swatch গুলো hide করো  */
/* Product page এ কিছুই touch করা হচ্ছে না  */

.template-collection .globo-swatch-list,
.template-collection .globo-swatch-detail-lists,
.template-collection .globo-swatch-detail-lists-price,
.template-collection .globo-number-stock-variant,
.template-collection .globo-swatch-gl {
  display: none !important;
}



/* Contact us form */
/* === Swash Peak — Global contact input style override === */

/* সব form-এর input/textarea, কিন্তু কনফার্ম করার জন্য .input-full টার্গেট করছি */
.input-full {
  width: 100% !important;
  border-radius: 14px !important;
  border: 2px solid #d8d9cc !important;
  background: #faf9f4 !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  color: #2f3324 !important;
  transition: all 0.28s ease !important;
  outline: none !important;
}

/* hover state */
.input-full:hover {
  border-color: #4c4d3c !important;
}

/* focus state */
.input-full:focus {
  border-color: #4c4d3c !important;
  background: #ffffff !important;
  box-shadow: 0 4px 14px rgba(76, 77, 60, 0.18) !important;
  transform: translateY(-2px) !important;
}

/* textarea extra height */
textarea.input-full {
  min-height: 140px !important;
}


/* Contact page form wrapper — একটু card feeling */
.page-contact form[action*="/contact"] {
  background: #F4F2E8;
  border-radius: 18px;
  border: 1px solid #E0E1D5;
  padding: 28px 28px 36px;
  max-width: 980px;
  margin: 0 auto 72px;
  box-shadow: 0 16px 40px rgba(47, 51, 36, 0.05);
}

@media (max-width: 767px) {
  .page-contact form[action*="/contact"] {
    padding: 20px 18px 28px;
    margin-bottom: 48px;
  }
}


/* === Contact page — card style & fields === */

/* শুধুই CONTACT PAGE-এ card look */
.page-contact form.contact-form {
  background: #F4F2E8;
  border-radius: 18px;
  border: 1px solid #E0E1D5;
  padding: 28px 28px 36px;
  max-width: 980px;
  margin: 0 auto 72px;
  box-shadow: 0 16px 40px rgba(47, 51, 36, 0.05);
}


/* ফিল্ডের basic স্টাইল */
form.contact-form .input-full {
  width: 100%;
  border-radius: 14px;
  border: 2px solid #D8D9CC;
  background: #FAF9F4;
  padding: 14px 16px;
  font-size: 15px;
  color: #2F3324;
  transition: all 0.28s ease;
  outline: none;
}

/* hover state */
form.contact-form .input-full:hover {
  border-color: #4C4D3C;
}

/* focus state */
form.contact-form .input-full:focus {
  border-color: #4C4D3C;
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(76, 77, 60, 0.18);
  transform: translateY(-2px);
}

/* textarea height */
form.contact-form textarea.input-full {
  min-height: 140px;
}
@media (max-width: 480px) {
  /* শুধু CONTACT PAGE এ padding বাড়াবে */
  .page-contact form.contact-form {
    padding: 22px 18px 30px;
  }
}

/* ===== Contact page vertical spacing fix (Impulse) ===== */

/* পুরো contact form section টা একটু উপরে টানা */
[id^="shopify-section-template"][id$="__form"].shopify-section-group.index-section .index-section {
  padding-top: 8px !important;      /* আগে ~48px ছিল, এখন অনেক কম */
  padding-bottom: 40px !important;
}

/* CONTACT US heading + form card এর মাঝের gap কমানো */
[id^="shopify-section-template"][id$="__form"] .page-width.page-width--narrow .section-header {
  margin-bottom: 20px !important;   /* default অনেক বেশি ছিল */
}

/* নিরাপত্তার জন্য form wrapper-এর নিজস্ব margin যেন না বাড়ে */
[id^="shopify-section-template"][id$="__form"] .page-width.page-width--narrow .form-vertical {
  margin-top: 0 !important;
}


/* === Contact page SEND button override === */

form.contact-form button[type="submit"],
.page-contact button[type="submit"],
button[type="submit"].button {
  background-color: #4C4D3C !important;
  color: #ffffff !important;
  border-radius: 999px !important;   /* FULLY rounded */
  padding: 12px 34px !important;
  font-size: 14px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  border: none !important;
  transition: all 0.25s ease !important;
}

/* Hover effect */
form.contact-form button[type="submit"]:hover,
.page-contact button[type="submit"]:hover,
button[type="submit"].button:hover {
  background-color: #83866F !important;    /* Slight darker */
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(76, 77, 60, 0.25) !important;
}



/* custom Faqs Heading */
/* === FAQ page hero card (header + intro) === */

/* চাইলে ডিফল্ট পেজ টাইটেলটা লুকিয়ে দিয়ে শুধু আমাদের hero কার্ড ব্যবহার করতে পারো */
body.page-faqs .main-page-title,
body.page-faqs h1.page-title,
body.page-faqs .section-header__title {
  display: none;
}

/* উপরে নতুন hero card */
.sp-faq-hero {
  max-width: 880px;
  margin: 32px auto 24px;     /* উপরের থেকে সামান্য নিচে, FAQ list-এর সাথে টাইট */
  padding: 22px 26px 24px;
  text-align: center;
  background: #F4F2E8;
  border-radius: 18px;
  border: 1px solid #E4E3D7;
  box-shadow: 0 12px 28px rgba(47, 51, 36, 0.06);
}

/* Title – SWASH PEAK FAQS */
.sp-faq-hero__title {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2F3324;
}

/* Subtitle text */
.sp-faq-hero__subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4F5440;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Mobile tuning */
@media (max-width: 767px) {
  .sp-faq-hero {
    margin: 24px 16px 20px;
    padding: 18px 18px 20px;
  }

  .sp-faq-hero__title {
    font-size: 22px;
    letter-spacing: 0.14em;
  }

  .sp-faq-hero__subtitle {
    font-size: 14px;
  }
}


/* custom Faqs Footer */
/* === FAQ page spacing: title ↔ FAQ list একটু টাইট === */
body.page-faqs .main-page-title,
body.page-faqs h1.page-title,
body.page-faqs .section-header__title {
  margin-bottom: 18px !important;   /* আগে থেকে কম */
}

/* Collapsible FAQ section এর উপরে gap কমানোর জন্য */
body.page-faqs .collapsible-content,
body.page-faqs .faq,
body.page-faqs .shopify-section .collapsible-content {
  margin-top: 8px !important;
}

/* === FAQ শেষের CTA কার্ড === */
.sp-faq-end {
  max-width: 720px;
  margin: 32px auto 56px;
  padding: 20px 24px 24px;
  text-align: center;
  background: #F4F2E8;
  border-radius: 18px;
  border: 1px solid #E4E3D7;
  box-shadow: 0 12px 28px rgba(47, 51, 36, 0.06);
}

.sp-faq-end__title {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #2F3324;
}

.sp-faq-end__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: #4F5440;
}

/* ===============================
   FIXED BUTTON — always visible
   =============================== */
.sp-faq-end__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: #4C4D3C;
  color: #FFFFFF !important;              /* Text always visible */
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;

  border: 1px solid #4C4D3C;

  /* Prevent theme underline animation bug */
  box-shadow: none !important;
  background-image: none !important;

  transition: all 0.18s ease;
}

.sp-faq-end__btn:hover {
  background: #FFFFFF;
  color: #2F3324 !important;
  border-color: #2F3324;

  /* no animation glitch */
  box-shadow: none !important;
  background-image: none !important;

  transform: translateY(-1px);
}

/* Mobile tuning */
@media (max-width: 767px) {
  .sp-faq-end {
    margin: 24px 16px 48px;
    padding: 18px 18px 22px;
  }

  .sp-faq-end__title {
    font-size: 16px;
    letter-spacing: 0.14em;
  }

  .sp-faq-end__text {
    font-size: 13px;
  }

  .sp-faq-end__btn {
    width: 100%;
  }
}

/* Fix product page form extra height */
.template-product .product__content,
.template-product .product__blocks {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Fix Ask a Question block bottom shadow spacing */
.template-product .product__info-wrapper .product-block {
  margin-bottom: 24px !important;
}

.template-product .product__info-wrapper {
  padding-bottom: 20px !important;
}

/* Prevent container stretching vertically */
.template-product .product__content:after {
  display: none !important;
}

/* Mobile — BACK TO HATS button resize */
@media screen and (max-width: 749px) {

  .return-link.btn--small {
    padding: 10px 16px !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    min-height: auto !important;
    height: auto !important;
    border-radius: 14px !important;
  }

  /* alignment fix */
  .page-content--bottom {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}


/* 🔧 Recently Viewed → heading আর products এর মাঝের gap (mobile only) */
@media screen and (max-width: 749px) {

  /* শুধু heading-এর নিচের gap কমাও */
  [id^="shopify-section-template"][id$="__recently-viewed"] .section-header {
    margin-bottom: -50px !important;   /* ⬅️ এটাকেই মূলত কমাতে/বাড়াতে ব্যবহার করবি */
    padding-bottom: 0px !important;
  }
  /* products wrapper-এর উপরের gap কমাও */
  [id^="shopify-section-template"][id$="__recently-viewed"] .grid-overflow-wrapper {
    margin-top: 20px !important;
    padding-top: 0 !important;
  }
}

/* 🔧 MOBILE — Recently Viewed bottom gap hard fix */
@media screen and (max-width: 749px) {

  /* ১) পুরো Recently Viewed section wrapper-এর margin/padding কমাও */
  [id^="shopify-section-template"][id$="__recently-viewed"] .index-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* ২) ভেতরের grid element-এর নিজের margin-bottom কেটে দাও */
  [id^="shopify-section-template"][id$="__recently-viewed"] 
  [id^="RecentlyViewed-template"][id$="__recently-viewed"] {
    margin-bottom: 0 !important;
  }

  /* ৩) grid-overflow-wrapper-এর নিচে যদি padding থাকে সেটাও শূন্য */
  [id^="shopify-section-template"][id$="__recently-viewed"] .grid-overflow-wrapper {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* MOBILE – Smaller Back To button */
@media (max-width: 749px) {
  .btn.btn--small.return-link {
    font-size: 12px !important;        /* ছোট font */
    padding: 8px 14px !important;      /* height কম + width balanced */
    border-radius: 10px !important;    /* button shape tighter */
    min-height: auto !important;       /* theme enforced height remove */
    height: auto !important;
    line-height: 1.2 !important;       /* text fitting perfect */
    letter-spacing: 0.08em !important; /* cleaner look (small button fit) */
  }
}
/* MOBILE — Back to Unisex Soft-Tees button compact */
@media screen and (max-width: 749px) {
  [id^="shopify-section-template"][id$="__collection-return"]
  .btn.btn--small.return-link {
    padding: 12px 18px !important;  /* top/bottom 7, left/right 18 */
    font-size: 11px !important;    /* slightly ছোট clean font */
    width: auto !important;
    min-width: 0 !important;
  }
}
/* MOBILE – Back to Unisex Soft-Tees section top/bottom gap কমানো */
@media screen and (max-width: 749px) {
  .template-product .page-content--bottom {
    padding-top: 4px !important;     /* উপরের gap */
    padding-bottom: 8px !important;  /* নিচের gap একটু রাখলাম */
    margin-top: 4px !important;
    margin-bottom: 0 !important;
  }
}




/* MOBILE PRODUCT PAGE TWEAKS */
@media (max-width: 749px) {

  /* breadcrumb লুকানো */
  .page-content--product .breadcrumb,
  .page-content--product .product__breadcrumb,
  .page-content--product nav[aria-label="Breadcrumb"] {
    display: none;
  }
}

/* Product tittle */
@media (max-width: 749px) {
  .page-content--product h1.product-single__title,
  .page-content--product h2.product-single__title {
    font-size: 18px;        /* choto size */
    text-align: left;
    line-height: 1.3;
    margin: 4px 0 6px;
    text-transform: none;   /* uppercase off */
    
  }
}
@media (max-width: 749px) {

  /* Title: ছোট + বামে */
  h1.product-single__title,
  h2.product-single__title {
    font-size: 16px !important;
    text-align: left !important;
    line-height: 1.3 !important;
    margin-top: 4px !important;
    margin-bottom: 14px !important; /* নিচের gap কম */
    text-transform: none !important;
  }

  /* Title block আর price block এর মাঝে gap কমানো */
  .product-single__meta .product-block--header {
    margin-bottom: 4px !important;   /* default 20px+ থাকে usually */
  }

  .product-single__meta .product-block--price {
    margin-top: 0 !important;
  }

  /* Price + নিচের টেক্সট দুটোই left */
  .product-single__meta .product-block--price,
  .product-single__meta .product-block--price .price,
  .product-single__meta .product-block--price .product__policies,
  .product-single__meta .product-block--price .product-single__policies {
    text-align: left !important;
    margin-left: 0 !important;
  }

  /* Breadcrumb hide (mobile) */
  nav[aria-label="breadcrumbs"] {
    display: none;
  }
}


/* Product price */
@media (max-width: 749px) {
  .page-content--product .product-block--price,
  .page-content--product .product-block--price .price,
  .page-content--product .product__policies,
  .page-content--product .product-single__policies {
    text-align: left !important;
    margin-left: 0;
  }
}

@media (max-width: 749px) {
  /* quantity wrapper ke left align */
  .page-content--product .product_quantity {
    text-align: left !important;
    margin-left: 0 !important;
  }

  /* ভেতরের flex container গুলোকে বামে ঠেলে দাও */
  .page-content--product .product_quantity .quantity,
  .page-content--product .product_quantity .product-block,
  .page-content--product .product_quantity .product-block__quantity {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }
}

/* Product quantity */
/* MOBILE PRODUCT PAGE – FINAL ALIGNMENT FIX */
@media (max-width: 749px) {

  /* product title/price/quantity সহ পুরো meta block গুলো left */
  .product-single__meta .product-block {
    text-align: left !important;
  }

  /* quantity container left */
  .product_quantity {
    text-align: left !important;
    margin-left: 0 !important;
  }

  /* আসল picker wrapper – নাম: js-qty__wrapper (double underscore) */
  .product_quantity .js-qty__wrapper {
    display: flex !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    width: auto !important;
  }
}
/* Worldwide cta */
@media (max-width: 749px) {
  .sales-points,
  .product-block--sales-point,
  ul.sales-points,
  ul.sales-points li,
  .icon-and-text {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}




/* ==== GLOBAL PRODUCT COLLECTION GRID STYLE ==== */

/* Card image round corner */
.grid-product__image-mask {
  border-radius: 15px;
}

/* Title + meta text style */
.grid-product__meta div,
.grid-product__title,
.grid-product__title--heading,
.product-card__title,
.card__heading {
  font-size: 16px;
  letter-spacing: 1px;
  text-align: left;
  text-transform: capitalize;
  color: #4c4d3c;
}


/* ===========================
   GLOBAL PRODUCT COLLECTION GRID STYLE
   =========================== */

/* Product image rounding */
.grid-product__image-mask {
  border-radius: 15px !important;
}

/* Meta text (title + price group) */
.grid-product__meta div {
  text-align: left !important;
  text-transform: capitalize !important;
  color: #4c4d3c !important;
}

/* Product title font-size */
.grid-product__meta .grid-product__title--heading {
  font-size: 14px !important;
  letter-spacing: 0px !important;
}

/* Price styling */
.grid-product__meta .grid-product__price {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: #4c4d3c !important;
}

/* Savings line spacing */
.grid-product__price {
  margin-top: 18px !important;
  font-family: var(--font-heading) !important;
}

/* Save $ text */
.grid-product__price--savings {
  display: block !important;
  margin-top: 4px !important;
}


/* MOBILE – "You may also like" card title height equal */
@media (max-width: 749px) {
  /* শুধু product recommendations সেকশনের কার্ডগুলো টার্গেট করছি */
  .template-product [id*="__product-recommendations"]
  .grid-product__meta .grid-product__title--heading {
    font-size: 13px !important;      /* চাইলে 14 রাখতেও পারিস */
    line-height: 1.35;
    min-height: 4.1em;               /* ~৩ লাইন জায়গা */
    display: -webkit-box;
    -webkit-line-clamp: 3;           /* সর্বোচ্চ ৩ লাইন দেখাবে */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* MOBILE – Collection / All products page title height equal */
@media (max-width: 749px) {
  .template-collection .grid-product__meta .grid-product__title--heading {
    font-size: 13px !important;      /* চাইলে 14px করিস */
    line-height: 1.35;
    min-height: 4em;                 /* ~৩ লাইন পর্যন্ত জায়গা */
    display: -webkit-box;
    -webkit-line-clamp: 3;           /* সর্বোচ্চ ৩ লাইন দেবে */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}



/* === MOBILE — শুধু COLLECTION PAGE header title ছোট + left === */
@media (max-width: 749px) {

  .template-collection .section-header__title,
  .template-collection h1.section-header__title,
  .template-collection .collection-header__title,
  .template-collection .page-header__title {
    font-size: 20px !important;      /* চাইলে 22px করতে পারিস */
    line-height: 1.25 !important;
    letter-spacing: 0.5px !important;
    text-align: left !important;
    margin-bottom: 10px !important;
    margin-top: 6px !important;
  }
}
