/* ============================================================
   SHAUKAT FABRICS — Design System & Styles
   ============================================================ */

/* ---------- FONT FACES ---------- */
@font-face {
  font-family: 'Marcellus';
  src: url('../font/Marcellus/Marcellus-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../font/lato/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../font/lato/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../font/lato/Lato-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  color: #2b2a26;
  background: #FBF9F5;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: #2b2a26; text-decoration: none; cursor: pointer; transition: color .2s; }
a:hover { color: #ac4a3e; }
h1, h2, h3, h4, h5, h6 { font-family: 'Marcellus', serif; font-weight: 400; margin: 0; line-height: 1.15; }
input, select, button, textarea { font-family: 'Lato', sans-serif; }
button { cursor: pointer; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.hidescroll::-webkit-scrollbar { display: none; }
.hidescroll { -ms-overflow-style: none; scrollbar-width: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- ANIMATIONS ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toastin { from { opacity: 0; transform: translate(-50%, 12px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes featmarq { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; max-height: 0; } to { opacity: 1; max-height: 300px; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ---------- IMAGE SKELETON SHIMMER LOADER ---------- */
.img-skeleton-container {
  position: relative;
  background: #f1f5f9;
  overflow: hidden;
}
.img-skeleton-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: skeletonShimmer 1.8s infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes skeletonShimmer {
  0% { transform: translateX(0); }
  100% { transform: translateX(200%); }
}
.img-skeleton-container.loaded::before {
  display: none !important;
  animation: none !important;
}
/* Skeleton loading logo - always centered in container */
.img-skeleton-logo {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translate(-50%, -50%) !important;
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  object-fit: contain !important;
  opacity: 0.45 !important;
  z-index: 3 !important;
  animation: logoPulse 1.6s ease-in-out infinite alternate !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
@keyframes logoPulse {
  0% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.08); }
}
.img-skeleton-container.loaded .img-skeleton-logo {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none !important;
}
/* All real images start invisible during loading */
.img-skeleton-container img:not(.img-skeleton-logo) {
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
/* Once loaded: show primary/gallery images but NOT the hover image (stays hidden until JS hover) */
.img-skeleton-container img.loaded:not(.img-skeleton-logo):not(.product-img-hover),
.img-skeleton-container.loaded img:not(.img-skeleton-logo):not(.product-img-hover) {
  opacity: 1 !important;
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%);
  background: #2b2a26; color: #fff; padding: 14px 26px; border-radius: 30px;
  z-index: 120; font-size: 14px; box-shadow: 0 10px 30px rgba(0,0,0,.2);
  animation: toastin .25s ease; pointer-events: none;
}

/* ---------- TOP BAR ---------- */
.topbar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #f2eee6; border-bottom: 1px solid #e7e1d6;
  font-size: 12.5px; color: #4c4a44;
}
.topbar-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px; padding: 9px 0;
}
.topbar-promo { display: flex; align-items: center; gap: 14px; justify-self: start; }
.topbar-promo strong { font-weight: 500; color: #2b2a26; }
.topbar-right-group { display: flex; align-items: center; justify-self: end; gap: 22px; }
.topbar-nav-action {
  display: inline-flex; align-items: center; gap: 6px; color: #3a3934;
  font-size: 12.5px; font-weight: 500; cursor: pointer; background: none; border: none; padding: 2px 4px;
  transition: color 0.2s; text-decoration: none;
}
.topbar-nav-action:hover { color: #ac4a3e; }
.topbar-wishlist-badge {
  background: #ac4a3e; color: #fff; font-size: 10px; font-weight: 700;
  padding: 1px 6px; border-radius: 10px; line-height: 1; margin-left: 2px;
}
.topbar-search {
  display: flex; align-items: center; background: #fff;
  border: 1px solid #ddd7cb; border-radius: 30px;
  padding: 5px 5px 5px 18px; width: 420px; justify-self: center;
}
.topbar-search input {
  border: none; outline: none; background: transparent;
  flex: 1; font-size: 13px; color: #4c4a44;
}
.topbar-search-btn {
  width: 28px; height: 28px; border-radius: 50%; background: #ac4a3e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: none; cursor: pointer;
}
.topbar-divider { width: 1px; height: 14px; background: #d8d2c6; }

/* ---------- HEADER / NAV ---------- */
.header { transition: background .6s ease; }
.header-mobile-left { display: none; }
.header-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 10px 0;
}
.logo {
  display: inline-flex; align-items: center; cursor: pointer;
  gap: 8px; justify-self: center;
}
.logo img { height: 62px; width: auto; transition: height 0.3s ease; }
.nav-links { display: flex; align-items: center; gap: 14px; justify-self: start; }
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.5px;
  color: #2b2a26;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ac4a3e;
  transition: width 0.25s ease;
}
.nav-links a:hover {
  color: #ac4a3e;
  opacity: 1;
}
.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  justify-self: end; display: flex; align-items: center; gap: 20px;
}
.cart-btn {
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  background: none; border: none; color: inherit; font-size: inherit; font-family: inherit;
}
.cart-badge {
  position: absolute; top: -7px; right: -7px; font-size: 10px;
  width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 600;
}
.wishlist-btn {
  background: none; border: none; cursor: pointer; display: flex;
  color: inherit;
}

/* ---------- TOPBAR LIVE SEARCH SYSTEM ---------- */
.topbar-search { position: relative; }
.topbar-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e7e1d6;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  max-height: 380px;
  overflow-y: auto;
  z-index: 500;
  display: none;
}
.topbar-search-results.active {
  display: block;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f4efe6;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  color: #2b2a26;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #f7f4ee;
}
.search-result-img {
  width: 42px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.search-result-title {
  font-family: 'Marcellus', serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
  color: #2b2a26;
}
.search-result-meta {
  font-size: 11.5px;
  color: #8b6f47;
  margin-top: 2px;
}
.search-result-price {
  font-size: 12px;
  font-weight: 700;
  color: #ac4a3e;
  margin-top: 2px;
}
.search-no-results {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ---------- MEGA MENU & DROPDOWN SYSTEM ---------- */
.header { position: relative; transition: background .6s ease; z-index: 100; }
.nav-item-rel { position: relative; display: inline-flex; align-items: center; height: 100%; padding: 4px 0; }

/* Invisible hover bridge to prevent hover loss when moving cursor down */
.dropdown-menu::before,
.megamenu-panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
  pointer-events: auto;
}

/* Dropdown Menu for New Arrivals */
.dropdown-menu {
  position: absolute; top: calc(100% + 4px); left: 0; min-width: 190px;
  background: #FFFFFF; border: 1px solid #e7e1d6; border-radius: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12); padding: 10px 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  transition-delay: 0s;
  z-index: 500; pointer-events: none;
}
.nav-item-rel:hover .dropdown-menu,
.nav-item-rel:focus-within .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s;
}
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 13.5px; font-weight: 600;
  color: #2b2a26; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; transition: background .2s, color .2s;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: #f7f4ee; color: #ac4a3e; opacity: 1; }

/* Mega Menu Panel (Container-Centered Luxury Box Card) */
.has-megamenu { position: static !important; }
.header-nav { position: relative; }
.megamenu-panel {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 92%; max-width: 1080px; box-sizing: border-box;
  background: #FFFFFF; border: 1px solid #e7e1d6; border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12); padding: 24px 32px;
  opacity: 0; visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  transition-delay: 0s;
  z-index: 500; pointer-events: none;
}
.has-megamenu:hover .megamenu-panel,
.has-megamenu:focus-within .megamenu-panel,
.nav-item-rel:hover .megamenu-panel,
.megamenu-panel:hover {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; transition-delay: 0s;
}
.megamenu-panel .container {
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
.megamenu-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.megamenu-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }

.megamenu-col-title {
  font-family: 'Marcellus', serif; font-size: 14px; font-weight: 600;
  color: #8b6f47; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid #efeae1;
}
.megamenu-links { display: flex; flex-direction: column; gap: 6px; }
.megamenu-links a {
  font-size: 13.5px; color: #4c4a44; transition: color .2s, transform .2s;
  display: inline-block; padding: 2px 0;
}
.megamenu-links a:hover { color: #ac4a3e; transform: translateX(3px); opacity: 1; }

/* Chevron Indicator */
.nav-arrow { font-size: 10px; margin-left: 4px; transition: transform .2s; display: inline-block; }
.nav-item-rel:hover .nav-arrow, .has-megamenu:hover .nav-arrow { transform: rotate(180deg); }

/* Brands Directory Page Styling */
.brands-page-container { padding: 40px 0 80px; }
.brand-az-bar-wrapper {
  position: sticky; top: 0; z-index: 90; background: #FBF9F5;
  padding: 14px 0; border-bottom: 1px solid #e7e1d6; margin-bottom: 35px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.brand-az-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px;
}
.brand-az-letter {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: #fff;
  border: 1px solid #ddd7cb; font-size: 14px; font-weight: 600;
  color: #2b2a26; transition: all .2s ease; cursor: pointer; text-decoration: none;
}
.brand-az-letter:hover, .brand-az-letter.active {
  background: #2b2a26; color: #fff; border-color: #2b2a26; transform: translateY(-2px);
}
.brand-letter-section { margin-bottom: 40px; scroll-margin-top: 80px; }
.brand-letter-header {
  font-family: 'Marcellus', serif; font-size: 32px; color: #8b6f47;
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.brand-letter-header::after {
  content: ''; flex: 1; height: 1px; background: #e7e1d6;
}
.brand-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px;
}
.brand-card-link {
  background: #fff; border: 1px solid #ece7df; border-radius: 6px;
  padding: 12px 18px; font-size: 14.5px; font-weight: 500; color: #2b2a26;
  transition: all .2s ease; display: flex; align-items: center; justify-content: space-between;
}
.brand-card-link:hover {
  border-color: #ac4a3e; color: #ac4a3e; transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.brand-card-link span { font-size: 12px; color: #9a968c; }

.mobile-acc-btn {
  background: none; border: none; font-size: 18px; font-family: 'Marcellus', serif;
  font-weight: 500; color: #2b2a26; width: 100%; display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0; border-bottom: 1px solid #ece7df;
}
.mobile-acc-title {
  cursor: pointer; flex: 1; text-align: left; transition: color 0.2s ease;
}
.mobile-acc-title:hover { color: #ac4a3e; }
.mobile-acc-toggle-wrap {
  display: flex; align-items: center; padding-left: 6px;
}
.mobile-acc-divider {
  width: 1px; height: 14px; background: #dcd5c7; margin: 0 10px 0 6px; display: inline-block;
}
.mobile-acc-arrow-btn {
  background: none; border: none; font-size: 16px; color: #6a675e; cursor: pointer;
  padding: 4px 6px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, color 0.2s ease;
}
.mobile-acc-arrow-btn:hover { color: #ac4a3e; }
.mobile-acc-content {
  display: none; padding: 8px 0 12px 14px; flex-direction: column; gap: 10px;
}
.mobile-acc-content.open { display: flex; }
.mobile-acc-subheading {
  font-size: 12px; font-weight: 700; color: #8b6f47; letter-spacing: 0.5px;
  text-transform: uppercase; margin-top: 6px;
}
.mobile-acc-link {
  font-size: 14px; color: #4c4a44; text-decoration: none; padding: 3px 0;
  display: block;
}
.mobile-acc-link:hover { color: #ac4a3e; }

/* Mobile toggle & drawer base */
.mobile-toggle {
  display: none; background: none; border: none; padding: 4px;
  cursor: pointer; color: #2b2a26;
}
.mobile-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 9998; opacity: 0; pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 315px; max-width: 88%;
  background: #f7f4ee; z-index: 9999; transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1); display: flex; flex-direction: column;
  box-shadow: 6px 0 30px rgba(0,0,0,.2); padding: 20px 16px;
  overflow: hidden;
  will-change: transform;
}
.mobile-drawer.open { transform: translateX(0); }

/* NATIVE DRILL-DOWN SLIDING MENU PANELS */
.mobile-main-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  background: #f7f4ee;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(0);
  z-index: 1;
}
.mobile-main-panel.slide-out {
  transform: translateX(-100%);
}

.mobile-sub-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  background: #f7f4ee;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(100%);
  z-index: 2;
}
.mobile-sub-panel.open {
  transform: translateX(0);
}

/* SUB PANEL HEADER & BACK BUTTON */
.mobile-subpanel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #e7e1d6;
}
.mobile-subpanel-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eae4d8;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 600;
  color: #2b2a26;
  cursor: pointer;
  transition: background 0.2s ease;
}
.mobile-subpanel-back:hover {
  background: #ded6c8;
}
.mobile-subpanel-title {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 700;
  color: #2b2a26;
  margin: 0;
}

/* SUB-PANEL CATEGORY ITEMS */
.mobile-subpanel-links {
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
}
.mobile-sub-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ac4a3e;
  margin-top: 12px;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ebdcd5;
}
.mobile-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border: 1px solid #e7e1d6;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: #2b2a26;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.mobile-sub-link:hover {
  background: #fdfcf9;
  border-color: #ac4a3e;
  color: #ac4a3e;
}
.mobile-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid #e7e1d6;
}
.mobile-drawer-close {
  background: none; border: none; font-size: 24px; cursor: pointer; color: #2b2a26;
}
.mobile-drawer-search {
  display: flex; align-items: center; background: #fff;
  border: 1px solid #ddd7cb; border-radius: 30px; padding: 10px 18px; margin-bottom: 18px;
  min-height: 42px; position: relative; z-index: 10;
}
.mobile-drawer-search input {
  border: none; outline: none; background: transparent; flex: 1; font-size: 14.5px;
}
#mobileDrawerSearchDropdown {
  z-index: 10000;
  max-height: 280px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.mobile-drawer-links { display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer-links a, .mobile-drawer-links .mobile-menu-parent-item {
  font-size: 18px; font-family: 'Cormorant', serif; font-weight: 500;
  border-bottom: 1px solid #ece7df; padding-bottom: 10px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; color: #2b2a26; text-decoration: none;
}

/* Product Card Quick Action Button (Porto Style) */
.product-card-quick {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px;
  border-radius: 50%; background: #ffffff; border: none; display: flex;
  align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 3; transition: transform .2s, background .2s; cursor: pointer;
}
.product-card-quick:hover { transform: scale(1.1); background: #f2eee6; }

/* Header Search Popup & Icon Button */
.header-search-icon-btn {
  background: none; border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: center; color: inherit; padding: 4px;
}
.header-search-popup {
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .35s ease;
  background: #ece6e2; border-top: 1px solid #ddd7cb; position: relative; z-index: 9995;
}
.header-search-popup.open {
  max-height: none; opacity: 1; padding: 14px 0; overflow: visible;
}
.header-search-popup-inner {
  display: flex; align-items: center; gap: 12px; background: #fff;
  border: 1px solid #ddd7cb; border-radius: 30px; padding: 5px 6px 5px 20px;
  max-width: 600px; margin: 0 auto; position: relative;
}
#headerSearchDropdown {
  z-index: 10000;
  max-height: 60vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 14px 36px rgba(0,0,0,0.22);
}
.header-search-popup-inner input {
  border: none; outline: none; background: transparent; flex: 1; font-size: 14px; color: #2b2a26;
}
.header-search-popup-submit {
  background: #ac4a3e; color: #fff; border: none; border-radius: 20px;
  padding: 8px 20px; font-size: 13px; cursor: pointer; transition: background .2s;
}
.header-search-popup-submit:hover { background: #8e3a30; }
.header-search-popup-close {
  background: none; border: none; font-size: 22px; cursor: pointer; color: #6a675e; padding: 0 8px;
}

/* Tabbed product carousel item */
.tab-product-item {
  flex: 0 0 calc(25% - 15px); min-width: 0;
}

/* ---------- HERO SLIDER ---------- */
.hero-section {
  transition: background .6s ease;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
  pointer-events: none; z-index: 0;
}
.hero-wrapper {
  border-radius: 10px; position: relative; overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.hero-track {
  display: flex; transition: transform .45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.hero-slide {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 0 0 100%; position: relative; height: 560px;
}
.hero-slide:hover {
  text-decoration: none;
  color: inherit;
}
.hero-slide picture {
  display: block; width: 100%; height: 100%;
}
.hero-img-desktop {
  display: block;
  width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-drag: none;
}
.hero-img-mobile {
  display: none;
  width: 100%; height: 100%; object-fit: cover;
  -webkit-user-drag: none; user-drag: none;
}
/* Rotating badge */
.hero-badge {
  position: absolute; top: 24px; right: 24px;
  width: 110px; height: 110px; pointer-events: none; z-index: 6;
}
.hero-badge-inner-logo {
  width: 38px; height: 38px; border: 2px solid #7a6f66; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; background: #fff;
}
.hero-badge-inner-logo img {
  width: 20px; height: 20px; object-fit: contain;
}
/* Hero Slider Navigation Arrows */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  color: #2b2a26;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.88;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
  padding: 0;
}
.hero-nav-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-50%) scale(1.06);
}
.hero-nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}
.hero-nav-prev {
  left: 18px;
}
.hero-nav-next {
  right: 18px;
}

@media (max-width: 768px) {
  .hero-nav-arrow {
    width: 36px;
    height: 36px;
    opacity: 0.92;
  }
  .hero-nav-prev {
    left: 10px;
  }
  .hero-nav-next {
    right: 10px;
  }
}

.hero-dots {
  position: absolute; right: 26px; bottom: 22px;
  display: flex; gap: 8px; z-index: 6;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  cursor: pointer; border: none; transition: background .3s;
}

/* ---------- SECTION HEADINGS ---------- */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin: 54px 0 26px;
}
.section-header h2 { font-size: 36px; }
.view-all-btn {
  display: flex; align-items: center; gap: 10px; font-size: 14px;
}
.view-all-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: #eae4d9; display: flex; align-items: center;
  justify-content: center; font-size: 16px;
}

/* ---------- CATEGORY CARDS (redesigned) ---------- */
.category-slider {
  position: relative;
  padding: 0 12px;
}
.category-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.category-card {
  display: block;
  text-decoration: none;
  color: inherit;
  flex: 0 0 calc(18% - 12px);
  min-width: 180px;
  max-width: 220px;
  cursor: pointer;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 226px;
  background: transparent;
  border: none;
  scroll-snap-align: start;
  transition: transform .35s ease, box-shadow .35s ease;
}
.category-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(43,42,38,.15);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 18px;
  transition: transform .5s ease;
}
.category-card:hover img {
  transform: scale(1.06);
}
.category-label {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  font-family: 'Marcellus', serif;
  font-weight: 400;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  color: #2b2a26;
  transition: background .3s, color .3s, transform .3s;
  pointer-events: none;
  white-space: nowrap;
  z-index: 2;
}
.category-card:hover .category-label {
  background: rgba(43,42,38,.92);
  color: #fff;
  transform: translateY(-50%) scale(1.03);
}
.category-label svg { flex-shrink: 0; }

/* slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 6; width: 42px; height: 42px; border-radius: 50%;
  background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #4c4a44; font-size: 18px;
  border: none; transition: box-shadow .2s;
}
.slider-arrow:hover { box-shadow: 0 6px 24px rgba(0,0,0,.18); }
.slider-arrow.left { left: -18px; }
.slider-arrow.right { right: -18px; }

/* ---------- TABS ---------- */
.tab-bar {
  display: flex; gap: 34px; align-items: baseline;
  margin: 60px 0 0; border-bottom: 1px solid #e2ddd2;
}
.tab-item {
  font-family: 'Cormorant', serif; font-size: 28px;
  padding-bottom: 14px; cursor: pointer; border: none; background: none;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.tab-item.active { color: #2b2a26; border-bottom-color: #ac4a3e; }
.tab-item:not(.active) { color: #9a968c; }

.filter-bar {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin: 24px 0 30px; font-size: 14px;
}
.filter-item {
  cursor: pointer; border: none; background: none;
  font-family: inherit; font-size: inherit; transition: color .2s;
}
.filter-item.active { color: #2b2a26; font-weight: 500; }
.filter-item:not(.active) { color: #6a675e; }

/* ---------- PRODUCT CARDS ---------- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.product-grid.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-grid.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card {
  background: #fff; border: 1px solid #ece7df; border-radius: 12px;
  position: relative; display: flex; flex-direction: column;
  height: 100%; padding: 8px 8px 0; min-width: 0;
  transition: box-shadow .3s, transform .3s;
}
.product-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,.08);
  transform: translateY(-4px);
}
.product-card-img {
  cursor: pointer;
  height: 410px;
  position: relative !important; /* must be relative for absolute children */
  overflow: hidden;
  border-radius: 8px;
  display: block !important;
}
.product-card-img img:not(.img-skeleton-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.35s ease-in-out, transform 0.5s ease;
  transform-origin: center center;
}
/* Hover image always hidden by default — shown on card hover or JS .hovered class */
.product-card-img .product-img-hover {
  opacity: 0 !important;
  z-index: 2;
}
.product-card-img .product-img-primary {
  z-index: 1;
}

/* Card Hover Swap & Scale — Works via both CSS :hover and JS .hovered class */
.product-card-img.has-hover:hover .product-img-primary,
.product-card:hover .product-card-img.has-hover .product-img-primary,
.product-card-img.hovered.has-hover .product-img-primary {
  opacity: 0 !important;
  transform: scale(1.04);
}

.product-card-img.has-hover:hover .product-img-hover,
.product-card:hover .product-card-img.has-hover .product-img-hover,
.product-card-img.hovered.has-hover .product-img-hover {
  opacity: 1 !important;
  transform: scale(1.04);
}

.product-card-img.no-hover:hover .product-img-primary,
.product-card:hover .product-card-img.no-hover .product-img-primary,
.product-card-img.hovered.no-hover .product-img-primary {
  opacity: 1 !important;
  transform: scale(1.04);
}
.product-card-body {
  padding: 13px 6px 16px; text-align: center;
  display: flex; flex-direction: column; flex: 1;
}
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.product-card:hover {
  text-decoration: none;
  color: inherit;
}
.product-card-cat {
  font-size: 10px; letter-spacing: 1.5px; color: #9a8a5e;
  margin-bottom: 4px; text-transform: uppercase;
  word-break: break-word; overflow-wrap: anywhere; max-width: 100%;
  transition: color 0.2s;
}
.product-card-cat:hover {
  color: #ac4a3e;
}
.product-card-name {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2b2a26;
  text-decoration: none;
  margin-bottom: 4px;
  display: block;
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  overflow: visible;
  max-width: 100%;
  height: auto;
  min-height: auto;
  max-height: none;
  transition: color 0.2s;
}
.product-card:hover .product-card-name {
  color: #ac4a3e;
}
.product-card-stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 8px; }
.product-card-price { font-size: 15px; font-weight: 600; color: #2b2a26; }
.product-card-actions {
  display: none;
}
.add-to-cart-sm {
  background: #ac4a3e; color: #fff; border: none;
  /* hidden by default */
  padding: 8px 20px; border-radius: 24px; font-size: 12px;
  letter-spacing: .5px; transition: background .2s;
}
.add-to-cart-sm:hover { background: #7a5f3a; }

/* ---------- DISCOVER / PHILOSOPHY ---------- */
.discover-section {
  max-width: 760px; margin: 90px auto 0; text-align: center;
}
.discover-kicker {
  font-size: 12px; letter-spacing: 2.5px; color: #9a8a5e; margin-bottom: 14px;
}
.discover-title { font-size: 44px; margin-bottom: 8px; }
.discover-underline {
  position: relative; display: inline;
}
.discover-underline svg {
  position: absolute; left: 0; right: 0; bottom: -4px;
  width: 100%; height: 12px;
}
.discover-text {
  color: #6a675e; margin: 26px auto 0; font-size: 16px; max-width: 620px;
}

/* ---------- CRAFTED BANNER (video section) ---------- */
.crafted-banner {
  margin: 70px 0; background: #3e3128; color: #fff;
  position: relative; overflow: hidden; height: 580px;
}
.crafted-bg-image {
  position: absolute; inset: 0; z-index: 0;
}
.crafted-bg-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.crafted-bg-image-overlay {
  position: absolute; inset: 0;
  background: rgba(62,49,40,.82);
}
.crafted-bg {
  position: absolute; inset: 0; z-index: 0;
}
.crafted-bg img, .crafted-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.crafted-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(46,38,30,.9) 0%, rgba(46,38,30,.78) 38%, rgba(46,38,30,.35) 56%, transparent 66%);
  pointer-events: none;
}
.crafted-video-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 53%;
  z-index: 2; clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
  background: #2c2620; overflow: hidden; cursor: pointer;
}
.crafted-video-panel video,
.crafted-video-panel iframe {
  width: 280%; height: 280%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover; border: none;
  pointer-events: none;
}
.crafted-video-panel.playing iframe {
  pointer-events: auto;
}
.crafted-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; z-index: 3; cursor: pointer;
  background: none; border: none;
}
.crafted-play-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  transition: transform .3s;
}
.crafted-play-circle:hover { transform: scale(1.08); }
.crafted-play-triangle {
  width: 0; height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #3e3128;
  margin-left: 5px;
}
.crafted-text {
  position: relative; z-index: 3; height: 100%;
  display: flex; align-items: center; pointer-events: none;
}
.crafted-text-inner { max-width: 420px; }
.crafted-text-inner a { pointer-events: auto; }
.crafted-icon {
  width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.crafted-icon span {
  width: 16px; height: 16px; background: rgba(255,255,255,.7);
  border-radius: 50%;
}
.crafted-kicker {
  font-size: 12px; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); margin-bottom: 12px;
}
.crafted-title { font-size: 54px; margin-bottom: 20px; }
.crafted-desc { color: rgba(255,255,255,.82); max-width: 440px; font-size: 16px; line-height: 1.7; }

/* ---------- PERSONALIZE BANNER ---------- */
.personalize-banner {
  margin: 40px 0; color: #fff;
  border-radius: 10px; overflow: hidden;
  position: relative; min-height: 330px;
  display: flex; align-items: center;
}
.personalize-banner-bg {
  position: absolute; inset: 0; z-index: 0;
}
.personalize-banner-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.personalize-banner-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.4) 40%, transparent 70%);
}
.personalize-text {
  position: relative; z-index: 2; padding: 50px 60px;
  max-width: 520px;
}
.personalize-kicker {
  font-size: 12px; letter-spacing: 2.5px;
  color: rgba(255,255,255,.7); margin-bottom: 12px;
}
.personalize-title { font-size: 40px; line-height: 1.05; margin-bottom: 14px; }
.personalize-desc { color: rgba(255,255,255,.82); max-width: 420px; }
.personalize-img img {
  width: 100%; height: 200px; object-fit: cover; border-radius: 8px;
}

/* ---------- STATS ---------- */
.stats-section {
  text-align: center; max-width: 1000px; margin: 80px auto 0;
}
.stats-quote {
  font-family: 'Cormorant', serif; font-size: 50px;
}
.stats-row {
  display: flex; justify-content: center; gap: 150px;
  margin: 50px 0 20px; text-align: center;
}
.stats-num {
  font-family: 'Cormorant', serif; font-size: 110px;
  color: #ac4a3e; line-height: 1;

}
.stats-desc { color: #6a675e; max-width: 340px; margin: 8px auto 0; font-size: 16.5px; line-height: 1.5; }

/* ---------- WORKSHOPS ---------- */
.workshop-section {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 70px; margin: 80px 0;
}
.workshop-imgs { position: relative; height: 470px; }
.workshop-img1 {
  position: absolute; left: 0; top: 40px; width: 52%; height: 360px;
  transform: rotate(-6deg); border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(60,50,40,.18);
}
.workshop-img2 {
  position: absolute; right: 0; top: 0; width: 56%; height: 430px;
  transform: rotate(4deg); border-radius: 12px; overflow: hidden;
  box-shadow: 0 22px 50px rgba(60,50,40,.22);
}
.workshop-img1 img, .workshop-img2 img {
  width: 100%; height: 100%; object-fit: cover;
}
.workshop-icon {
  width: 44px; height: 44px; border: 2px solid #ac4a3e;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.workshop-icon span {
  width: 16px; height: 16px; background: #ac4a3e; border-radius: 50%;
}
.workshop-kicker {
  font-size: 12px; letter-spacing: 2.5px; color: #6a675e; margin-bottom: 12px;
}
.btn-brick {
  background: #ac4a3e !important;
  color: #ffffff !important;
  border: none !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.btn-brick:hover {
  background: #8e3a30 !important;
  transform: translateY(-2px);
}
.btn-black {
  background: #2b2a26 !important;
  color: #ffffff !important;
  border: none !important;
  transition: background 0.25s ease, transform 0.2s ease !important;
}
.btn-black:hover {
  background: #42403a !important;
  transform: translateY(-2px);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: calc((100% - 48px) / 3);
  box-sizing: border-box;
  background: #fff;
  border-radius: 14px;
  padding: 30px 24px;
  box-shadow: 0 8px 30px rgba(70,64,50,.05);
  border: 1px solid #e7e1d6;
}
.testimonial-avatar {
  width: 62px; height: 62px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0; background: #d8cfc0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #9a8a5e;
}
.testimonial-top {
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.testimonial-stars {
  letter-spacing: 2px; font-size: 14px; margin-bottom: 4px;
}
.testimonial-stars .filled { color: #e06c5f; }
.testimonial-stars .empty { color: #e0dccf; }
.testimonial-name { font-weight: 600; font-size: 16px; }
.testimonial-quote { color: #6a675e; }

/* ---------- BRAND LOGOS MARQUEE TICKER ---------- */
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  animation: featmarq 25s linear infinite;
}
.marquee-item {
  flex: 0 0 210px; background: #ffffff; border: 1px solid #ece7df;
  border-radius: 8px; height: 100px; display: flex; align-items: center;
  justify-content: center; padding: 14px 22px; box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.marquee-item img {
  max-width: 100%; max-height: 65px; object-fit: contain;
}

/* ---------- BLOG ---------- */
.blog-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
}
.blog-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 24px; align-items: start;
}
.blog-img {
  width: 100%; height: 230px; border-radius: 8px;
  overflow: hidden; background: #ddd6c8;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-tag {
  display: inline-block; background: #ac4a3e; color: #fff;
  font-size: 11px; letter-spacing: 1.5px; padding: 6px 14px;
  border-radius: 4px; margin-bottom: 14px;
}
.blog-title { font-size: 24px; margin-bottom: 14px; }
.blog-excerpt { color: #6a675e; font-size: 14px; margin-bottom: 16px; }
.blog-read-more {
  font-size: 14px; border-bottom: 1px solid #2b2a26;
  padding-bottom: 2px;
}
.blog-author {
  display: flex; align-items: center; gap: 10px; margin-top: 18px;
}
.blog-author-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: #cfc8bb;
}

/* ---------- HELP / FAQ ---------- */
.help-section {
  background: #ffffff; border-radius: 16px; padding: 56px;
  margin-top: 70px; display: grid;
  grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start;
}
.help-kicker {
  font-size: 12px; letter-spacing: 2.5px; color: #6a675e; margin-bottom: 14px;
}
.help-title { font-size: 46px; margin-bottom: 20px; }
.help-desc { color: #6a675e; max-width: 420px; font-size: 16px; }
.faq-list {
  border: 1px solid #e0dcd4; border-radius: 12px; overflow: hidden;
  background: #f2f0eb; box-shadow: 0 10px 30px rgba(70,64,50,.05);
}
.faq-item { border-bottom: 1px solid #efe9e0; }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; background: none; border: none;
  width: 100%; text-align: left; font-family: inherit;
}
.faq-question strong { font-weight: 500; font-size: 16px; }
.faq-question .chevron { color: #8a867c; font-size: 13px; transition: transform .3s; }
.faq-answer {
  padding: 0 24px 22px; color: #6a675e; font-size: 14px;
  display: none;
}
.faq-item.open .faq-answer { display: block; animation: fadeIn .3s ease; }
.faq-item.open .chevron { transform: rotate(180deg); }

/* ---------- INSTAGRAM ---------- */
.insta-grid {
  display: flex; gap: 14px; overflow-x: auto;
  scroll-behavior: smooth;
}
.insta-item {
  position: relative; aspect-ratio: 1;
  flex: 0 0 calc(16.666% - 12px); border-radius: 8px;
  overflow: hidden;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; }
.insta-overlay {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  background: rgba(15, 15, 12, 0.45); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease;
  cursor: pointer;
  transform: translateY(100%);
}
.insta-item[data-dir="top"] .insta-overlay { transform: translateY(-100%); }
.insta-item[data-dir="bottom"] .insta-overlay { transform: translateY(100%); }
.insta-item[data-dir="left"] .insta-overlay { transform: translateX(-100%); }
.insta-item[data-dir="right"] .insta-overlay { transform: translateX(100%); }
.insta-item:hover .insta-overlay {
  opacity: 1; transform: translate(0, 0) !important;
}

/* Social Share Icons */
.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #dcd6ca;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.share-icon:hover {
  border-color: #2b2a26;
  background: #f7f4ed;
  transform: translateY(-2px);
}
.share-icon svg {
  display: block;
}

/* Category Badge Colors across all pages */
.blog-tag, .blog-card-cat, .blog-cat-tag {
  background: #ac4a3e;
  color: #ffffff !important;
  font-weight: 600;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Wishlist Badge & Grid */
.wishlist-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ac4a3e;
  color: #ffffff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wishlist-page-title {
  font-size: 32px;
  font-family: 'Marcellus', serif;
  text-align: center;
  margin: 0;
}
@media (max-width: 640px) {
  .wishlist-page-title {
    font-size: 22px;
  }
}
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 30px 0;
}
@media (max-width: 1024px) {
  .wishlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .wishlist-grid .product-card-img {
    height: 300px;
  }
}

/* Sticky Bar Animation */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e7e1d6;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.15);
  z-index: 2200;
  transform: translateY(115%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px 0;
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.sticky-bar-product {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sticky-bar-img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  background: #f7f4ed;
}
.sticky-bar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sticky-add-btn {
  background: #2b2a26;
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s;
}
.sticky-add-btn:hover {
  background: #ac4a3e;
}

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin: 66px 0 40px;
  background: #ffffff;
  border: 1px solid #e7e1d6;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
}
.trust-badge-title {
  font-family: 'Lato', sans-serif; font-size: 15px; font-weight: 500; letter-spacing: 0.3px; color: #2b2a26;
}

.footer-columns-wrapper {
  display: contents;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid #e7e1d6; margin-top: 50px; background: #fff;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr 0.9fr 1.3fr;
  gap: 40px; padding: 56px 0 30px;
}
.footer-logo { margin-bottom: 22px; }
.footer-logo img { height: 36px; }
.footer-info { color: #5f5c54; font-size: 14px; }
.footer-info a { font-size: 14px; border-bottom: 1px solid #2b2a26; }
.footer-col h3 { font-size: 22px; margin-bottom: 18px; }
.footer-col a {
  display: block; color: #5f5c54; font-size: 14px;
  margin-bottom: 12px;
}
.footer-newsletter {
  display: flex; align-items: center; background: #fff;
  border: 1px solid #e2ddd2; border-radius: 30px;
  padding: 6px 6px 6px 20px; max-width: 340px;
}
.footer-newsletter input {
  border: none; outline: none; background: transparent;
  flex: 1; font-size: 14px; color: #5f5c54;
}
.footer-newsletter button {
  background: #ac4a3e; color: #fff; border: none;
  padding: 11px 22px; border-radius: 24px;
  font-size: 12px; letter-spacing: 1px;
}
.footer-bottom {
  border-top: 1px solid #e7e1d6; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { color: #7a776f; font-size: 13px; }
.footer-payments { display: flex; gap: 10px; }
.footer-payment {
  border: 1px solid #ddd7cb; border-radius: 4px;
  padding: 6px 10px; font-size: 12px; font-weight: 700;
}
.footer-social { display: flex; gap: 16px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f2eee6; display: flex; align-items: center;
  justify-content: center; color: #2b2a26;
  transition: background .2s;
}
.footer-social a:hover { background: #ac4a3e; color: #fff; }

/* ---------- REDESIGNED SHOP PAGE ---------- */
.shop-page-wrapper {
  width: 100%;
  background: #fbf9f5;
}

/* Shop Header Banner */
.shop-header-banner {
  background: #f6f2ea;
  border-bottom: 1px solid #e7dfd3;
  padding: 22px 0 18px;
  text-align: center;
}
.shop-banner-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.shop-breadcrumb {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #8c8375;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}
.shop-breadcrumb a {
  color: #6e675b;
  transition: color 0.2s;
}
.shop-breadcrumb a:hover {
  color: #ac4a3e;
}
.shop-breadcrumb .active-crumb {
  color: #2b2a26;
  font-weight: 700;
}
.shop-title {
  font-family: 'Marcellus', serif;
  font-size: 29px;
  color: #2b2a26;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  text-align: center;
}

/* Toolbar Separator Strip */
.shop-toolbar-strip {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e5dfd5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 90;
}
.shop-toolbar-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-toolbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.shop-counter-text {
  font-size: 13.5px;
  color: #5c584e;
}
.shop-counter-text strong {
  color: #2b2a26;
  font-weight: 600;
}
.mobile-only-inline {
  display: none;
}
@media (max-width: 900px) {
  .mobile-only-inline {
    display: inline-flex;
  }
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.toolbar-control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toolbar-label {
  font-size: 13px;
  color: #6a6458;
  font-weight: 500;
  white-space: nowrap;
}
.toolbar-select {
  background: #fbf9f5;
  border: 1px solid #dcd5c9;
  border-radius: 20px;
  padding: 7px 20px 7px 12px;
  font-size: 13px;
  color: #2b2a26;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-weight: 500;
}
.toolbar-select:hover, .toolbar-select:focus {
  border-color: #2b2a26;
  background: #ffffff;
}

/* Grid Switcher */
.toolbar-grid-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #f4efe7;
  padding: 3px;
  border-radius: 20px;
  border: 1px solid #e2dad0;
}
.grid-switch-btn {
  background: transparent;
  border: none;
  color: #8c8375;
  padding: 5px 9px;
  border-radius: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.grid-switch-btn.active {
  background: #ffffff;
  color: #2b2a26;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* Stretched Body Section */
.shop-stretched-body {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 32px 64px;
  box-sizing: border-box;
  overflow: hidden;
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  width: 100%;
}

/* Left Sidebar */
.shop-sidebar {
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02);
}
.sidebar-block {
  margin-bottom: 28px;
}
.sidebar-block:last-child {
  margin-bottom: 0;
}
.sidebar-heading {
  border-bottom: 1px solid #efe8dd;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.sidebar-heading h3 {
  font-family: 'Marcellus', serif;
  font-size: 19px;
  color: #2b2a26;
  letter-spacing: 0.3px;
}
.sidebar-cats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 13.5px;
  color: #5c574c;
  transition: all 0.2s;
  cursor: pointer;
}
.sidebar-cats a:hover {
  background: #f6f2ea;
  color: #2b2a26;
}
.sidebar-cats a.active {
  background: #2b2a26;
  color: #ffffff;
  font-weight: 500;
}
.sidebar-cats a.active .cat-count {
  background: rgba(255,255,255,0.2);
  color: #ffffff;
}
.cat-count {
  font-size: 11px;
  background: #ede7dc;
  color: #6a6458;
  padding: 2px 7px;
  border-radius: 10px;
}

/* Price Filter */
.price-filter-box {
  padding: 4px 0;
}
.price-range {
  width: 100%;
  accent-color: #2b2a26;
  cursor: pointer;
}
.price-controls {
  margin-top: 10px;
  font-size: 13px;
  color: #6a6458;
}

/* Color Filter */
.color-filter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.color-filter label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13.5px;
  color: #5c574c;
  transition: color 0.2s;
}
.color-filter label:hover {
  color: #2b2a26;
}
.color-checkbox {
  width: 16px; height: 16px; border: 1.5px solid #c9c2b5;
  border-radius: 3px; display: flex; align-items: center;
  justify-content: center; font-size: 11px; flex-shrink: 0;
  transition: all .2s;
}
.color-checkbox.checked { background: #ac4a3e; border-color: #ac4a3e; color: #fff; }
.color-swatch {
  width: 20px; height: 20px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,.12);
}

/* Reset button */
.reset-filters-btn {
  width: 100%;
  background: #f4efe7;
  color: #2b2a26;
  border: 1px solid #e0d8cc;
  padding: 10px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 8px;
}
.reset-filters-btn:hover {
  background: #ac4a3e;
  color: #ffffff;
  border-color: #ac4a3e;
}

/* Right Main Product Area */
.shop-main {
  width: 100%;
  min-width: 0;
}
.shop-product-grid {
  display: grid;
  gap: 24px;
  min-height: 320px;
  width: 100%;
}

.empty-shop-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn, .page-nav-btn {
  height: 40px;
  min-width: 40px;
  padding: 0 14px;
  border: 1px solid #dcd5c9;
  background: #ffffff;
  color: #2b2a26;
  border-radius: 20px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.page-btn:hover, .page-nav-btn:hover:not(.disabled) {
  border-color: #2b2a26;
  background: #2b2a26;
  color: #ffffff;
}
.page-btn.active {
  border-color: #2b2a26;
  background: #2b2a26;
  color: #ffffff;
}
.page-nav-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .shop-product-grid.cols-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .shop-sidebar {
    display: none;
  }
  .shop-product-grid.cols-3, .shop-product-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .shop-toolbar-container {
    padding: 12px 16px;
  }
  .shop-stretched-body {
    padding: 20px 16px 40px;
  }
}
@media (max-width: 600px) {
  .shop-product-grid.cols-3, .shop-product-grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* ---------- PRODUCT PAGE ---------- */
.product-breadcrumb {
  font-size: 12px; letter-spacing: 2px; color: #9a968c; padding: 30px 0 24px;
}
.product-layout {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 50px; align-items: start;
}
.product-gallery {
  display: grid; grid-template-columns: 110px 1fr; gap: 18px; align-items: start;
}
.gallery-thumbs-wrapper {
  display: flex; flex-direction: column; align-items: center; width: 110px; max-height: 680px; position: relative;
}
.gallery-thumbs {
  display: flex; flex-direction: column; gap: 12px;
  max-height: 620px; overflow-y: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none; width: 100%;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb-nav-btn {
  width: 100%; height: 24px; background: #fbf9f5; border: 1px solid #e5dfd5;
  border-radius: 4px; color: #5c574c; font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
  flex-shrink: 0; z-index: 5; line-height: 1;
}
.thumb-nav-btn:hover { background: #ac4a3e; color: #fff; border-color: #ac4a3e; }
.thumb-prev-btn { margin-bottom: 6px; }
.thumb-next-btn { margin-top: 6px; margin-bottom: 0; }
.desktop-arrow { display: inline-block; }
.mobile-arrow { display: none; }
.gallery-thumb {
  width: 110px; height: 135px; border: 1.5px solid #ece7df;
  cursor: pointer; overflow: hidden; border-radius: 6px;
  transition: all .2s; flex-shrink: 0; background: #f8f6f2;
}
.gallery-thumb.active { border-color: #ac4a3e; box-shadow: 0 0 0 1px #ac4a3e; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; background: #f8f6f2; border-radius: 6px; }
.gallery-main {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 12 / 17;
  height: auto;
  background: #f8f6f2;
  cursor: zoom-in;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  /* No default transform transition — JS magnifier controls it inline */
  transition: opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform;
}
/* JS magnifier active: CSS does nothing for transform (JS handles it with instant tracking) */
.gallery-main.js-magnifier-active:hover img { /* intentionally empty — JS handles transform */ }
/* Fallback if JS fails to bind magnifier */
.gallery-main:not(.js-magnifier-active):hover img { transform: scale(2.2); }

/* ---- LIGHTBOX IMPROVEMENTS ---- */
.lightbox-img {
  transition: opacity 0.25s ease;
}
#lightboxThumbs::-webkit-scrollbar { display: none; }
#lightboxThumbs { -ms-overflow-style: none; scrollbar-width: none; }

/* Lightbox Fullscreen Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.96);
  z-index: 99999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2510;
}
.lightbox-close:hover {
  background: #ac4a3e;
  transform: scale(1.1);
}
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2510;
}
.lightbox-arrow:hover {
  background: #ac4a3e;
  transform: translateY(-50%) scale(1.1);
}
.lightbox-arrow.prev { left: 28px; }
.lightbox-arrow.next { right: 28px; }

.product-cat-label {
  font-size: 12px; letter-spacing: 2px; color: #9a8a5e; margin-bottom: 12px;
}
.product-title { font-size: 28px; line-height: 1.1; margin-bottom: 12px; }
.product-rating {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px; font-size: 13px;
}
.product-price {
  font-size: 24px; font-family: 'Cormorant', serif; margin-bottom: 22px;
}
.deals-box {
  background: #f2eee6; border-radius: 8px; padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 24px;
}
.deals-icon {
  width: 26px; height: 26px; border: 1.5px solid #ac4a3e;
  border-radius: 50%; flex-shrink: 0;
}
.qty-selector {
  display: flex; align-items: center;
  border: 1px solid #ddd7cb; border-radius: 4px;
}
.qty-btn {
  padding: 12px 16px; cursor: pointer; color: #6a675e;
  background: none; border: none; font-size: 16px;
}
.qty-display { padding: 12px 8px; min-width: 30px; text-align: center; }
.add-to-cart-btn {
  flex: 1; background: #ac4a3e; color: #fff; border: none;
  border-radius: 4px; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 14px; transition: background .2s;
}
.add-to-cart-btn:hover { background: #8e3a30; }
.product-share { display: flex; gap: 8px; }
.share-icon {
  width: 30px; height: 30px; border: 1px solid #ddd7cb;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: #6a675e;
  cursor: pointer; background: none; transition: all .2s;
}
.share-icon:hover { background: #ac4a3e; color: #fff; border-color: #ac4a3e; }
.product-accordion { border-bottom: 1px solid #ece7df; }
.accordion-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer; background: none; border: none;
  width: 100%; text-align: left; font-family: inherit;
}
.accordion-trigger strong {
  font-weight: 500; letter-spacing: 1px; font-size: 14px;
}
.accordion-body {
  padding: 0 0 18px; color: #6a675e; font-size: 14px;
  display: none;
}
.product-accordion.open .accordion-body { display: block; }
.sticky-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 4px 0;
}
.sticky-bar-product { display: flex; align-items: center; gap: 10px; }
.sticky-bar-product strong { font-size: 13px; font-family: 'Marcellus', serif; }
.sticky-bar-product > div > div { font-size: 12px !important; }
.sticky-bar-img { width: 40px; height: 40px; border-radius: 4px; overflow: hidden; }
.sticky-bar-img img { width: 100%; height: 100%; object-fit: cover; }
.sticky-add-btn {
  background: #2b2a26; color: #fff; border: none;
  padding: 10px 24px; letter-spacing: 1.2px; font-size: 12px;
  text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 640px) {
  .product-title { font-size: 22px; line-height: 1.15; margin-bottom: 8px; }
  .product-price .sale-price-amount, .product-price del { font-size: 22px !important; }
  .product-price .sale-discount-bubble { font-size: 11px !important; padding: 4px 9px !important; border-radius: 12px !important; color: #ffffff !important; background: #ac4a3e !important; }
  .product-price .blog-tag { font-size: 10px !important; }
  .sticky-bar { padding: 6px 0; }
  .sticky-bar-inner { gap: 8px; padding: 2px 0; }
  .sticky-bar-product strong { font-size: 11px; display: block; max-width: 140px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-bar-product > div > div { font-size: 11px !important; }
  .sticky-bar-img { width: 34px; height: 34px; }
  .sticky-add-btn { padding: 8px 16px; font-size: 11px; letter-spacing: 0.8px; }
  .qty-selector { height: auto !important; }
  .add-to-cart-btn { padding: 12px !important; }
  .reviews-compact-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  #reviewsSection {
    padding: 16px !important;
    margin: 30px 0 20px !important;
  }
}

/* ---------- CART PAGE ---------- */
.cart-layout {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; align-items: start;
}
.cart-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid #ece7df;
}
.cart-item-img {
  width: 80px; height: 80px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-weight: 500; font-family: 'Cormorant', serif; font-size: 20px;
}
.cart-item-cat {
  color: #9a8a5e; font-size: 12px; letter-spacing: 1px;
}
.cart-item-total { width: 90px; text-align: right; font-weight: 600; }
.cart-remove {
  cursor: pointer; color: #b7554e; font-size: 18px;
  background: none; border: none;
}
.cart-summary {
  background: #f2eee6; border-radius: 10px; padding: 28px;
}
.cart-summary h3 { font-size: 24px; margin-bottom: 18px; }
.cart-summary-row {
  display: flex; justify-content: space-between;
  margin-bottom: 10px; font-size: 14px;
}
.cart-summary-row.label { color: #6a675e; }
.cart-summary-total {
  display: flex; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid #ddd7cb;
  font-size: 18px; font-weight: 600;
}
.checkout-btn {
  width: 100%; background: #ac4a3e; color: #fff; border: none;
  padding: 15px; border-radius: 30px; margin-top: 22px;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s;
}
.checkout-btn:hover { background: #8e3a30; }

/* CTA Buttons */
.btn-primary {
  display: inline-block; background: #ac4a3e; color: #fff;
  padding: 13px 52px; border-radius: 30px;
  font-size: 14px; letter-spacing: .4px; font-weight: 500;
  border: none; transition: background .2s;
}
.btn-primary:hover { background: #8e3a30; }
.btn-secondary {
  display: inline-block; background: #fff; color: #2b2a26;
  padding: 13px 52px; border-radius: 30px;
  font-size: 14px; letter-spacing: .4px; font-weight: 500;
  border: none; transition: background .2s;
}

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}
.review-big-score {
  font-family: 'Cormorant', serif; font-size: 70px; line-height: 1;
}
.rating-bar {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px; font-size: 13px;
}
.rating-bar-track {
  flex: 1; height: 8px; background: #e7e1d6;
  border-radius: 4px; overflow: hidden;
}
.rating-bar-fill { height: 100%; background: #e0b23c; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .shop-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 60px; }
  .stats-num { font-size: 80px; }
  .workshop-section { grid-template-columns: 1fr; gap: 30px; }
  .help-section { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Container & Utility */
  .container { padding: 0 10px; }
  .desktop-only { display: none !important; }

  /* 1. Remove Topbar on Mobile Homepage ONLY; Promo Strip on Secondary Pages */
  .topbar.topbar-home-page {
    display: none !important;
  }
  .topbar.topbar-secondary-page {
    display: block !important;
    background: #e6dfd7 !important;
    border-bottom: 1px solid #dbd3c9 !important;
    padding: 5px 10px !important;
    text-align: center !important;
  }
  .topbar-inner {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    width: 100% !important;
  }
  .topbar-promo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    font-size: 11px !important;
    color: #2b2a26 !important;
  }
  .topbar-promo strong {
    font-size: 11px !important;
    font-weight: 600 !important;
  }
  .topbar-search,
  .topbar-right-group {
    display: none !important;
  }

  /* Single Product Mobile Price Styling */
  .product-price,
  .product-price span {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #ac4a3e !important;
  }

  /* Mobile Thank You Page Box Container Styling (Light Luxury Theme) */
  .thankyou-card-container {
    background: #ffffff !important;
    color: #2b2a26 !important;
    border-radius: 16px !important;
    padding: 28px 18px !important;
    margin: 16px 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    text-align: center !important;
    border: 1px solid #e8e2d7 !important;
  }
  .thankyou-card-container h1,
  .thankyou-card-container h3 {
    color: #2b2a26 !important;
  }
  .thankyou-card-container p {
    color: #64748b !important;
  }
  .thankyou-card-container div[style*="background:#f8fafc"] {
    background: #faf7f2 !important;
    border: 1px solid #e8e1d5 !important;
    color: #2b2a26 !important;
    border-radius: 10px !important;
  }
  .thankyou-card-container div[style*="background:#f8fafc"] span {
    color: #64748b !important;
  }
  .thankyou-card-container div[style*="background:#f8fafc"] strong {
    color: #2b2a26 !important;
  }
  .thankyou-card-container table {
    color: #2b2a26 !important;
  }
  .thankyou-card-container table td {
    color: #334155 !important;
    border-color: #f1f5f9 !important;
  }
  .thankyou-card-container table th {
    color: #64748b !important;
    border-color: #e2e8f0 !important;
  }
  .thankyou-summary-card {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 14px !important;
    margin-top: 20px !important;
  }
  .thankyou-summary-card td {
    white-space: nowrap !important;
  }

  /* Mobile Cart Drawer Bottom Sheet */
  .cart-drawer {
    width: 100% !important;
    max-width: 100% !important;
    height: 82vh !important;
    max-height: 82vh !important;
    top: auto !important;
    bottom: 0 !important;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3) !important;
  }
  .cart-drawer-body {
    max-height: calc(82vh - 170px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Responsive Cart Page Layout on Mobile */
  .cart-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .cart-item {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    padding: 14px 0 !important;
    position: relative !important;
  }
  .cart-item-img {
    width: 70px !important;
    height: 85px !important;
    flex-shrink: 0 !important;
  }
  .cart-item-info {
    flex: 1 !important;
    min-width: 160px !important;
  }
  .cart-remove {
    position: absolute !important;
    top: 14px !important;
    right: 4px !important;
  }

  /* 2. Transparent Mobile Header Overlay on Home Page ONLY */
  .header.is-home-header {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%) !important;
    border: none !important;
    box-shadow: none !important;
  }
  .header.is-secondary-header {
    position: relative !important;
    z-index: 100 !important;
    background: #ece6e2 !important;
    border-bottom: 1px solid #e2dad2 !important;
  }

  .header .container { padding: 0 12px; }
  .header-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 0 !important;
    min-height: 58px !important;
  }
  .header-mobile-left {
    display: contents !important;
  }
  .mobile-toggle {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
  }

  /* 3. Mobile Header Icons - WHITE on Home Page, DARK on Secondary Pages */
  .header.is-home-header .mobile-toggle,
  .header.is-home-header .mobile-toggle svg,
  .header.is-home-header .mobile-toggle svg line,
  .header.is-home-header .mobile-toggle svg path,
  .header.is-home-header .header-search-icon-btn,
  .header.is-home-header .header-search-icon-btn svg,
  .header.is-home-header .header-search-icon-btn svg circle,
  .header.is-home-header .header-search-icon-btn svg path,
  .header.is-home-header .cart-btn,
  .header.is-home-header .cart-btn svg,
  .header.is-home-header .cart-btn svg path,
  .header.is-home-header .cart-btn svg circle {
    stroke: #ffffff !important;
    color: #ffffff !important;
    fill: none;
  }
  .header.is-home-header .cart-badge {
    background: #ac4a3e !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
  }

  .header.is-secondary-header .mobile-toggle,
  .header.is-secondary-header .mobile-toggle svg,
  .header.is-secondary-header .mobile-toggle svg line,
  .header.is-secondary-header .mobile-toggle svg path,
  .header.is-secondary-header .header-search-icon-btn,
  .header.is-secondary-header .header-search-icon-btn svg,
  .header.is-secondary-header .header-search-icon-btn svg circle,
  .header.is-secondary-header .header-search-icon-btn svg path,
  .header.is-secondary-header .cart-btn,
  .header.is-secondary-header .cart-btn svg,
  .header.is-secondary-header .cart-btn svg path,
  .header.is-secondary-header .cart-btn svg circle {
    stroke: #2b2a26 !important;
    color: #2b2a26 !important;
    fill: none;
  }
  .header.is-secondary-header .cart-badge {
    background: #2b2a26 !important;
    color: #ffffff !important;
    border: none !important;
  }

  /* 4. Centered Mobile Phone Logo Styling */
  .mobile-logo {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    z-index: 5 !important;
  }
  .mobile-logo-img,
  .mobile-logo img {
    height: 42px !important;
    width: auto !important;
    max-width: 170px !important;
    object-fit: contain;
  }

  .header-actions {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
  }

  /* 5. Edge-to-Edge Mobile Hero Section & Slider (+10% Height Increase) */
  .hero-section {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    overflow: hidden;
    position: relative;
    background: #1a1a18 !important;
  }
  .hero-section .container,
  .hero-container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .hero-wrapper {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    border-radius: 0 !important;
  }
  .hero-slide {
    width: 100vw !important;
    height: 85vh !important;
    min-height: 520px !important;
    max-height: 680px !important;
    border-radius: 0 !important;
    border: none !important;
    margin: 0 !important;
  }
  .hero-slide picture,
  .hero-slide picture img,
  .hero-slide img {
    width: 100vw !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .hero-badge {
    display: block !important;
    position: absolute !important;
    top: 68px !important;
    right: 14px !important;
    width: 66px !important;
    height: 66px !important;
    pointer-events: none !important;
    z-index: 6 !important;
  }
  .hero-badge-inner-logo {
    width: 24px !important;
    height: 24px !important;
    border-width: 1.5px !important;
  }
  .hero-badge-inner-logo img {
    width: 13px !important;
    height: 13px !important;
  }
  .hero-dots {
    right: 50% !important;
    transform: translateX(50%) !important;
    bottom: 18px !important;
    z-index: 10;
  }
  .hero-dot {
    width: 9px !important;
    height: 9px !important;
    border: 1px solid #ffffff !important;
  }
  .hero-prev-zone, .hero-next-zone { width: 18%; }

  /* Category Slider */
  .category-card { flex: 0 0 calc(48% - 6px); height: 235px; border-radius: 8px; }
  .category-label {
    top: 50% !important;
    bottom: auto !important;
    left: 8px; right: 8px;
    transform: translateY(-50%) !important;
    font-size: 12px; padding: 7px 10px;
  }
  .slider-arrow { display: none !important; }

  /* Tabs & Filter Bar */
  .tab-bar {
    gap: 18px; margin: 30px 0 0; overflow-x: auto; padding-bottom: 6px;
    white-space: nowrap; scrollbar-width: none;
  }
  .tab-item { font-size: 16px; padding-bottom: 8px; flex-shrink: 0; }
  .filter-bar {
    gap: 10px; margin: 16px 0 20px; overflow-x: auto;
    flex-wrap: nowrap; padding-bottom: 6px; scrollbar-width: none;
  }
  .filter-item {
    flex-shrink: 0; font-size: 12.5px; background: #fff; padding: 5px 14px;
    border-radius: 20px; border: 1px solid #e2ddd2;
  }
  .filter-item.active { background: #2b2a26; color: #fff; border-color: #2b2a26; }
  .tab-product-item { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }

  /* Product Grid - 2-COLUMN COMPACT GRID ON MOBILE */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .product-card {
    padding: 4px 4px 6px; border-radius: 8px;
  }
  .product-card-img {
    height: 215px; border-radius: 6px;
  }
  .product-card-body { padding: 8px 4px 8px; }
  .product-card-cat { font-size: 9px; letter-spacing: 0.8px; margin-bottom: 2px; }
  .product-card-name {
    font-size: 11.5px;
    margin-bottom: 3px;
    white-space: normal;
    display: block;
    line-height: 1.25;
    word-break: break-word;
    overflow: visible;
    height: auto;
    min-height: auto;
    max-height: none;
  }
  .product-card-price { font-size: 12.5px; font-weight: 600; }
  .product-card-actions { gap: 4px; margin-top: 6px; padding-top: 6px; }
  .product-action-btn { height: 26px; border-radius: 4px; }
  .product-action-btn svg { width: 13px; height: 13px; }

  /* Discover Section */
  .discover-section { margin: 40px auto 0; padding: 0 12px; }
  .discover-title { font-size: 30px; }
  .discover-text { font-size: 14px; margin-top: 16px; }

  /* Crafted Banner (Video Banner) */
  .crafted-banner {
    height: auto; min-height: initial; margin: 40px 0;
    display: flex; flex-direction: column; border-radius: 12px;
  }
  .crafted-video-panel {
    position: relative; top: auto; right: auto; bottom: auto; width: 100%;
    height: 416px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 16px));
    margin-top: 0; order: 1; z-index: 1;
  }
  .crafted-overlay { display: none; }
  .crafted-text {
    position: relative; z-index: 3; height: auto; padding: 32px 18px;
    order: 2; margin-top: -16px; pointer-events: auto;
  }
  .crafted-title { font-size: 32px; margin-bottom: 12px; }
  .crafted-desc { font-size: 14px; line-height: 1.6; }

  /* Personalize Banner */
  .personalize-banner { min-height: 260px; margin: 30px 0; border-radius: 10px; }
  .personalize-text { padding: 30px 18px; max-width: 100%; }
  .personalize-title { font-size: 28px; }
  .personalize-desc { font-size: 14px; }

  /* Single Product Gallery Mobile Responsive Sizing & Swiping */
  .product-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-gallery {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }
  .gallery-main {
    width: 100% !important;
    aspect-ratio: 12 / 17 !important;
    height: auto !important;
    border-radius: 12px !important;
    background: #f8f6f2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    touch-action: pan-y !important;
    user-select: none !important;
  }
  .gallery-main img:not(.img-skeleton-logo) {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 12px !important;
    display: block !important;
  }
  .gallery-thumbs-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .gallery-thumbs {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    padding: 4px 2px !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none !important; }
  .gallery-thumb {
    width: 76px !important;
    height: 96px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
  }

  /* Tailor Workshop Section */
  .workshop-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 45px 0;
    text-align: center;
  }
  .workshop-imgs { height: 280px; }
  .workshop-img1 { width: 50%; height: 230px; top: 16px; }
  .workshop-img2 { width: 54%; height: 260px; }
  .workshop-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .workshop-icon {
    margin: 0 auto 10px !important;
  }
  .workshop-kicker {
    text-align: center !important;
  }
  .workshop-section h2 {
    font-size: 30px !important;
    text-align: center !important;
  }
  .workshop-section p {
    font-size: 14px !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
  .workshop-btns {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Stats Section */
  .stats-section {
    margin: 44px auto 0 !important;
    text-align: center !important;
    padding: 0 16px !important;
  }
  .stats-quote {
    font-size: 28px !important;
    line-height: 1.3 !important;
    text-align: center !important;
    margin-bottom: 22px !important;
  }
  .stats-row {
    flex-direction: column !important;
    gap: 22px !important;
    align-items: center !important;
    margin: 20px 0 10px !important;
  }
  .stats-item {
    text-align: center !important;
    width: 100% !important;
  }
  .stats-num {
    font-size: 54px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    text-align: center !important;
    color: #ac4a3e !important;
  }
  .stats-desc {
    font-size: 16.5px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin-top: 6px !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Luxury Brands Section Title */
  .luxury-brands-header {
    text-align: center !important;
    font-size: 26px !important;
    margin: 40px 0 20px !important;
  }

  /* Testimonials */
  .testimonial-section-header {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .testimonial-section-header h2 {
    font-size: 26px !important;
    text-align: center !important;
    margin-bottom: 0 !important;
  }
  .testimonial-card { flex: 0 0 calc(88% - 10px); padding: 18px; }
  .testimonial-quote { font-size: 13.5px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }
  .blog-card { grid-template-columns: 1fr; gap: 12px; }
  .blog-img { height: 240px; }
  .blog-title { font-size: 20px; }

  /* Help & FAQ (Support Section - Centralized Layout) */
  .help-section {
    padding: 36px 20px !important;
    border-radius: 16px !important;
    gap: 28px !important;
    margin-top: 50px !important;
    grid-template-columns: 1fr !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .help-section > div:first-child {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .help-kicker {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }
  .help-title {
    font-size: 32px !important;
    text-align: center !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
  }
  .help-desc {
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    text-align: center !important;
    max-width: 440px !important;
    margin: 0 auto 24px auto !important;
  }
  .help-section .btn-primary {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .faq-question { padding: 14px 16px; text-align: left; }
  .faq-question strong { font-size: 14px; }
  .faq-answer { padding: 0 16px 14px; font-size: 13px; text-align: left; }

  /* Instagram */
  .insta-header { flex-direction: column; text-align: center; gap: 12px; }
  .insta-header h2 { font-size: 24px !important; text-align: center; }
  .insta-item { flex: 0 0 calc(46% - 6px); }

  /* Trust Badges & Footer */
  .trust-badges {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    margin: 32px 0 24px !important;
    padding: 16px 10px !important;
    border-radius: 12px !important;
  }
  .trust-badge {
    gap: 8px !important;
    padding: 12px 6px !important;
    background: #faf8f5 !important;
    border-radius: 10px !important;
  }
  .trust-badge-title {
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 36px 0 20px !important;
    text-align: center !important;
  }
  .footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .footer-social {
    justify-content: center !important;
    margin-top: 16px;
  }
  .footer-columns-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    text-align: center !important;
  }
  .footer-col {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .footer-col h3 {
    text-align: center !important;
  }
  .footer-subscribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-newsletter {
    max-width: 100% !important;
    margin: 0 auto;
  }
  .footer-subscribe p {
    margin: 16px auto 0 !important;
    text-align: center !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .footer-copy {
    text-align: center !important;
  }
  .footer-payments {
    justify-content: center !important;
  }
  .shop-header { flex-direction: column; text-align: center; }

  /* Section Headers - keep title + view all on one line */
  .section-header {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .section-header h2 {
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .view-all-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 10px !important; }
  .product-card-img { height: 265px; }
  .product-card-name { font-size: 11px; height: auto; white-space: normal; overflow: visible; }
  .section-header h2 { font-size: 26px; }
  .section-header {
    flex-wrap: nowrap;
    gap: 10px;
  }
  .section-header h2 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .view-all-btn {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 999; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366;
  animation: whatsappPulse 2s ease-out infinite;
}
@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   PAGE HERO BANNERS & DECORATIVE TYPOGRAPHY
   ============================================================ */
.page-hero-banner {
  position: relative;
  height: 480px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding-bottom: 40px;
}
.page-hero-banner.brand-hero-banner {
  height: 250px;
  background: linear-gradient(135deg, #b84e42 0%, #ac4a3e 50%, #8c382f 100%);
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  box-shadow: inset 0 -4px 12px rgba(0,0,0,0.1);
}
.brand-hero-banner .page-hero-content {
  margin-bottom: 0;
  max-width: 760px;
}
.brand-hero-banner .page-hero-title {
  font-size: 44px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
  margin-bottom: 10px;
}
.brand-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  line-height: 1.5;
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: 0.3px;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,20,18,0.96) 0%, rgba(20,20,18,0.7) 45%, rgba(20,20,18,0.15) 100%);
}
.contact-hero-overlay {
  background: linear-gradient(to top, rgba(150, 143, 91, 0.96) 0%, rgba(150, 143, 91, 0.7) 45%, rgba(150, 143, 91, 0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
}
.page-hero-title {
  font-family: 'Marcellus', serif;
  font-size: 72px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.brand-hero-banner .page-hero-title {
  font-size: 48px;
}

.decorative-banner {
  background: #f7f4ee;
  border: 1px solid #e7e1d6;
  border-radius: 16px;
  padding: 50px 30px;
  text-align: center;
  margin: 40px 0;
}
.decorative-banner h2 {
  font-family: 'Marcellus', serif;
  font-size: 42px;
  font-weight: 400;
  color: #2b2a26;
  line-height: 1.4;
}
.pill-img {
  display: inline-block;
  vertical-align: middle;
  width: 76px;
  height: 38px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 6px;
}
.pill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   ABOUT US ZIGZAG & STATS
   ============================================================ */
.about-zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-zigzag-row.row-mission {
  grid-template-columns: 1fr 0.85fr;
}
.about-zigzag-row.row-story {
  grid-template-columns: 0.85fr 1fr;
}
.about-zigzag-text {
  padding: 20px 0;
}
.about-kicker {
  font-size: 12px;
  letter-spacing: 2px;
  color: #9a8a5e;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.about-zigzag-text h2 {
  font-family: 'Marcellus', serif;
  font-size: 44px;
  font-weight: 400;
  color: #2b2a26;
  margin-bottom: 18px;
}
.about-zigzag-text p {
  color: #777777;
  font-size: 1.125rem;
  line-height: 1.667em;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.about-zigzag-img {
  border-radius: 16px;
  overflow: hidden;
  height: 480px;
  width: 100%;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.about-zigzag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tilt-right {
  transform: rotate(2.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.tilt-left {
  transform: rotate(-2.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.about-zigzag-img:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.13);
}

.about-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f7f4ee;
  border-radius: 16px;
  padding: 50px 30px;
  margin: 50px 0;
  text-align: center;
}
.stats-num {
  font-family: 'Marcellus', serif;
  font-size: 92px;
  font-weight: 400;
  color: #ac4a3e;
  line-height: 1;
  margin-bottom: 12px;
}
.stats-desc {
  color: #777777;
  font-size: 1.125rem;
  line-height: 1.667em;
  letter-spacing: -0.01em;
  font-weight: 500;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   TESTIMONIAL CAROUSEL (ABOUT PAGE)
   ============================================================ */
.about-testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.about-testimonial-card-single {
  flex: 1;
  background: #fff;
  border: 1px solid #e7e1d6;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}
.about-test-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f7f4ee;
  border: 1px solid #d8cfc0;
  color: #2b2a26;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  flex-shrink: 0;

}
.about-test-arrow:hover {
  background: #2b2a26;
  color: #fff;
  border-color: #2b2a26;
}
.about-test-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.about-test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cfc8bb;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.about-test-dot.active {
  background: #2b2a26;
  transform: scale(1.25);
}

/* ============================================================
   CONTACT US STYLES
   ============================================================ */
.contact-info-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #fff;
  border: 1px solid #e7e1d6;
  border-radius: 16px;
  padding: 44px;
  margin-bottom: 50px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.03);
}
.contact-info-col h2 {
  font-family: 'Marcellus', serif;
  font-size: 36px;
  font-weight: 400;
  color: #2b2a26;
  margin-bottom: 12px;
}
.map-container-box {
  width: 100%;
  height: 200px;
  background: #f4f0e8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfd8cc;
  text-align: center;
}
.map-placeholder-content {
  padding: 16px;
}

.contact-form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: #f7f4ee;
  border-radius: 16px;
  padding: 50px;
  margin: 60px 0;
  align-items: center;
}
.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d8cfc0;
  border-radius: 8px;
  background: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #2b2a26;
  outline: none;
  transition: border-color .25s;
}
.contact-input:focus {
  border-color: #ac4a3e;
}

/* ============================================================
   BLOG GRID & SINGLE POST STYLES
   ============================================================ */
.blog-grid-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 70px;
}
.blog-card-full {
  background: #fff;
  border: 1px solid #e7e1d6;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.blog-card-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-img-container {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: pointer;
}
.blog-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.blog-img-container:hover img {
  transform: scale(1.05);
}
.blog-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #2b2a26;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}
.blog-comment-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  color: #2b2a26;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.blog-card-content {
  padding: 24px;
}
.blog-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: #ac4a3e;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-card-title {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  font-weight: 400;
  color: #2b2a26;
  margin-bottom: 12px;
  line-height: 1.25;
  cursor: pointer;
  transition: color .2s;
}
.blog-card-title:hover {
  color: #ac4a3e;
}
.blog-excerpt {
  color: #6a675e;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.blog-read-more {
  font-size: 13px;
  font-weight: 600;
  color: #2b2a26;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-bottom: 1px solid #2b2a26;
  padding-bottom: 2px;
  display: inline-block;
  transition: color .2s, border-color .2s;
}
.blog-read-more:hover {
  color: #ac4a3e;
  border-color: #ac4a3e;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f0eae1;
}
.blog-author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #d8cfc0;
  display: inline-block;
}

.blog-single-img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 30px;
}
.blog-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-single-content p {
  font-size: 17px;
  color: #4a4842;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ============================================================
   MOBILE FILTER DRAWER & CART DRAWER
   ============================================================ */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #2b2a26;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.filter-drawer-overlay, .cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 1000;
}
.filter-drawer-overlay.open, .cart-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.filter-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.filter-drawer.open {
  transform: translateX(0);
}
.filter-drawer-header, .cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e7e1d6;
}
.filter-drawer-header h3, .cart-drawer-header h3 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  font-weight: 400;
}
.filter-drawer-close, .cart-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6a675e;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100%;
  background: #fff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f2ebe1;
}
.cart-drawer-item img {
  width: 60px;
  height: 75px;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .page-hero-banner { height: 360px; padding-bottom: 30px; }
  .page-hero-title { font-size: 40px; }
  .decorative-banner h2 { font-size: 28px; }
  .pill-img { width: 56px; height: 28px; }
  .about-zigzag-row, .about-zigzag-row.reverse { display: flex; flex-direction: column; gap: 24px; }
  .about-zigzag-img { order: 1; height: 340px; width: 85%; margin: 0 auto; }
  .about-zigzag-text { order: 2; text-align: center; padding: 10px 0; }
  .tilt-right { transform: rotate(2deg); }
  .tilt-left { transform: rotate(-2deg); }
  .about-stats-row { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px; text-align: center; }
  .stats-num { font-size: 64px; }
  .contact-info-card, .contact-form-card { grid-template-columns: 1fr; gap: 30px; padding: 24px; }
  .blog-grid-page { grid-template-columns: 1fr; gap: 28px; }
  .blog-single-img { height: 260px; }
  .mobile-filter-btn { display: inline-flex; }
  .testimonial-track { gap: 0; }
  .testimonial-card { flex: 0 0 100%; min-width: 100%; }

  /* Mobile Single Product Gallery: Full-width main image + horizontal bottom thumbnails */
  .product-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    gap: 24px;
    box-sizing: border-box;
  }
  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .gallery-main {
    order: 1;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 12 / 17;
    height: auto;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .gallery-thumbs-wrapper {
    order: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    max-height: none;
    position: relative;
    gap: 6px;
    margin-top: 4px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .gallery-thumbs {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    max-height: none;
    gap: 8px;
    padding: 2px 0 6px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    box-sizing: border-box;
  }
  .gallery-thumbs::-webkit-scrollbar {
    display: none;
  }
  .gallery-thumb {
    width: 76px;
    height: 100px;
    flex-shrink: 0;
    scroll-snap-align: start;
    border-radius: 6px;
  }
  .thumb-nav-btn {
    width: 24px;
    height: 100px;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .thumb-next-btn {
    margin-top: 0;
  }
  .desktop-arrow { display: none !important; }
  .mobile-arrow { display: inline-block !important; }
  .product-breadcrumb {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 16px 0 12px;
  }
  .product-title {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 26px;
  }
  .product-layout > div {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .reviews-compact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Mobile Shop Header & Grid Switcher */
  .shop-header {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    text-align: center;
  }
  .shop-header-img {
    display: none !important;
  }
  .shop-title {
    font-size: 26.5px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin: 4px 0 0 !important;
  }
  .shop-header-banner {
    padding: 14px 10px !important;
    text-align: center !important;
  }
  .shop-breadcrumb {
    font-size: 10.5px !important;
    text-align: center !important;
    display: block !important;
  }

  /* Responsive Toolbar Strip on Mobile (No Right Cut-off & Perfectly Centered) */
  .shop-toolbar-strip {
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }
  .shop-toolbar-container {
    padding: 10px 8px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .shop-toolbar-left {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .shop-toolbar-right {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    flex-wrap: wrap !important;
  }
  .shop-counter-text {
    font-size: 11.5px !important;
    text-align: center !important;
  }
  .toolbar-control-group {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
  }
  .toolbar-label {
    font-size: 11.5px !important;
  }
  .toolbar-select {
    font-size: 11.5px !important;
    padding: 5px 18px 5px 8px !important;
    max-width: 175px !important;
  }
  .pill-filter-btn {
    padding: 4px 12px !important;
    font-size: 12px !important;
    height: 28px !important;
  }
  .shop-layout {
    grid-template-columns: 1fr !important;
  }
  /* Explicitly hide desktop sidebar on mobile */
  .shop-sidebar,
  .shop-layout > div:first-child {
    display: none !important;
  }
  
  .shop-layout {
    display: block !important;
    width: 100% !important;
  }

  /* Grid 2-column mobile default */
  .shop-product-grid.grid-2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .shop-product-grid.grid-2 .product-card-body {
    padding: 10px 6px;
  }
  .shop-product-grid.grid-2 .product-card-name {
    font-size: 11.5px !important;
    line-height: 1.3 !important;
    height: auto !important;
    overflow: visible !important;
    white-space: normal !important;
  }
  .shop-product-grid.grid-2 .product-card-price {
    font-size: 14px !important;
    margin-top: 4px;
  }

  /* Grid 1-column mobile alternative: Full top-to-bottom product showcase without cropping */
  .shop-product-grid.grid-1 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .shop-product-grid.grid-1 .product-card-img {
    height: auto !important;
    aspect-ratio: 3 / 4.2 !important;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
  }
  .shop-product-grid.grid-1 .product-card-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }
}

/* ---------- FILTER & CART DRAWER OVERLAYS & SLIDE-OUT ---------- */
.filter-drawer-overlay,
.cart-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(4px);
  z-index: 99990 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.filter-drawer-overlay.open,
.cart-drawer-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.filter-drawer,
.cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: 420px !important;
  height: 100vh !important;
  background: #ffffff !important;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25) !important;
  transform: translateX(100%) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 99991 !important;
  box-sizing: border-box !important;
  padding: 24px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.filter-drawer.open,
.cart-drawer.open,
.filter-drawer-overlay.open .filter-drawer,
.cart-drawer-overlay.open .cart-drawer {
  transform: translateX(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .filter-drawer,
  .cart-drawer {
    top: auto !important;
    bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 90vh !important;
    margin-top: auto;
    border-radius: 20px 20px 0 0 !important;
    transform: translateY(100%) !important;
  }
  .filter-drawer.open,
  .cart-drawer.open,
  .filter-drawer-overlay.open .filter-drawer,
  .cart-drawer-overlay.open .cart-drawer {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* ---------- FLOATING PILL TOOLBAR (SHOW ON MOBILE <=768px ONLY) ---------- */
@media (min-width: 769px) {
  .pill-toolbar-wrapper {
    display: none !important;
  }
}

.pill-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #faf7f2;
  border: 1px solid #ebdccb;
  border-radius: 36px;
  padding: 6px 8px 6px 16px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pill-filter-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #2b2a26;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.2s;
}

.pill-filter-btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.filter-count-badge {
  background: #ac4a3e;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pill-grid-toggle {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e7dcd0;
  border-radius: 24px;
  padding: 3px;
  gap: 2px;
}

.pill-grid-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #78716c;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pill-grid-btn.active {
  background: #2b2a26;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.shop-title {
  font-family: 'Marcellus', serif;
  color: #2b2a26;
}


/* ---------- CHECKOUT PAGE RESPONSIVE & LAYOUT STYLES ---------- */
.checkout-layout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}
.checkout-panel-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 30px;
}
.checkout-form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.checkout-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcd6ca;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.checkout-input:focus {
  border-color: #2b2a26;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43,42,38,0.08);
}

@media (max-width: 992px) {
  .checkout-layout-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .checkout-right-col .checkout-panel-card {
    position: static !important;
  }
}

.cart-page-title {
  font-family: 'Marcellus', serif;
  font-size: 40px;
  color: #2b2a26;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .cart-page-title {
    font-size: 26.5px !important;
    line-height: 1.25 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  .cart-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .cart-item {
    padding: 10px !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .cart-item-name {
    font-size: 13.5px !important;
    line-height: 1.3 !important;
  }
  .cart-item-img {
    width: 60px !important;
    height: 70px !important;
    border-radius: 6px !important;
  }
  .cart-item .qty-selector {
    height: 28px !important;
  }
  .cart-item .qty-btn {
    width: 26px !important;
    font-size: 12px !important;
  }
  .cart-item .qty-display {
    padding: 0 8px !important;
    font-size: 12px !important;
  }
  .cart-summary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 12px !important;
    margin-top: 10px !important;
  }

  /* Checkout Page Responsiveness on Mobile */
  .checkout-main-title {
    font-size: 26px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
    margin-top: 10px !important;
  }
  .checkout-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .checkout-panel-card {
    padding: 16px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .checkout-form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  #bankTransferWidget {
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .account-card-option {
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .checkout-btn, .btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 13.5px !important;
  }
}

/* ---------- THANK YOU & TRACKING ANIMATIONS ---------- */
@keyframes thankYouPop {
  0% { opacity: 0; transform: translateY(24px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes checkmarkPulse {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(22, 163, 74, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.thankyou-card-container {
  animation: thankYouPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  padding: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.thankyou-check-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  animation: checkmarkPulse 1.5s infinite;
}

.witty-status-box {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border: 1px solid #fde047;
  border-radius: 10px;
  padding: 18px 24px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.tracking-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 1;
}

.stepper-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  border: 2px solid #cbd5e1;
  transition: all 0.3s;
  flex-shrink: 0;
}

.stepper-step.active .stepper-icon {
  background: #2b2a26;
  color: #fff;
  border-color: #2b2a26;
}

.stepper-step.completed .stepper-icon {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.stepper-label {
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  color: #64748b;
  text-align: center;
  line-height: 1.25;
  word-break: break-word;
}

.stepper-step.active .stepper-label,
.stepper-step.completed .stepper-label {
  color: #0f172a;
}

.stepper-line-bg {
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: #e2e8f0;
  z-index: 1;
}

.stepper-line-progress {
  height: 100%;
  background: #16a34a;
  transition: width 0.4s ease;
}

.track-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 24px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .thankyou-card-container {
    padding: 24px 16px;
  }
  .tracking-stepper {
    margin: 20px 0;
  }
  .stepper-label {
    font-size: 10.5px;
    margin-top: 6px;
  }
  .stepper-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .stepper-line-bg {
    top: 16px;
    left: 10%;
    right: 10%;
  }
  .track-items-table th,
  .track-items-table td {
    padding: 10px 8px !important;
    font-size: 12px !important;
  }
  .track-table-img {
    width: 40px !important;
    height: 40px !important;
  }
}

/* ---------- CENTERED TRACK SEARCH CARD & 4-STEP STEPPER ---------- */
.track-search-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 36px;
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.track-search-input-group {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 20px auto 0;
}

.track-search-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.track-search-input:focus {
  border-color: #2b2a26;
  box-shadow: 0 0 0 3px rgba(43,42,38,0.08);
}

.track-search-btn {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-radius: 8px;
}

.track-table-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

@media (max-width: 576px) {
  .track-search-card {
    padding: 24px 16px;
  }
  .track-search-input-group {
    flex-direction: column;
    gap: 10px;
  }
  .track-search-btn {
    width: 100%;
  }
}

/* ---------- CATEGORY RESPONSIVE ---------- */
@media (max-width: 768px) {
  .category-card {
    min-width: 155px;
    max-width: 155px;
    height: 186px;
  }
  .category-slider {
    padding: 0 4px;
  }
  .category-label {
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%) !important;
    padding: 6px 10px;
  }
}

/* ---------- PRODUCT CARD ACTIONS (CART, QUICK VIEW EYE, WISHLIST) ---------- */
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto !important;
  padding-top: 8px;
  border-top: 1px solid #f2ede4;
}

.product-action-btn {
  flex: 1;
  height: 32px;
  border-radius: 6px;
  border: 1px solid #e7e1d6;
  background: #fff;
  color: #2b2a26;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.product-action-btn:hover {
  border-color: #ac4a3e;
  color: #ac4a3e;
  background: #fdfaf8;
}

.product-action-btn.active {
  border-color: #ac4a3e;
  color: #ac4a3e;
  background: #fcf4f3;
}

/* ---------- QUICK VIEW OVERLAY & MODAL (WHITE THEME) ---------- */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.quickview-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.quickview-modal {
  background: #ffffff;
  color: #2b2a26;
  border-radius: 16px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  padding: 28px;
}

.quickview-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: #f2ede4;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #2b2a26;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}

.quickview-close:hover {
  background: #ac4a3e;
  color: #fff;
}

.quickview-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.quickview-main-img {
  width: 100%;
  height: 380px;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f6f0;
  position: relative;
  touch-action: pan-y pinch-zoom;
}

.quickview-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0,0,0,0.08);
  color: #2b2a26;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
  user-select: none;
  -webkit-user-select: none;
}

.quickview-nav-btn:hover {
  background: #ffffff;
  color: #ac4a3e;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.quickview-nav-btn.qv-prev {
  left: 8px;
}

.quickview-nav-btn.qv-next {
  right: 8px;
}

.quickview-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.quickview-thumb {
  width: 58px;
  height: 62px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.quickview-thumb.active,
.quickview-thumb:hover {
  border-color: #ac4a3e;
}

.quickview-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-cat {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #ac4a3e;
  font-weight: 600;
}

.quickview-title {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  margin: 6px 0 10px;
  color: #2b2a26;
}

.quickview-price {
  font-size: 18px;
  font-weight: 700;
  color: #2b2a26;
  margin-bottom: 14px;
}

.quickview-desc {
  font-size: 13.5px;
  color: #6a675e;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .quickview-overlay {
    padding: 10px;
  }

  .quickview-modal {
    padding: 16px 14px;
    max-height: 88vh;
    border-radius: 12px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .quickview-close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 18px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    z-index: 10;
  }

  .quickview-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quickview-media {
    width: 100%;
    box-sizing: border-box;
  }

  .quickview-main-img {
    width: 100%;
    max-width: 290px;
    height: 350px;
    max-height: 48vh;
    aspect-ratio: 3 / 4;
    margin: 0 auto;
    border-radius: 10px;
  }

  .quickview-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .quickview-thumbs {
    gap: 6px;
    margin-top: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .quickview-thumb {
    width: 48px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 5px;
  }

  .quickview-details {
    padding: 0 2px;
    width: 100%;
    box-sizing: border-box;
  }

  .quickview-title {
    font-size: 18px;
    line-height: 1.3;
    margin: 4px 0 6px;
  }

  .quickview-price {
    font-size: 15.5px;
    margin-bottom: 8px;
  }

  .quickview-actions {
    margin-top: 14px !important;
  }

  .quickview-actions button {
    border-radius: 6px !important;
    padding: 10px 6px !important;
    font-size: 12px !important;
  }

  .product-action-btn {
    height: 26px;
  }
}

/* ============================================================
   DUAL THUMB PRICE RANGE SLIDER STYLES
   ============================================================ */
.dual-range-wrapper {
  position: relative;
  width: 100%;
  padding: 8px 0 4px;
}
.dual-range-slider {
  position: relative;
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
}
.dual-range-track {
  position: absolute;
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 4px;
  z-index: 1;
}
.dual-range-progress {
  position: absolute;
  height: 6px;
  background: #ac4a3e;
  border-radius: 4px;
  z-index: 2;
  transition: left 0.1s ease, right 0.1s ease;
}
.dual-range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  z-index: 3;
  outline: none;
}
.dual-range-input::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #ac4a3e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dual-range-input::-webkit-slider-thumb:hover,
.dual-range-input::-webkit-slider-thumb:active {
  transform: scale(1.18);
  box-shadow: 0 3px 10px rgba(172, 74, 62, 0.4);
  cursor: grabbing;
}
.dual-range-input::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 2.5px solid #ac4a3e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  -moz-appearance: none;
  cursor: grab;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dual-range-input::-moz-range-thumb:hover,
.dual-range-input::-moz-range-thumb:active {
  transform: scale(1.18);
  box-shadow: 0 3px 10px rgba(172, 74, 62, 0.4);
  cursor: grabbing;
}
.dual-range-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 13px;
  color: #2b2a26;
  font-weight: 600;
}
.dual-range-price-badge {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: #ac4a3e;
}

/* ---------- HERO SLIDER BANNERS RESPONSIVE SWITCHING ---------- */
.hero-slide {
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 769px) {
  .hero-img-mobile {
    display: none !important;
  }
  .hero-img-desktop {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }
}
@media (max-width: 768px) {
  .hero-wrapper {
    width: 100% !important;
    aspect-ratio: 752 / 1540 !important;
    max-height: 85vh !important;
    margin: 0 auto !important;
    position: relative !important;
  }
  .hero-track {
    height: 100% !important;
    display: flex !important;
  }
  .hero-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
  }
  .hero-slide picture img,
  .hero-img-mobile {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .hero-prev-zone, .hero-next-zone {
    pointer-events: none !important;
  }
}

/* ---------- HERO ROTATING BADGE & CENTER ICON ---------- */
.hero-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 110px;
  height: 110px;
  z-index: 10;
  pointer-events: none;
}

/* ---------- SALE DISCOUNT CHIPS & INFINITE SCROLL ---------- */
.sale-discount-chips-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ac4a3e 0%, #8e352b 100%);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(172, 74, 62, 0.25);
  color: #ffffff;
}
.sale-strip-title {
  font-weight: 700;
  font-size: 13.5px;
  color: #ffffff !important;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sale-chips-grid {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex: 1;
}
.sale-chip-btn {
  background: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  color: #2b2a26;
  padding: 7px 16px;
  border-radius: 22px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}
.sale-chip-btn:hover {
  background: #fff8f7;
  color: #ac4a3e;
  transform: translateY(-1px);
}
.sale-chip-btn.active {
  background: #ffffff;
  color: #ac4a3e;
  font-weight: 800;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

@media (max-width: 768px) {
  .sale-discount-chips-strip {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 12px !important;
    margin-bottom: 16px !important;
    border-radius: 12px !important;
    gap: 8px !important;
  }
  .sale-strip-title {
    font-size: 11.5px !important;
    text-align: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .sale-chips-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .sale-chip-btn {
    padding: 6px 6px !important;
    font-size: 11px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    letter-spacing: -0.2px;
  }
}

.infinite-scroll-sentinel {
  width: 100%;
  padding: 24px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #8c897f;
  font-size: 13px;
  font-weight: 600;
}
.infinite-scroll-spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid #e2dcd5;
  border-top-color: #ac4a3e;
  border-radius: 50%;
  animation: infiniteSpin 0.7s linear infinite;
}
@keyframes infiniteSpin {
  to { transform: rotate(360deg); }
}

/* ---------- HOMEPAGE END CARD ROUND ARROW BUTTON ---------- */
.view-all-end-card:hover {
  background: #ffffff !important;
  border-color: #ac4a3e !important;
  box-shadow: 0 8px 24px rgba(172, 74, 62, 0.15) !important;
  transform: translateY(-3px);
}
.end-card-arrow-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ac4a3e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(172, 74, 62, 0.35);
  transition: all 0.25s ease;
}
.view-all-end-card:hover .end-card-arrow-circle {
  background: #8e352b;
  transform: scale(1.1) translateX(3px);
  box-shadow: 0 6px 18px rgba(142, 53, 43, 0.45);
}

