:root {
  --primary: #ece861;
  --black: #000000;
  --white: #ffffff;
  --ink: #090909;
  --muted: #707070;
  --soft: #f7f7f2;
  --line: rgba(255, 255, 255, 0.16);
  --dark-line: rgba(0, 0, 0, 0.1);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  --soft-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.search-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--primary);
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--black);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  animation: pulseMark 1.4s ease infinite;
}

.premium-navbar {
  min-height: 82px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.35s ease, min-height 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.premium-navbar.is-scrolled,
.premium-navbar.nav-solid {
  min-height: 74px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-lockup:hover {
  color: var(--white);
}

.brand-emblem {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 800;
  box-shadow: 0 0 28px rgba(236, 232, 97, 0.26);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
}

.premium-nav {
  align-items: center;
  gap: 5px;
}

.premium-nav .nav-link,
.account-link {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 0.72rem;
  transition: color 0.25s ease;
}

.premium-nav .nav-link::after,
.account-link::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.48rem;
  left: 0.72rem;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.premium-nav .nav-link:hover,
.premium-nav .nav-link.active,
.account-link:hover {
  color: var(--white);
}

.premium-nav .nav-link:hover::after,
.premium-nav .nav-link.active::after,
.account-link:hover::after {
  transform: scaleX(1);
}

.dropdown-toggle::after {
  margin-left: 0.4rem;
}

.glass-dropdown {
  overflow: hidden;
  min-width: 220px;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.86);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: dropdownIn 0.25s ease;
}

.glass-dropdown .dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 0.72rem 0.85rem;
}

.glass-dropdown .dropdown-item:hover {
  color: var(--black);
  background: var(--primary);
}

.nav-actions {
  align-items: center;
  gap: 12px;
}

.icon-btn {
  position: relative;
  display: inline-grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:hover {
  color: var(--black);
  background: var(--primary);
  transform: translateY(-2px);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.menu-toggle:focus {
  box-shadow: 0 0 0 0.18rem rgba(236, 232, 97, 0.28);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease;
}

.mobile-drawer {
  color: var(--white);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
}

.mobile-drawer .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0.8rem 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.drawer-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-swiper,
.hero-slide {
  min-height: 100svh;
}

.hero-swiper,
.review-swiper,
.related-swiper {
  overflow: hidden;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  position: absolute;
  inset: -5%;
  content: "";
  background-image: inherit;
  background-position: center;
  background-size: cover;
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.04);
  transition: transform 7s ease;
}

.hero-slide.swiper-slide-active::before {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.64));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: block;
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.dark {
  color: var(--black);
}

.hero-content h1,
.page-hero h1 {
  max-width: 850px;
  margin: 18px 0;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-content p,
.page-hero p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.premium-btn,
.filter-reset,
.filter-drawer-btn,
.whatsapp-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.82rem 1.34rem;
  overflow: hidden;
  color: var(--black);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.premium-btn::after,
.filter-reset::after,
.filter-drawer-btn::after,
.whatsapp-contact::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.premium-btn:hover,
.filter-reset:hover,
.filter-drawer-btn:hover,
.whatsapp-contact:hover {
  color: var(--black);
  box-shadow: 0 18px 34px rgba(236, 232, 97, 0.22);
  transform: translateY(-2px);
}

.premium-btn:hover::after,
.filter-reset:hover::after,
.filter-drawer-btn:hover::after,
.whatsapp-contact:hover::after {
  transform: translateX(120%);
}

.premium-btn-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
}

.premium-btn-light:hover {
  color: var(--black);
  background: var(--white);
}

.hero-pagination .swiper-pagination-bullet,
.review-pagination .swiper-pagination-bullet,
.related-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 0;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active,
.review-pagination .swiper-pagination-bullet-active,
.related-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 44px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue span {
  display: block;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 99px;
}

.scroll-cue span::after {
  display: block;
  width: 5px;
  height: 5px;
  margin: 10px auto;
  content: "";
  background: var(--primary);
  border-radius: 50%;
  animation: scrollDot 1.5s ease infinite;
}

.floating-spice,
.leaf,
.particle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.floating-spice {
  width: 250px;
  height: 28px;

  border-radius: 100% 10% 100% 10%;
  backdrop-filter: blur(8px);
  animation: floatPiece 6s ease-in-out infinite;
}

.spice-one {
  top: 22%;
  right: 12%;
}

.spice-two {
  right: 80%;
  bottom: 40%;
  animation-delay: 1.2s;
}

.section-pad {
  padding: clamp(74px, 8vw, 128px) 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 44px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading h2,
.story-section h2,
.feature-tile h3,
.prep-copy h2,
.combo-panel h2,
.parallax-copy h2,
.contact-form h2,
.shop-toolbar h2,
.sticky-cart-panel h1,
.premium-tab-content h2 {
  margin: 12px 0 14px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.section-heading h2,
.story-section h2,
.prep-copy h2,
.combo-panel h2,
.parallax-copy h2,
.contact-form h2,
.shop-toolbar h2 {
  font-size: clamp(2.1rem, 4.2vw, 4.8rem);
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.text-link {
  position: relative;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link::after {
  display: block;
  height: 2px;
  margin-top: 5px;
  content: "";
  background: var(--primary);
  transform: scaleX(0.36);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.category-section {
  background: var(--soft);
}

.category-card {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: end;
  overflow: hidden;
  padding: 22px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.category-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--cat-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.category-card span {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.05;
}

.category-card:hover {
  color: var(--white);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.category-card:hover::before {
  transform: scale(1.14);
}

.filter-shell,
.filter-sidebar,
.contact-form,
.sticky-cart-panel,
.premium-tab-content,
.prep-copy {
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.filter-shell {
  padding: 22px;
  margin-bottom: 34px;
}

.form-label {
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.premium-input {
  min-height: 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.82);
  color: var(--black);
  box-shadow: none;
}

.premium-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(236, 232, 97, 0.26);
}

.premium-range {
  accent-color: var(--primary);
}

.filter-reset {
  width: 100%;
  min-height: 48px;
  padding-inline: 0.8rem;
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.filter-reset:hover {
  color: var(--black);
  background: var(--primary);
}

.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(236, 232, 97, 0.9);
  box-shadow: var(--shadow);
  transform: translateY(-9px);
}

.empty-state {
  padding: 32px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  text-align: center;
  font-weight: 800;
}

.product-media {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #111;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.1);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.3rem 0.62rem;
  color: var(--black);
  background: var(--primary);
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-media .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.wishlist-btn,
.quick-btn {
  position: absolute;
  right: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.48);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.wishlist-btn {
  top: 14px;
}

.quick-btn {
  top: 62px;
  font-size: 0.72rem;
  font-weight: 900;
}

.wishlist-btn svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wishlist-btn:hover,
.wishlist-btn.is-active,
.quick-btn:hover {
  color: var(--black);
  background: var(--primary);
  transform: translateY(-2px);
}

.product-body {
  padding: 20px;
}

.product-body h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.product-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: #d6a400;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 18px;
}

.price-row strong,
.detail-price strong {
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 1000;
}

.price-row del,
.detail-price del {
  color: #999;
  font-size: 0.9rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.add-cart-btn {
  min-height: 44px;
  color: var(--black);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 6px;
  font-weight: 950;
  transition: transform 0.25s ease, background 0.25s ease;
}

.add-cart-btn:hover {
  background: #f7f279;
  transform: translateY(-2px);
}

.details-link {
  display: grid;
  min-width: 46px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 6px;
  font-weight: 900;
}

.combo-banner {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.combo-bg,
.parallax-bg {
  position: absolute;
  inset: 0;
  background-image: var(--combo-image, var(--parallax-image));
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  opacity: 0.82;
}

.combo-banner::after,
.cinematic-parallax::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74));
}

.combo-panel {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.offer-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 0.34rem 0.78rem;
  color: var(--black);
  background: var(--primary);
  border-radius: 99px;
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-panel p,
.parallax-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 12px;
  margin: 26px 0;
}

.countdown span {
  display: grid;
  min-height: 84px;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.countdown strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.countdown small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leaf {
  width: 200px;
  height: 36px;

  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
  animation: floatPiece 7s ease-in-out infinite;
}

.leaf-a {
  top: 18%;
  right: 12%;
}

.leaf-b {
  right: 26%;
  bottom: 50%;
  animation-delay: 1.4s;
}

.reviews-section,
.product-showcase {
  background: var(--white);
}

.review-swiper {
  padding: 10px 4px 48px;
}

.review-card {
  height: auto;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.review-card img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border: 3px solid var(--primary);
  border-radius: 50%;
}

.review-card h3 {
  margin: 16px 0 4px;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.review-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.cinematic-parallax {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.cinematic-parallax .container {
  position: relative;
  z-index: 2;
}

.parallax-copy {
  max-width: 760px;
}

.particle {
  z-index: 1;
  width: 400px;
  height: 22px;

  animation: drift 10s linear infinite;
}

.particle-one {
  top: -30%;
  left: 12%;
}

.particle-two {
  top: 20%;
  right: 12%;
  animation-delay: -3s;
}

.particle-three {
  bottom: 15%;
  left: 32%;
  animation-delay: -6s;
}

.instagram-section {
  background: var(--soft);
}

.masonry-gallery {
  display: grid;
  grid-auto-rows: 170px;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  isolation: isolate;
}

.gallery-item::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--gallery-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(0, 0, 0, 0.15);
  transition: background 0.25s ease;
}

.gallery-item span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover::before {
  transform: scale(1.14);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.46);
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 80px;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--page-hero);
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.compact-hero {
  min-height: 54svh;
}

.story-section {
  background: var(--white);
}

.image-stack {
  position: relative;
  min-height: 580px;
}

.image-stack img {
  width: 88%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stack-card {
  position: absolute;
  right: 0;
  bottom: 48px;
  max-width: 260px;
  padding: 22px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stack-card strong,
.stack-card span {
  display: block;
}

.stack-card strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.story-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.light-band {
  background: var(--soft);
}

.feature-tile {
  height: 100%;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-tile:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.feature-tile span {
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 1000;
}

.feature-tile h3 {
  font-size: 1.55rem;
}

.feature-tile p {
  color: var(--muted);
  margin: 0;
}

.counter-strip {
  padding: 76px 0;
  color: var(--white);
  background: var(--black);
}

.counter-box {
  padding: 24px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.counter-box strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
}

.counter-box span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline::before {
  position: absolute;
  top: 26px;
  right: 12%;
  left: 12%;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.15);
}

.timeline-item {
  position: relative;
  padding: 0 18px 22px;
  text-align: center;
}

.timeline-item span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 1000;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.timeline-item p {
  color: var(--muted);
  margin: 0;
}

.preparation-gallery {
  color: var(--white);
  background: var(--black);
}

.prep-copy {
  height: 100%;
  padding: clamp(28px, 4vw, 48px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.13);
}

.prep-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

.prep-grid img,
.upload-placeholder {
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.prep-grid img:first-child {
  grid-row: span 2;
  height: 100%;
}

.upload-placeholder,
.upload-thumb {
  display: grid;
  place-items: center;
  min-height: 180px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(236, 232, 97, 0.55);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-section {
  background: var(--soft);
}

.shop-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.filter-sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.filter-sidebar h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.category-pills a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0.62rem 0.95rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 900;
}

.category-pills a:hover {
  background: var(--primary);
}

.filter-drawer-btn {
  min-height: 44px;
  padding: 0.65rem 1rem;
}

.filter-drawer h2 {
  margin: 0;
  font-family: var(--font-display);
}

.premium-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.premium-pagination a {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-weight: 900;
}

.premium-pagination a.active,
.premium-pagination a:hover {
  background: var(--primary);
}

.product-detail-section {
  padding: 130px 0 60px;
  background: var(--soft);
}

.breadcrumb-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.breadcrumb-row a:hover {
  color: var(--black);
}

.product-gallery {
  display: grid;
  gap: 16px;
}

.main-product-image {
  overflow: hidden;
  height: min(68vw, 620px);
  min-height: 420px;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease, transform-origin 0.1s ease;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.thumb-row button {
  overflow: hidden;
  min-height: 96px;
  padding: 0;
  color: var(--black);
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
}

.thumb-row button.active {
  border-color: var(--primary);
}

.thumb-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sticky-cart-panel {
  position: sticky;
  top: 106px;
  padding: clamp(26px, 4vw, 42px);
}

.sticky-cart-panel h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.detail-desc {
  color: var(--muted);
  font-size: 1.02rem;
}

.detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
}

.detail-price strong {
  font-size: 1.75rem;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.quantity-row>span {
  font-weight: 900;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 44px 60px 44px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

.quantity-control button,
.quantity-control input {
  height: 44px;
  color: var(--black);
  background: var(--white);
  border: 0;
  text-align: center;
  font-weight: 900;
}

.quantity-control button {
  background: var(--primary);
}

.wishlist-wide {
  width: 100%;
  min-height: 48px;
  margin-top: 12px;
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  font-weight: 900;
}

.wishlist-wide.is-active {
  background: var(--black);
  color: var(--white);
}

.service-list {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 20px 0 0;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  list-style: none;
}

.service-list li::before {
  content: "+ ";
  color: var(--black);
  font-weight: 900;
}

.tabs-section {
  padding-top: 40px;
}

.premium-tabs {
  gap: 8px;
  border: 0;
}

.premium-tabs .nav-link {
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
  border-radius: 6px;
  font-weight: 900;
}

.premium-tabs .nav-link.active {
  color: var(--black);
  background: var(--primary);
  border-color: var(--primary);
}

.premium-tab-content {
  margin-top: 16px;
  padding: clamp(24px, 4vw, 42px);
}

.premium-tab-content p {
  color: var(--muted);
  max-width: 860px;
}

.related-section {
  background: var(--soft);
}

.related-swiper {
  padding: 6px 4px 48px;
}

.related-swiper .swiper-slide {
  height: auto;
}

.contact-section {
  background: var(--soft);
}

.contact-card {
  padding: 24px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--black);
  background: var(--primary);
  border-radius: 50%;
  font-weight: 1000;
}

.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.contact-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-card a:hover {
  color: var(--primary);
}

.whatsapp-contact {
  width: 100%;
  margin-top: 4px;
}

.contact-form {
  padding: clamp(28px, 5vw, 56px);
}

.contact-form textarea {
  resize: vertical;
}

.map-section {
  padding: 0 0 clamp(74px, 8vw, 128px);
  background: var(--soft);
}

.map-frame {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.cart-section {
  background: var(--soft);
}

.cart-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.cart-heading h2,
.related-cart-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.cart-items-panel,
.order-summary {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
}

.cart-items-panel {
  padding: clamp(20px, 3vw, 30px);
}

.cart-panel-top,
.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-panel-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-panel-top h3,
.order-summary h3,
.cart-empty h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.cart-panel-top span {
  color: var(--muted);
  font-weight: 900;
}

.cart-empty {
  padding: clamp(28px, 5vw, 56px);
  margin-top: 20px;
  color: var(--black);
  background:
    linear-gradient(135deg, rgba(236, 232, 97, 0.28), rgba(255, 255, 255, 0.82)),
    var(--white);
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
}

.cart-empty p {
  max-width: 520px;
  color: var(--muted);
  margin: 12px 0 22px;
}

.cart-items-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 132px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
}

.cart-item-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: var(--radius);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cart-item:hover .cart-item-media img {
  transform: scale(1.08);
}

.cart-item-info h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.cart-item-info p {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-item-controls {
  display: grid;
  justify-items: end;
  gap: 12px;
  min-width: 160px;
}

.cart-item-controls strong {
  font-size: 1.2rem;
  font-weight: 1000;
}

.cart-qty-control {
  grid-template-columns: 38px 52px 38px;
}

.cart-remove,
.cart-clear {
  color: var(--black);
  background: transparent;
  border: 0;
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-remove:hover,
.cart-clear:hover {
  color: #9b1c1c;
}

.cart-clear {
  margin-top: 18px;
}

.order-summary {
  position: sticky;
  top: 106px;
  padding: clamp(24px, 3vw, 34px);
}

.order-summary h3 {
  margin: 16px 0 22px;
}

.summary-line {
  padding: 14px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-line strong {
  color: var(--black);
}

.summary-total {
  padding: 20px 0;
  color: var(--black);
  font-size: 1.05rem;
  font-weight: 1000;
}

.summary-total strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.coupon-box {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.coupon-box label {
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coupon-box div {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
}

.coupon-box input,
.coupon-box button {
  min-height: 46px;
  border: 0;
}

.coupon-box input {
  min-width: 0;
  padding: 0 12px;
}

.coupon-box button {
  color: var(--black);
  background: var(--primary);
  padding: 0 16px;
  font-weight: 1000;
}

.coupon-box small {
  color: var(--muted);
}

.related-cart-heading {
  margin-top: clamp(54px, 7vw, 90px);
}

.site-footer {
  color: var(--white);
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 70px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: end;
  padding-bottom: 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-top p,
.footer-links p {
  color: rgba(255, 255, 255, 0.67);
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.social-row a:hover {
  color: var(--black);
  background: var(--primary);
  transform: translateY(-3px);
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form label {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.newsletter-control {
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.newsletter-control input,
.newsletter-control button {
  min-height: 54px;
  border: 0;
}

.newsletter-control input {
  min-width: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 16px;
}

.newsletter-control button {
  color: var(--black);
  background: var(--primary);
  padding: 0 18px;
  font-weight: 1000;
}

.footer-links h3 {
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-links a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1050;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: #20b955;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(32, 185, 85, 0.34);
  animation: whatsappPulse 1.9s ease infinite;
}

.whatsapp-float svg {
  width: 30px;
  fill: currentColor;
}

.mobile-cart-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1040;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--black);
  background: var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 1000;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  backdrop-filter: blur(18px);
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.search-box {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 60px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.search-box input {
  width: 100%;
  min-height: 70px;
  margin: 18px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.24);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  outline: none;
}

.search-close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.premium-toast {
  color: var(--black);
  background: var(--primary);
  border: 0;
  border-radius: 6px;
  font-weight: 900;
}

.quick-view-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quick-view-img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quick-view-body {
  padding: clamp(24px, 4vw, 42px);
}

@keyframes pulseMark {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

@keyframes dropdownIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes floatPiece {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-16deg);
  }

  50% {
    transform: translate3d(8px, -18px, 0) rotate(-6deg);
  }
}

@keyframes drift {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(28px, -18px, 0) rotate(16deg);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 185, 85, 0.42);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(32, 185, 85, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32, 185, 85, 0);
  }
}

@media (min-width: 1200px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 1199.98px) {
  .premium-navbar {
    min-height: 76px;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(18px);
  }

  .hero-content {
    padding-top: 100px;
  }
}

@media (max-width: 991.98px) {

  .split-heading,
  .shop-toolbar,
  .footer-top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split-heading,
  .shop-toolbar {
    display: grid;
  }

  .timeline {
    grid-template-columns: 1fr 1fr;
  }

  .timeline::before {
    display: none;
  }

  .masonry-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack img {
    width: 100%;
    height: 460px;
  }

  .stack-card {
    right: 20px;
  }

  .sticky-cart-panel {
    position: static;
  }

  .order-summary {
    position: static;
  }

  .footer-top {
    display: grid;
  }
}

@media (max-width: 767.98px) {
  .brand-emblem {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 0.92rem;
  }

  .brand-text strong {
    font-size: 0.76rem;
  }

  .brand-text small {
    font-size: 0.66rem;
  }

  .hero-section,
  .hero-swiper,
  .hero-slide {
    min-height: 92svh;
  }

  .hero-content {
    padding-top: 80px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.4rem);
  }

  .hero-actions {
    display: grid;
  }

  .scroll-cue,
  .floating-spice,
  .leaf {
    display: none;
  }

  .section-pad {
    padding: 66px 0;
  }

  .category-card {
    min-height: 220px;
  }

  .product-media {
    height: 240px;
  }

  .combo-banner,
  .cinematic-parallax {
    min-height: 620px;
  }

  .combo-panel {
    margin: 0 4px;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
  }

  .masonry-gallery {
    grid-auto-rows: 150px;
    grid-template-columns: 1fr;
  }

  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .page-hero {
    min-height: 58svh;
    padding-top: 116px;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .prep-grid {
    grid-template-columns: 1fr;
  }

  .prep-grid img:first-child {
    grid-row: auto;
  }

  .main-product-image {
    height: 420px;
    min-height: 360px;
  }

  .thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-tabs {
    display: grid;
  }

  .premium-tabs .nav-link {
    width: 100%;
  }

  .cart-heading {
    display: grid;
    align-items: start;
  }

  .cart-item {
    grid-template-columns: 104px 1fr;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    justify-items: start;
    align-items: center;
    min-width: 0;
  }

  .newsletter-control {
    grid-template-columns: 1fr;
  }

  .newsletter-control button {
    min-height: 48px;
  }

  .footer-bottom {
    padding-bottom: 72px;
  }

  .whatsapp-float {
    right: 22px;
    bottom: 86px;
  }

  .mobile-cart-bar {
    display: flex;
  }
}

@media (max-width: 420px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .premium-btn,
  .filter-reset,
  .filter-drawer-btn,
  .whatsapp-contact {
    width: 100%;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .details-link {
    min-height: 42px;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-media {
    aspect-ratio: 4 / 3;
  }

  .cart-item-controls {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .cart-item-controls strong {
    text-align: left;
  }

  .cart-qty-control {
    width: 100%;
    grid-template-columns: 44px 1fr 44px;
  }

  .coupon-box div {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.checkout-section {
  background: var(--soft);
}

.checkout-card {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(16px);
  height: 100%;
}

.checkout-card h3 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.checkout-grid {
  display: grid;
  gap: 18px;
}

.checkout-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.checkout-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  background: #fff;
}

textarea.checkout-input {
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
}

.checkout-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 .2rem rgba(236, 232, 97, .25);
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
}

.payment-option+.payment-option {
  margin-top: 12px;
}

.payment-option label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  cursor: pointer;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-summary-item:last-child {
  border-bottom: 0;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.checkout-total strong {
  font-size: 2rem;
  font-family: var(--font-display);
}

.secure-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: .9rem;
}

@media(max-width:768px) {
  .checkout-grid.two {
    grid-template-columns: 1fr;
  }
}


/* cart page   */

.customer-sidebar {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
  position: sticky;
  top: 100px;
}

.customer-sidebar h3 {
  margin-bottom: 25px;
  font-family: Georgia, serif;
}

.customer-sidebar a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #111;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-bottom: 1px solid #f0f0f0;
}

.customer-sidebar a.active:after {
  content: '';
  width: 48px;
  height: 3px;
  background: #f6ea23;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.customer-sidebar a.active {
  position: relative;
}

.logout-btn {
  width: 100%;
  margin-top: 25px;
  border: none;
  background: #f6ea23;
  height: 52px;
  border-radius: 12px;
  font-weight: 900;
}

.wishlist-form {
  margin: 0;
  display: inline-block;
}

.wishlist-form button {
  cursor: pointer;
}

.wishlist-wide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 56px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
}

.wishlist-wide:hover {
  background: #f8f8f8;
}

form .wishlist-wide {
  width: 100%;
}

/* coupon css for cart page  */

.applied-coupon-box {
  background: #fff8d6;
  border: 1px solid #f6ea23;
  border-radius: 14px;
  padding: 14px;
}

.applied-coupon-box strong {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.applied-coupon-box small {
  display: block;
  color: #555;
  margin-bottom: 10px;
}

.applied-coupon-box button {
  border: 0;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 900;
}

.site-logo {
  max-height: 52px;
  width: auto;
  object-fit: contain;
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  background: #fff;
  width: min(620px, 92%);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.search-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: 0;
  background: none;
  font-size: 32px;
  line-height: 1;
}

.search-box h3 {
  font-weight: 900;
  margin-bottom: 18px;
}

#productSearchInput {
  width: 100%;
  height: 54px;
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 700;
}

.search-results {
  margin-top: 18px;
}

.search-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #111;
}

.search-item strong {
  display: block;
  font-weight: 900;
}

.search-item small {
  color: #777;
}

.search-empty {
  color: #777;
  padding: 18px 0;
}