:root {
  --red: #b82125;
  --gold: #efa400;
  --ink: #29272a;
  --cream: #fff7ec;
  --muted: #746e69;
  --line: #eee9e2;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--red);
  text-transform: uppercase;
}
.section {
  padding: 78px 0;
}
.section-title {
  font: 600 38px "Montserrat", ui-sans-serif, system-ui, sans-serif;
}
.section-title.heading-center {
  text-align: center;
}
.section-sub {
  color: #8c8580;
  text-align: center;
  font-size: 11px;
  margin: 16px 0 34px;
}
.cream {
  background: var(--cream);
}
header {
  height: 84px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 1px 5px #0000000b;
}
.brand img {
  width: 150px;
}
.nav {
  display: flex;
  gap: 29px;
  align-items: center;
}
.nav a {
  font-size: 16px;
    font-weight: 600;
    font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
    text-transform: uppercase;
}
.nav a:hover {
  color: var(--red);
}
.icons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.icon-btn {
  border: 0;
  background: none;
  color: #333;
  cursor: pointer;
  padding: 3px;
  display: grid;
  place-items: center;
  position: relative;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 9999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.cart-badge[hidden] {
  display: none;
}
.icon-btn svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}
.menu-toggle {
  display: none;
}
.hero {
  height: 86vh;
  position: relative;
  overflow: hidden;
  background: #f7f0e6;
}
.slides,
.slide {
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center;
}
/* .slide:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.82) 35%,
    rgba(255, 255, 255, 0.1) 66%,
    rgba(255, 255, 255, 0) 100%
  );
} */
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 78px;
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.hero h1 {
  font:
    800 45px/1.25 "Montserrat",
    ui-sans-serif, system-ui, sans-serif;
  max-width: 370px;
}
.hero h1 span {
  color: var(--gold);
}
.hero .btn {
  margin-top: 24px;
}
.btn {
  border: 0;
  border-radius: 100px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 10px 47px;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
  background: #981518;
}
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
}
.search-modal[hidden] {
  display: none;
}
.search-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 39, 42, 0.55);
  animation: search-fade 0.18s ease;
}
.search-modal__panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 90px auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: search-drop 0.2s ease;
}
@keyframes search-fade {
  from {
    opacity: 0;
  }
}
@keyframes search-drop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
}
.search-modal__form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.search-modal__form input {
  flex: 1;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
}
.search-modal__close {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 2px;
}
.search-modal__close:hover {
  color: var(--red);
}
.search-modal__results {
  max-height: 60vh;
  overflow-y: auto;
}
.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}
.search-result:last-child {
  border-bottom: 0;
}
.search-result:hover {
  background: var(--cream);
}
.search-result img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}
.search-result__name {
  font-size: 14px;
  font-weight: 600;
}
.search-result__price {
  font-size: 12px;
  color: var(--muted);
}
.search-modal__hint,
.search-modal__empty {
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.search-modal__viewall {
  display: block;
  padding: 12px 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  border-top: 1px solid var(--line);
}
body.search-open {
  overflow: hidden;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-content.is-open {
  max-height: 1000px;
}
.accordion-chevron {
  transition: transform 0.25s ease;
}
.accordion-trigger[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
}
.gallery-zoom {
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery-image {
  transition: transform 0.2s ease;
  transform-origin: center;
}
.gallery-zoom.is-zooming .gallery-image {
  transform: scale(2);
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.gallery-nav:hover {
  background: #fff;
  color: var(--red);
}
.gallery-nav svg {
  width: 18px;
  height: 18px;
}
.gallery-nav--prev {
  left: 12px;
}
.gallery-nav--next {
  right: 12px;
}
.gallery-zoom-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.gallery-zoom-btn:hover {
  background: #fff;
  color: var(--red);
}
.gallery-zoom-btn svg {
  width: 18px;
  height: 18px;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 16, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 40px;
}
.gallery-lightbox.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.gallery-lightbox__close svg {
  width: 20px;
  height: 20px;
}
.gallery-lightbox .gallery-nav {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.gallery-lightbox .gallery-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media (max-width: 640px) {
  .gallery-nav,
  .gallery-zoom-btn {
    width: 32px;
    height: 32px;
  }
}
.marquee-strip {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee-content span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-content span:not(.marquee-dot) {
  padding: 0 20px;
}
.marquee-dot {
  color: var(--gold);
  font-size: 10px;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  visibility: hidden;
  pointer-events: none;
}
.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}
.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(41, 39, 42, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}
.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 100%);
  background: #fff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}
.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__header h2 {
  font:
    700 18px "Montserrat",
    ui-sans-serif, system-ui, sans-serif;
}
.cart-drawer__close {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 2px;
}
.cart-drawer__close:hover {
  color: var(--red);
}
.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
}
.cart-drawer__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer__item img,
.cart-drawer__item-noimg {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}
.cart-drawer__item-body {
  flex: 1;
  min-width: 0;
}
.cart-drawer__item-name {
  font-size: 13px;
  font-weight: 600;
}
.cart-drawer__item-variant,
.cart-drawer__item-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.cart-drawer__item-remove {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}
.cart-drawer__item-remove:hover {
  color: var(--red);
}
.cart-drawer__empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
.cart-drawer__footer {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}
.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}
.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cart-drawer__actions a {
  text-align: center;
  border-radius: 100px;
  padding: 11px;
  font-size: 12px;
  font-weight: 700;
}
.cart-drawer__actions .cart-drawer__view {
  border: 1px solid var(--line);
  color: var(--ink);
}
.cart-drawer__actions .cart-drawer__checkout {
  background: var(--red);
  color: #fff;
}
body.cart-drawer-open {
  overflow: hidden;
}
.slider-dots {
  position: absolute;
  z-index: 5;
  right: max(26px, calc((100vw - 1160px) / 2 + 18px));
  top: 50%;
  display: grid;
  gap: 9px;
  transform: translateY(-50%);
}
.slider-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 2px solid #fff;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}
.slider-dots button.active {
  background: #fff;
}
.quick-links {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 35%;
  background: var(--gold);
  border-radius: 0 9px 9px 0;
  padding: 10px 7px;
  display: grid;
  gap: 8px;
}
.quick-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid #fff9;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}
.category {
  text-align: center;
}
.category img {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  padding: 3px;
  border: 2px solid var(--gold);
  margin: 0 auto 8px;
  box-shadow: 0 3px 8px #0002;
}
.category:nth-child(2) img {
  border-color: #c52d29;
}
.category:nth-child(3) img {
  border-color: #407c54;
}
.category:nth-child(4) img {
  border-color: #8a6230;
}
.category:nth-child(5) img {
  border-color: #744d3b;
}
.category h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 10px;
}
.category p {
  margin-top: 7px;
  font-size: 13px;
  color: #8e8883;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 3px 9px #0000000c;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.product-img {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.product-img img {
  height: 100%;
  width: 100%;
  transition: transform 0.35s ease;
}
.product-content {
  padding: 15px 12px 10px 12px;
}

.product-content:not(:has(.variant-chips)) form {
  margin-top: 48px;
}

.product h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rating {
  font-size: 7px;
  color: #89827c;
}
.price {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  margin: 6px 0;
}
.price del {
  font-size: 7px;
  color: #888;
  font-weight: 400;
  margin-left: 3px;
}
.offer-tag {
  display: inline-block;
  font-size: 7px;
  font-weight: 600;
  color: #1c6b4a;
  background: #e9f6ef;
  border: 1px solid #bfe3d0;
  border-radius: 999px;
  padding: 2px 6px;
  margin: 0 0 6px;
}
.product .btn {
  width: 100%;
  font-size: 15px;
  padding: 7px;
}
.variant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
  margin-bottom: 15px;
}
.variant-chip {
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  font-size: 8px;
  font-weight: 600;
  padding: 3px 8px;
  cursor: pointer;
  color: var(--ink);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.variant-chip.active {
  border-color: var(--red);
  background: var(--cream);
  color: var(--red);
}
.variant-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.feature {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 3px 12px #00000009;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.feature-icon {
  color: #de9698;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff0f0;
  margin: 0 auto 7px;
  display: grid;
  place-items: center;
  font-size: 36px;
}
.feature-icon svg {
  height: 13px;
  width: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
}
.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
  margin-top: 10px;
  font-weight: 600;
}
.feature p {
  font-size: 12px;
  color: #88817b;
  line-height: 1.35;
}
.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}
.story-products {
  height: 270px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
}
.story-productss img {
  border-radius: 10px;
}
.story-products img {
  width: 100%;
  height: 126px;
  object-fit: contain;
}
/* .story h2 {
  font:
    700 25px/1.2 "Playfair Display",
    serif;
  margin: 8px 0;
} */
.story > div > p:not(.eyebrow) {
  font-size: 10px;
  line-height: 1.55;
  color: #857d77;
  max-width: 450px;
}
.milestones {
  margin: 14px 0;
  display: grid;
  gap: 6px;
}
.milestone {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  margin-bottom: 10px;
}
.year {
  border-radius: 20px;
  min-width: 31px;
  text-align: center;
  background: var(--gold);
  padding: 4px;
  font-size: 15px;
  min-width: 75px;
}
.outline-btn {
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
}
.outline-btn:hover {
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--line);
  transition: all 0.3s ease;
  transform: translateY(-3px);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.faq-visual {
  background: var(--cream);
  border-radius: 28px;
}
.faq-visual img {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.12));
    border-radius: 10px;
}

.faq-list {
  margin-top: 26px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child {
  border-top: 1px solid var(--line);
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}
.faq-trigger:hover {
  color: var(--red);
}
.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--red);
  transition: transform 0.25s ease;
}
.faq-icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq-item .accordion-inner {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}
.faq-item .accordion-inner a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
}
.process {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.process-item {
  width: 64px;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
}
.process-item:hover .process-num {
  background: var(--gold);
}

.process-num {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 500;
}
.process-line {
  height: 2px;
  width: 20px;
  background: var(--gold);
  margin-top: 15px;
}
section.feature-collection {
  background: #fff7ec;
}
.collections {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.collection {
  /* height: 157px; */
  border: 1px solid var(--line);
  border-radius: 7px;
  /* overflow: hidden; */
  position: relative;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.collection-data {
  padding: 15px;
}
.collection img {
  width: 100%;
  /* height: 220px; */
  border-radius: 5px 5px 0 0;
  transition: transform 0.35s ease;
}
.collection h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}
.collection a {
  font-size: 14px;
  color: var(--red);
  font-weight: 700;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.review {
  background: #fff0e2;
  border-radius: 7px;
  padding: 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.person {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 8px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.person h3 {
  font-size: 18px;
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-top: 2px;
}
.review > p {
  font-size: 13px;
  line-height: 1.35;
}
.verified {
  display: inline-block;
  margin-top: 7px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #337148;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.newsletter-wrap {
  padding: 55px 0;
}
.newsletter {
  background: linear-gradient(105deg, #751516, #b65d0e);
  border-radius: 8px;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  box-shadow: 0 6px 15px #0002;
  padding: 50px 10px;
}
.newsletter h2 {
  font:
    700 32px "Montserrat",
    ui-sans-serif, system-ui, sans-serif;
}
.newsletter p {
  font-size: 8px;
  margin: 20px auto 20px;
}
.subscribe {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.subscribe input {
  height: 55px;
  width: 65%;
  border: 0;
  border-radius: 18px;
  padding: 0 10px;
  font-size: 15px;
}
.subscribe button {
  border: 0;
  border-radius: 18px;
  padding: 0 14px;
  background: var(--gold);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}
.subscribe button:disabled {
  opacity: 0.7;
  cursor: default;
}
.newsletter-message {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  min-height: 1.2em;
}
.newsletter-message.is-error {
  color: #ffd9d9;
}
footer {
  background: #1c1c1c;
  color: #eee;
  padding: 35px 20px 15px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 33px;
  padding-bottom: 23px;
  border-bottom: 1px solid #ffffff38;
}
.footer-brand img {
  width: 145px;
  object-position: left;
}
.footer-brand p {
  line-height: 1.35;
  max-width: 330px;
  margin-top: 13px;
  font-size: 15px;
}
.footer-grid h3 {
  font-size: 18px;
  margin: 4px 0 11px;
}
.footer-grid ul {
  list-style: none;
}
.footer-grid li {
  font-size: 15px;
  color: #ddd;
  margin-bottom: 7px;
}
.footer-base {
  font-size: 7px;
  color: #aaa;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
}
.socials {
  display: flex;
  gap: 6px;
}
.socials a {
  background: #fff;
  color: #222;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
@media (hover: hover) {
  .category img {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }
  .category:hover img {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 10px 18px #0003;
  }
  .product:hover,
  .feature:hover,
  .collection:hover,
  .review:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px #0000001c;
  }
  .product:hover .product-img img,
  .collection:hover img {
    transform: scale(1.06);
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, 560px);
  }
  header {
    height: 62px;
    padding: 0 16px;
  }
  .brand img {
    width: 106px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    box-shadow: 0 8px 15px #0001;
    flex-direction: column;
    gap: 17px;
  }
  .nav.open {
    display: flex;
  }
  .icons {
    gap: 8px;
  }
  /* .icons .icon-btn:not(.menu-toggle):not(:first-child) {
    display: none;
  } */
   .collections h3 {
    font-size: 16px;
  }
  footer {
    padding-left: 6px;
    padding-right: 6px;
  }
  .menu-toggle {
    display: grid;
  }
  .hero {
    height: 220px;
  }
  .hero-copy {
    width: calc(100% - 32px);
    padding-top: 65px;
  }
  .hero h1 {
    font-size: 34px;
    max-width: 300px;
  }
  .slide img {
    object-position: 63% center;
  }
  .slide:after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.8) 61%,
      rgba(255, 255, 255, 0.15) 100%
    );
  }
  .slider-dots {
    right: 17px;
  }
  .quick-links {
    display: none;
  }
  .section {
    padding: 52px 0;
  }
  .section-title {
    font-size: 25px;
  }
  .section-sub {
    margin-bottom: 25px;
  }
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 8px;
  }
  .category img {
    width: 61px;
    height: 61px;
  }
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .story-products {
    height: 170px;
    margin: auto;
    width: min(340px, 100%);
  }
  .story-products img {
    height: 82px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .process-item {
    width: auto;
  }
  .process-line {
    display: none;
  }
  .collections {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .newsletter-wrap {
    padding-top: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-base {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .subscribe input {
    width: 145px;
  }
}
/* Larger, readable typography throughout the content sections. */
.section-title {
  font-size: 36px;
}
.section-sub {
  font-size: 15px;
}
.hero .btn {
  font-size: 15px;
  padding: 12px 50px;
}
.product h3 {
  font-size: 18px;
}
.price {
  font-size: 18px;
  margin: 9px 0;
}
.price del {
  font-size: 12px;
}
.offer-tag {
  font-size: 11px;
  padding: 3px 9px;
}
.product .btn {
  padding: 11px;
}
.variant-chip {
  font-size: 11px;
  padding: 4px 10px;
}
/* .story h2 {
  font-size: 31px;
} */
.story > div > p:not(.eyebrow) {
  font-size: 15px;
}
.eyebrow {
  font-size: 12px;
}
.newsletter p {
  font-size: 16px;
}
.footer-grid li,
.footer-base {
  font-size: 15px;
}

.register-btn-login  {
  margin-top: 20px;
  margin-bottom: 20px;
}

.register-btn-login a {
  font-size: 14px;
  padding: 10px 18px;
  background: var(--red);
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-left: 20px;
}

@media (min-width: 1024px) {
  .shop-category-scroll {
    scrollbar-width: thin;
  }

  .shop-category-scroll::-webkit-scrollbar {
    width: 4px;
  }

  .shop-category-scroll::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 9999px;
  }

  .shop-category-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
}

@media (max-width: 760px) {
  .section-title {
    font-size: 30px;
  }
  .section-sub {
    font-size: 13px;
  }
  .price {
    font-size: 15px;
  }
  .product .btn {
    font-size: 12px;
  }
  .story > div > p:not(.eyebrow) {
    font-size: 14px;
  }
}

/* Tablet and phone navigation: drawer enters from the left. */
.nav-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgb(0 0 0 / 45%);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.nav-drawer-head {
  display: none;
}

  .whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    right: 25px;
    bottom: 100px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  }

  .whatsapp-icon {
    font-size: 32px;
    line-height: 1;
  }

  aside form.relative {
    display: none;
  }

  @media (max-width: 600px) {
    .whatsapp-float {
      width: 52px;
      height: 52px;
      right: 18px;
      bottom: 18px;
    }

    .whatsapp-icon {
      font-size: 28px;
    }
  }


@media (max-width: 960px) {
  header {
    position: sticky;
    top: 0;
    z-index: 60;
  }
  .nav {
    display: flex;
    position: fixed;
    z-index: 50;
    inset: 0 auto 0 0;
    width: min(82vw, 350px);
    min-height: 100dvh;
    padding: 24px 24px 32px;
    background: #fff;
    box-shadow: 8px 0 28px #0002;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    transform: translateX(-105%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      visibility 0.3s ease;
  }
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .nav-drawer-head img {
    width: 120px;
  }
  .nav-drawer-close {
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }
  .nav a {
    width: 100%;
    padding: 12px 0;
    /* border-bottom: 1px solid var(--line); */
  }
  .nav.open {
    display: flex;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }
  .menu-toggle {
    display: grid;
  }
  body.menu-open {
    overflow: hidden;
  }
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .products,
  .collections {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .container,
  .hero-copy {
    width: calc(100% - 28px);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features {
    grid-template-columns: 1fr;
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .subscribe {
    flex-direction: column;
    align-items: stretch;
    padding: 0 18px;
  }
  .subscribe input,
  .subscribe button {
    width: 100%;
  }
  .subscribe button {
    height: 48px;
  }
  .hero {
    height: 145px;
  }
}
