@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap");

.header_cart {
  position: fixed;
  right: 90px;
  top: 15px;
  width: 50px;
  height: 50px;
  z-index: 10;
}

.header_cart a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #18332f;
  border: 2px solid #ffffff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

.header_cart a:hover {
  color: #ffd571;
}

.header_cart .cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 10px;
  background: #ffd571;
  color: #18332f;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-cart-btn,
.store-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  background-color: #c79a3b;
  color: #ffffff;
  border: 1px solid #c79a3b;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.add-cart-btn:hover,
.store-btn:hover {
  background: transparent;
  color: #18332f;
  text-decoration: none;
}

.add-cart-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-price {
  margin-top: 6px;
  color: #111;
  font-weight: 600;
}

.product-price.has-discount {
  display: grid;
  gap: 6px;
  align-items: start;
  justify-items: start;
}

.product-price .price-was,
.cart-line-price .price-was {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8d877c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
}

.product-price .price-was-label {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .12em;
}

.product-price .compare-price,
.cart-line-price .compare-price {
  position: relative;
  color: #9a9488;
  font-weight: 600;
  text-decoration: none;
}

.product-price .compare-price::after,
.cart-line-price .compare-price::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #b42318;
  transform: translateY(-50%) rotate(-8deg);
  opacity: .9;
}

.product-price .price-now {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-price .sale-price,
.cart-line-price .sale-price {
  color: #0f2924;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}

.product-price.has-discount .sale-price {
  color: #8a5a12;
}

.discount-badge,
.sale-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, #b42318 0%, #8f1a12 100%);
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(180, 35, 24, .22);
}

.cart-line-price.has-discount {
  display: grid;
  gap: 4px;
}

.cart-line-price .sale-price {
  font-size: 18px;
}

.store-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  max-width: min(340px, calc(100vw - 32px));
  padding: 14px 18px 14px 16px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 189, 118, 0.18), transparent 42%),
    #102c25;
  border: 1px solid rgba(217, 189, 118, 0.35);
  border-left: 4px solid #d9bd76;
  box-shadow: 0 14px 36px rgba(10, 28, 22, 0.28);
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  pointer-events: none;
  opacity: 0;
  transform: translateX(120%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.store-toast.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 560px) {
  .store-toast {
    top: 16px;
    right: 12px;
    left: 12px;
    max-width: none;
    transform: translateY(-120%);
  }

  .store-toast.is-visible {
    transform: translateY(0);
  }
}

.store-page {
  padding: 50px 0 80px;
}

.product-detail .img-box {
  aspect-ratio: 1 / 1;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeae1;
  overflow: hidden;
}

.product-detail .img-box img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-detail .qty-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.product-detail input[type="number"],
.cart-table input[type="number"],
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 8px 12px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 14px 8px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.cart-table img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-empty,
.store-alert {
  text-align: center;
  padding: 40px 16px;
}

.cart-empty--state {
  max-width: 420px;
  margin: 28px auto 48px;
  padding: 48px 24px 40px;
  border: 1px solid #e4dfd4;
  background:
    linear-gradient(180deg, #fbf9f4 0%, #fff 55%);
}

.cart-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #102c25;
  border: 1px solid #d9d3c6;
  background: #fff;
}

.cart-empty__icon svg {
  width: 28px;
  height: 28px;
}

.cart-empty--state h2 {
  margin: 0 0 10px;
  color: #152922;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.2;
}

.cart-empty--state p {
  margin: 0 auto 22px;
  max-width: 32ch;
  color: #5c5c5c;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cart-empty--state .store-btn {
  margin-top: 0;
  padding: 12px 22px;
  background: #102c25;
  border-color: #102c25;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-empty--state .store-btn:hover {
  background: #0a1f1a;
  border-color: #0a1f1a;
  color: #fff;
}

.cart-empty__links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  color: #8a8a8a;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 13px;
}

.cart-empty__links a {
  color: #6b4f1d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-empty__links a:hover {
  color: #102c25;
}

.checkout-form label {
  font-weight: 600;
  margin-top: 12px;
  display: block;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
}

.checkout-form input[type="checkbox"] {
  width: auto;
  margin-right: 7px;
}

.checkout-summary {
  background: #faf7f2;
  border-radius: 8px;
  padding: 24px;
}

.checkout-summary__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.checkout-summary__header h3 {
  margin: 0;
  color: #111;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.checkout-edit-order {
  color: #111;
  border-bottom: 1px solid #b79a5d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.checkout-edit-order:hover {
  color: #8a5a12;
  border-bottom-color: #8a5a12;
  text-decoration: none;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e4dfd4;
}

.checkout-line:last-of-type {
  border-bottom: 0;
  margin-bottom: 4px;
}

.checkout-line img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  background: #eeeae1;
}

.checkout-line__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.checkout-line__name {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.checkout-line__meta {
  color: #7a7468;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.checkout-line__price {
  color: #111;
  font-weight: 700;
  white-space: nowrap;
}

.cod-badge {
  display: inline-block;
  background: #ffd571;
  color: #3c2946;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.filter-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.filter-row a,
.filter-row button {
  border: 1px solid #3c2946;
  background: #fff;
  color: #3c2946;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
}

.filter-row a.active,
.filter-row button.active {
  background: #18332f;
  color: #fff;
}

.search-box {
  max-width: 280px;
  margin: 0 auto 10px;
}

.search-box input {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 16px;
}

:root {
  --aham-green: #18332f;
  --aham-green-light: #274b45;
  --aham-gold: #c79a3b;
  --aham-cream: #f7f3e9;
  --aham-ink: #17201e;
}

.product-nav {
  display: flex;
  gap: 22px;
  margin-right: 20px;
}

.product-nav a {
  color: #fff;
  font-weight: 600;
}

.collection-section {
  padding: 72px 0;
  background: var(--aham-cream);
}

.collection-card {
  min-height: 300px;
  padding: 42px;
  color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, rgba(24,51,47,.98), rgba(39,75,69,.82));
  box-shadow: 0 18px 45px rgba(24, 51, 47, .16);
}

.collection-card.premium {
  background: linear-gradient(135deg, #332719, #8b6b2d);
}

.collection-card h2 {
  color: #fff;
  font-family: Georgia, serif;
  font-size: 38px;
}

.collection-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.collection-links a {
  color: #fff;
  border-bottom: 1px solid var(--aham-gold);
  padding: 5px 0;
}

.product-labels,
.card-labels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tier-badge,
.type-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: capitalize;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.tier-badge {
  color: var(--aham-green);
  background: #e7efed;
}

.tier-badge.premium {
  color: #604612;
  background: #f7e6ba;
}

.type-badge {
  color: #4a4a4a;
  background: #f1f1f1;
}

.sale-badge {
  color: #6b4b12;
  background: #f4e4bc;
}

.product-card-copy {
  padding: 0;
}

.product-breadcrumb {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  color: #69716f;
}

.product-breadcrumb a {
  color: var(--aham-green);
}

.product-detail .product-copy h1 {
  color: var(--aham-ink);
  font-family: Georgia, serif;
  font-size: 44px;
}

.product-detail .product-price {
  color: var(--aham-green);
  font-size: 28px;
}

.product-sku {
  color: #77807d;
  font-size: 13px;
}

.product-lead {
  font-size: 17px;
  line-height: 1.75;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-thumbnails button {
  width: 70px;
  height: 70px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid #d8dedc;
  border-radius: 0;
  background: #eeeae1;
  display: block;
  overflow: hidden;
}

.product-thumbnails button.active {
  border: 2px solid var(--aham-gold);
}

.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trust-strip {
  display: grid;
  gap: 8px;
  margin: 22px 0;
  padding: 18px;
  background: var(--aham-cream);
  border-left: 3px solid var(--aham-gold);
}

.trust-strip span::before {
  content: "✓";
  color: var(--aham-green);
  font-weight: 700;
  margin-right: 8px;
}

.product-information {
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid #e4e8e6;
}

.product-information h2,
.product-information h3 {
  font-family: Georgia, serif;
  color: var(--aham-green);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  background: #dfe4e2;
  border: 1px solid #dfe4e2;
}

.spec-grid > div {
  background: #fff;
  padding: 16px;
}

.spec-grid dt {
  color: #7a827f;
  font-size: 12px;
  text-transform: capitalize;
}

.spec-grid dd {
  margin: 4px 0 0;
  color: var(--aham-ink);
}

.product-care {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.filter-group {
  margin-bottom: 15px;
  text-align: center;
}

.filter-group strong {
  display: block;
  margin-bottom: 7px;
  color: var(--aham-green);
}

@media (max-width: 767px) {
  .header_cart {
    right: 80px;
  }
  .cart-table thead {
    display: none;
  }
  .product-nav {
    display: none;
  }
  .spec-grid,
  .product-care {
    grid-template-columns: 1fr;
  }
  .product-detail .product-copy h1 {
    font-size: 34px;
    margin-top: 28px;
  }
}

/* Template-inspired Aham storefront */
body {
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fff;
}

h1, h2, h3, .heading_container {
  font-family: "Instrument Serif", Georgia, serif;
  text-transform: none;
}

.announcement-bar {
  min-height: 36px;
  padding: 9px 24px;
  display: flex;
  justify-content: center;
  gap: 30px;
  color: #fff;
  background: #0a0a0a;
  font-size: 11px;
  letter-spacing: .13em;
  text-align: center;
  text-transform: uppercase;
}

.announcement-brand { opacity: .55; }
.announcement-highlight { color: #d8ba73; font-weight: 700; }

.header_section.aham-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255,255,255,.96) !important;
  border-bottom: 1px solid #efefe9;
  backdrop-filter: blur(16px);
}

.aham-nav {
  width: min(1360px, calc(100% - 48px));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.aham-brand {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.aham-brand .brand-mark,
.aham-brand .brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1;
}

.aham-brand .brand-mark {
  color: #111;
  font-weight: 700;
}

.aham-brand .brand-sub {
  color: #c6a664;
}

.innerpage_header .aham-brand .brand-mark,
.header_section.innerpage_header .aham-brand .brand-mark {
  color: #fff;
}

.innerpage_header .aham-brand .brand-sub {
  color: #d8ba73;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.3vw, 38px);
  flex: 1;
}

.desktop-nav a,
.nav-actions a,
.mobile-menu-button {
  color: #161616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  text-decoration: none;
}

.desktop-nav a:hover,
.nav-actions a:hover { color: #a47d2b; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid #171717;
  border-radius: 999px;
}

.nav-cart .nav-cart-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.nav-cart .cart-count {
  margin-left: 2px;
  color: #9b741f;
}

.mobile-menu-button {
  display: none;
  border: 0;
  background: transparent;
}

.mobile-nav {
  padding: 8px 24px 22px;
  border-top: 1px solid #eee;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: #111;
  border-bottom: 1px solid #eee;
}

.header_cart { display: none !important; }

.slider_section.home-promo-slider {
  min-height: 0;
  display: block;
  padding: 0;
  color: #fff;
  background: #051410;
  flex: none;
  align-items: stretch;
}

.home-promo-slider .carousel {
  height: 476px;
}

.home-promo-slider .carousel-inner,
.home-promo-slider .carousel-item {
  height: 100%;
}

.home-promo-slide {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  color: #fff;
  background-color: #051410;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-promo-slide--offers {
  background-image:
    linear-gradient(90deg, rgba(5,20,16,.92) 0%, rgba(5,20,16,.62) 42%, rgba(5,20,16,.22) 72%, rgba(5,20,16,.12) 100%),
    url("../images/aham-slider-offers-hero.png");
  background-size: cover, auto 100%;
  background-position: center, 100% 40%;
}

.home-promo-slide--brand {
  background-image:
    linear-gradient(90deg, rgba(5,20,16,.88) 0%, rgba(5,20,16,.55) 48%, rgba(5,20,16,.18) 100%),
    url("../images/aham-aviator-classic.webp");
  background-size: cover, cover;
  background-position: center, 70% 18%;
}

.home-promo-slide--affordable {
  background-image:
    linear-gradient(90deg, rgba(5,20,16,.9) 0%, rgba(5,20,16,.55) 36%, rgba(5,20,16,.12) 58%, transparent 76%),
    url("../images/aham-affordable-collection.webp");
  background-size: cover, auto 100%;
  background-position: center, 100% 8%;
}

.home-promo-slide--premium {
  background-image:
    linear-gradient(90deg, rgba(14,12,8,.9) 0%, rgba(14,12,8,.5) 38%, rgba(14,12,8,.12) 62%, transparent 80%),
    url("../images/aham-premium-collection.webp");
  background-size: cover, auto 100%;
  background-position: center, 100% 6%;
}

.promo-offer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
}

.promo-offer-pill {
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(216,186,115,.55);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.promo-offer-pill:hover {
  color: #fff;
  background: rgba(216,186,115,.18);
  border-color: #d8ba73;
  transform: translateY(-2px);
  text-decoration: none;
}

.promo-offer-pill__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.promo-offer-pill__value {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  line-height: 1.1;
  color: #d8ba73;
}

.home-promo-slide__content {
  width: min(640px, calc(100% - 12vw));
  max-height: 100%;
  margin: 0 auto 0 max(6vw, calc((100% - 1320px) / 2 + 6vw));
  padding: 48px 0;
  overflow: hidden;
}

.home-promo-slide__content--offers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 36px 0 56px;
  overflow: visible;
}

.home-promo-slide__content--offers .home-promo-eyebrow {
  margin-bottom: 10px;
}

.home-promo-slide__content--offers h1 {
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.12;
  max-width: 16ch;
}

.home-promo-slide__content--offers .promo-offers-lead {
  max-width: 480px;
  margin: 12px 0 14px;
  font-size: 15px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.slide-discount-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 12px;
  padding: 9px 16px;
  color: #111;
  background: #d8ba73;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slide-discount-badge[hidden] {
  display: none !important;
}

.home-promo-cta {
  flex-shrink: 0;
  margin-top: 4px;
}

.home-promo-eyebrow {
  margin: 0 0 14px;
  color: #d8ba73;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-promo-slide__content h1 {
  margin: 0;
  color: #fff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: none;
}

.home-promo-slide__content > p.slide-lead {
  max-width: 520px;
  margin: 14px 0 22px;
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.7;
}

.slide-from-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  width: fit-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 8px 14px 9px;
  color: #fff;
  background: rgba(5, 20, 16, .45);
  border: 1px solid rgba(216, 186, 115, .65);
}

.slide-from-price[hidden] {
  display: none !important;
}

.slide-from-price__label {
  color: rgba(255,255,255,.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slide-from-price__value {
  color: #ffd571;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
}

.home-promo-slider .slider-link {
  display: inline-block;
  padding: 14px 28px;
  color: #111;
  background: #fff;
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.home-promo-slider .slider-link:hover {
  color: #111;
  background: #f0ebe1;
  transform: translateY(-2px);
  text-decoration: none;
}

.home-promo-slider .collection-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.home-promo-slider .collection-links a {
  color: #fff;
  border-bottom: 1px solid #d8ba73;
  padding: 6px 0;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease;
}

.home-promo-slider .collection-links a:hover {
  color: #d8ba73;
  border-bottom-color: #fff;
  text-decoration: none;
}

.home-promo-slider .carousel-control-prev,
.home-promo-slider .carousel-control-next {
  position: absolute;
  top: 50%;
  bottom: auto;
  width: 72px;
  height: 48px;
  margin: 0;
  opacity: 1;
  transform: translateY(-50%);
  background: transparent;
}

.home-promo-slider .carousel-control-prev { left: 12px; right: auto; }
.home-promo-slider .carousel-control-next { right: 12px; left: auto; }

.home-promo-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(5,20,16,.55);
  border: 1px solid rgba(255,255,255,.28);
  font-size: 22px;
  transition: background .2s ease, border-color .2s ease;
}

.home-promo-slider .carousel-control-prev:hover .home-promo-control,
.home-promo-slider .carousel-control-next:hover .home-promo-control {
  background: rgba(5,20,16,.85);
  border-color: #d8ba73;
}

.home-promo-slider .carousel-indicators {
  bottom: 28px;
  margin: 0;
  z-index: 5;
}

.home-promo-slider .carousel-indicators li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  opacity: 1;
}

.home-promo-slider .carousel-indicators li.active {
  background: #d8ba73;
}

.service-assurance {
  position: relative;
  z-index: 2;
  padding: 28px clamp(24px, 5vw, 76px) 34px;
  color: #172722;
  background:
    radial-gradient(circle at 50% 0, rgba(198,166,100,.11), transparent 40%),
    #fbfaf6;
  border-top: 1px solid rgba(198,166,100,.28);
  border-bottom: 1px solid #e6e1d6;
}

.service-assurance__grid {
  width: min(1380px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e1dbcf;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 50px rgba(24,35,31,.06);
}

.service-assurance__item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px clamp(18px, 2.3vw, 34px);
  color: #172722;
  border-right: 1px solid #e1dbcf;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.service-assurance__item:last-child { border-right: 0; }
.service-assurance__item:hover {
  color: #172722;
  background: #fff;
  transform: translateY(-2px);
}

.service-assurance__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #a37d30;
  background: #f1ecdf;
  border-radius: 50%;
}

.service-assurance__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-assurance__item div { min-width: 0; }
.service-assurance__item strong,
.service-assurance__item div > span { display: block; }
.service-assurance__item strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
}
.service-assurance__item div > span {
  color: #74746e;
  font-size: 11px;
  line-height: 1.45;
}

.collection-section {
  padding: 100px 0;
  background: #f5f3ed;
}

.collection-section .heading_container h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  text-transform: none;
}

.collection-card {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(7,28,24,.94), rgba(7,28,24,.15)),
    url("../images/aham-affordable-collection.webp") center/cover no-repeat;
}

.collection-card.premium {
  background:
    linear-gradient(90deg, rgba(14,12,8,.94), rgba(14,12,8,.12)),
    url("../images/aham-premium-collection.webp") center/cover no-repeat;
}

.collection-card > * {
  position: relative;
  z-index: 1;
  max-width: 340px;
}

.collection-card h2 { font-size: 50px; font-weight: 400; }

.shop_section {
  padding: 100px 0;
}

.shop_section .heading_container h2 {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  text-transform: none;
}

#product-grid,
#top-selling-grid {
  margin-top: 28px;
  margin-right: -12px;
  margin-left: -12px;
}

#product-grid > [class*="col-"],
#top-selling-grid > [class*="col-"] {
  display: flex;
  padding-right: 12px;
  padding-left: 12px;
  margin-bottom: 28px;
}

/* Homepage product rails: equal space above/below section titles + 5-up on desktop */
body.home-page .shop_section.home-product-rail {
  --home-rail-title-gap: 32px;
  padding: var(--home-rail-title-gap) 0 40px;
}

body.home-page .shop_section.home-product-rail.shop_section--top-selling {
  padding: var(--home-rail-title-gap) 0 72px;
}

body.home-page .home-product-rail .heading_container {
  margin-bottom: 0;
}

body.home-page .home-product-rail .heading_container h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.1;
}

body.home-page .home-product-rail .home-product-grid,
body.home-page .home-product-rail #product-grid,
body.home-page .home-product-rail #top-selling-grid {
  margin-top: var(--home-rail-title-gap);
}

body.home-page .home-product-rail .btn-box {
  margin-top: 12px;
}

body.home-page .home-product-rail .btn-box a {
  padding: 11px 28px;
  color: #fff;
  background: #111;
  border: 1px solid #111;
  border-radius: 0;
  font-weight: 700;
}

body.home-page .home-product-rail .btn-box a:hover {
  color: #111;
  background: transparent;
}

@media (min-width: 1200px) {
  body.home-page .home-product-grid > [class*="col-"] {
    flex: 0 0 20%;
    max-width: 20%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 22px;
  }

  body.home-page .home-product-rail .product-card__title {
    font-size: 13px;
  }

  body.home-page .home-product-rail .product-price {
    min-height: 52px;
  }

  body.home-page .home-product-rail .product-price .sale-price {
    font-size: 22px;
  }

  body.home-page .home-product-rail .add-cart-btn,
  body.home-page .home-product-rail .buy-now-btn {
    padding: 10px 4px;
    font-size: 11px;
  }

  body.home-page .home-product-rail .detail-box {
    padding: 14px;
  }
}

.shop_section--top-selling {
  background: #faf8f3;
}

.shop_section .box.product-card {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: #f5f3ed;
  border: 0;
  border-radius: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.shop_section .box.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.product-card__hit {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.shop_section .box .img-box {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  background: #eeeae1;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  display: block;
  position: relative;
  flex-shrink: 0;
}

.shop_section .box .img-box img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

.shop_section .box .img-box .card-labels {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin: 0;
  pointer-events: none;
}

.shop_section .box .img-box .tier-badge,
.shop_section .box .img-box .type-badge {
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  backdrop-filter: blur(4px);
}

.shop_section .box .img-box .type-badge {
  margin-left: auto;
  color: #111;
  background: rgba(255,255,255,.92);
}

.shop_section .detail-box {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px;
}

.shop_section .detail-box > .product-card__title,
.shop_section .product-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.7em;
  max-height: 2.7em;
  min-height: 2.7em;
  margin: 0;
  color: #111;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -.01em;
  text-decoration: none;
  word-break: break-word;
}

.shop_section .product-price {
  margin: 10px 0 14px;
  min-height: 58px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.shop_section .product-price .sale-price {
  font-size: 28px;
}

.product-detail .product-price .sale-price {
  font-size: clamp(34px, 5vw, 46px);
}

.shop_section .add-cart-btn,
.shop_section .buy-now-btn {
  width: 100%;
  margin-top: 0;
  padding: 11px 8px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.shop_section .add-cart-btn {
  color: #111;
  background: transparent;
  border: 1px solid #111;
}

.shop_section .add-cart-btn:hover {
  color: #fff;
  background: #111;
}

.shop_section .buy-now-btn {
  color: #fff;
  background: #111;
  border: 1px solid #111;
  cursor: pointer;
  transition: all .2s;
}

.shop_section .buy-now-btn:hover {
  color: #111;
  background: #fff;
}

.shop_section .buy-now-btn:disabled,
.shop_section .add-cart-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

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

.out-of-stock-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: #7a2e24;
  background: #f4e4df;
  border: 1px solid #e2b7ad;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.img-oos-badge {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 6px 12px;
  color: #fff;
  background: rgba(17,17,17,.82);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}

.product-card.is-out-of-stock .img-box img {
  filter: grayscale(.35);
  opacity: .88;
}

.client_section .img-box { display: none !important; }

.shop_section > .container { max-width: 1380px; }

/* Shop catalog sticky chrome */
:root {
  --shop-header-offset: 76px;
  --shop-collection-bar-height: 72px;
}

.shop-collection-bar {
  position: sticky;
  top: var(--shop-header-offset);
  z-index: 900;
  min-height: var(--shop-collection-bar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e4dfd4;
  background: rgba(252, 250, 245, 0.96);
  backdrop-filter: blur(14px);
}

.shop-collection-bar > .container {
  max-width: 1380px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}

.shop-collection-bar .eyebrow {
  margin: 0 0 2px;
  color: #9a7830;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.shop-collection-bar h1 {
  margin: 0;
  color: #152922;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.shop-collection-bar[data-collection="affordable"] .eyebrow,
.shop-collection-bar[data-collection="premium"] .eyebrow {
  color: #8a6a28;
}

.shop_section--catalog {
  padding: 20px 0 88px;
}

.shop-catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 2.8vw, 40px);
  align-items: start;
  margin-top: 8px;
}

.shop-filter-sidebar {
  min-width: 0;
}

.filter-panel {
  position: sticky;
  top: calc(var(--shop-header-offset) + var(--shop-collection-bar-height) + 12px);
  overflow: visible;
  border: 1px solid #e0dbd0;
  background: #fbf9f4;
  box-shadow: none;
}

.filter-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(204,175,107,.2), transparent 45%),
    #102c25;
}
.filter-panel__header .eyebrow {
  color: #d9bd76;
  font-size: 9px;
  letter-spacing: .16em;
}
.filter-panel__header h3 {
  margin: 4px 0 0;
  color: #fff;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}
.filter-drawer-close {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: transparent;
}
.filter-drawer-close svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.shop-toolbar {
  display: grid;
  gap: 14px;
  padding: 18px 20px 6px;
}
.shop-toolbar .search-box,
.shop-toolbar .sort-box { max-width: none; margin: 0; }
.shop-toolbar label {
  display: block;
  margin-bottom: 7px;
  color: #6a675f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.search-input-wrap { position: relative; }
.search-input-wrap svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #937943;
  stroke-width: 1.7;
  stroke-linecap: round;
  transform: translateY(-50%);
  pointer-events: none;
}
.shop-toolbar input,
.shop-toolbar select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: #193028;
  border: 1px solid #d9d3c6;
  border-radius: 0;
  background: #fff;
  outline: 0;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.shop-toolbar .search-input-wrap input { padding-left: 40px; }
.shop-toolbar input:focus,
.shop-toolbar select:focus {
  border-color: #9d7a34;
  box-shadow: 0 0 0 3px rgba(157,122,52,.1);
}

.filter-groups { padding: 4px 20px 0; }
.filter-panel .filter-group {
  min-width: 0;
  margin: 0;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid #e5e0d5;
  text-align: left;
}
.filter-panel .filter-group:last-of-type { border-bottom: 0; }
.filter-panel .filter-group legend {
  width: 100%;
  margin: 0 0 10px;
  color: #193028;
  border: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.filter-panel .filter-row { display: grid; gap: 4px; margin: 0; }
.filter-panel .filter-row--chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-panel .filter-row button {
  position: relative;
  width: 100%;
  min-height: 40px;
  padding: 9px 14px;
  color: #4f524d;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.filter-panel .filter-row--chips button {
  width: auto;
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid #d5cfc2;
  background: #fff;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.filter-panel .filter-row button::after { display: none; }
.filter-panel .filter-row button:hover {
  color: #102c25;
  background: #f1ede4;
}
.filter-panel .filter-row--chips button:hover {
  border-color: #b79a5d;
  background: #f7f3ea;
}
.filter-panel .filter-row button.active {
  color: #fff;
  background: #102c25;
}
.filter-panel .filter-row--chips button.active {
  color: #fff;
  border-color: #102c25;
  background: #102c25;
}

.clear-filters {
  display: block;
  margin: 8px 20px 20px;
  padding: 11px 12px;
  color: #73591f;
  border: 1px solid #d2c39a;
  background: transparent;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.clear-filters:hover { color: #fff; background: #102c25; border-color: #102c25; }
.clear-filters[hidden] { display: none; }

.shop-products { min-width: 0; }
.shop-results-toolbar {
  min-height: 56px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e0dbd1;
}
.shop-results-toolbar .eyebrow { color: #a07a2f; font-size: 9px; letter-spacing: .18em; }
.shop-results-toolbar h3 {
  margin: 3px 0 0;
  color: #172d26;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}
.filter-drawer-open {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  color: #fff;
  border: 0;
  background: #102c25;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.filter-drawer-open svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.filter-count {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  color: #102c25;
  border-radius: 50%;
  background: #d9bd76;
  font-size: 10px;
}
.filter-count[hidden] { display: none; }

.active-filter-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}
.active-filter-label,
.active-filter-empty {
  color: #77756f;
  font-size: 11px;
}
.active-filter-label { margin-right: 3px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.active-filter-chip {
  padding: 8px 12px;
  color: #21352f;
  border: 1px solid #d2c8b5;
  border-radius: 999px;
  background: #f7f3e9;
  font-size: 11px;
  font-weight: 650;
}
.active-filter-chip span { margin-left: 5px; color: #98752d; font-size: 16px; line-height: 0; vertical-align: -1px; }
.active-filter-chip:hover { border-color: #9d7a34; background: #fff; }
.filter-drawer-overlay { display: none; }

.shop-products #product-grid { margin-top: 0; }
@media (min-width: 901px) {
  .shop-products #product-grid > .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.store-btn {
  border-radius: 0;
  background: #111;
  border-color: #111;
}

.shipping-progress {
  margin-bottom: 28px;
  padding: 20px;
  background: #f5f3ed;
}

.shipping-progress-copy,
.order-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.shipping-progress-track {
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
  background: #ddd8cc;
}

.shipping-progress-track span {
  display: block;
  height: 100%;
  background: #c6a664;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 42px;
}

.cart-line {
  display: grid;
  grid-template-columns: 120px 1fr 70px 100px auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e6e4dd;
}

.cart-line img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  background: #eee;
}

.cart-line-copy { display: grid; gap: 5px; }
.cart-line-title { color: #111; font: 24px "Instrument Serif", Georgia, serif; }
.eyebrow { color: #827a69; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; }
.cart-line input { width: 64px; padding: 9px; border: 1px solid #ccc; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid; background: transparent; }

.order-summary {
  height: max-content;
  padding: 28px;
  background: #f5f3ed;
}

.order-summary h3 { font-size: 30px; }
.order-summary > div { margin: 14px 0; }
.order-summary .order-total { padding-top: 16px; border-top: 1px solid #d9d5ca; font-size: 18px; }
.store-btn-block { display: block; width: 100%; padding: 14px; text-align: center; }
.continue-link { display: block; margin-top: 15px; color: #111; text-align: center; }

.success-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #d8ba73;
}

.checkout-summary { background: #f5f3ed; border-radius: 0; }

@media (max-width: 560px) {
  .checkout-line {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }
  .checkout-line img {
    width: 64px;
    height: 64px;
  }
  .checkout-line__price {
    grid-column: 2;
  }
}
.shipping-note { margin-top: 16px; color: #786537; font-size: 12px; }

.compare-section,
.faq-section {
  padding: 100px 0;
}

.compare-section { background: #0f2924; color: #fff; }
.compare-section .heading_container h2,
.compare-section .eyebrow { color: #fff; }
.compare-section .heading_container h2,
.faq-section .heading_container h2 { font-size: clamp(42px, 5vw, 64px); font-weight: 400; text-transform: none; }

.compare-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  border-top: 1px solid rgba(255,255,255,.24);
  border-left: 1px solid rgba(255,255,255,.24);
}

.compare-grid > div {
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.24);
  border-bottom: 1px solid rgba(255,255,255,.24);
}

.compare-grid > div:nth-child(3n + 1) { color: rgba(255,255,255,.55); }
.compare-heading { color: #fff !important; font: 28px "Instrument Serif", Georgia, serif; }
.compare-heading.premium { color: #d8ba73 !important; }

.faq-section { background: #f5f3ed; }
.faq-list { max-width: 850px; margin: 45px auto 0; }
.faq-list details { border-top: 1px solid #cfcbc0; }
.faq-list details:last-child { border-bottom: 1px solid #cfcbc0; }
.faq-list summary { padding: 22px 0; cursor: pointer; font-weight: 600; }
.faq-list p { padding: 0 0 22px; color: #625f57; line-height: 1.7; }
.faq-list a,
.product-care a,
.success-policy a { color: #85641f; text-decoration: underline; }

.home-return-notice {
  padding: 34px 0;
  background: #fff;
}

.return-notice-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 48px;
  color: #fff;
  background: #0f2924;
}

.return-notice-card .eyebrow { color: #d8ba73; }
.return-notice-card h2 {
  margin: 7px 0 9px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  text-transform: none;
}
.return-notice-card p { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); line-height: 1.7; }
.return-notice-card > a {
  flex: 0 0 auto;
  padding: 14px 20px;
  color: #151515;
  background: #fff;
  font-weight: 700;
}

.policy-hero {
  padding: 105px 0 95px;
  color: #fff;
  background: #0f2924;
}

.policy-hero .eyebrow { color: #d8ba73; }
.policy-hero h1 {
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}
.policy-hero p:last-child { max-width: 760px; color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.8; }

.policy-content { padding: 72px 0 95px; background: #f5f3ed; }
.policy-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
  border: 1px solid #d4cfc2;
  background: #fff;
}
.policy-highlights article { padding: 28px 30px; border-right: 1px solid #d4cfc2; }
.policy-highlights article:last-child { border: 0; }
.policy-highlights strong,
.policy-highlights span { display: block; }
.policy-highlights strong { margin-bottom: 5px; font-size: 19px; color: #0f2924; }
.policy-highlights span { color: #6f6a60; }

.policy-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, .85fr);
  gap: 72px;
  align-items: start;
}
.policy-main { max-width: 790px; }
.policy-main section { margin-bottom: 54px; }
.policy-main h2,
.policy-contact h2 {
  color: #121212;
  font-size: 34px;
  font-weight: 400;
  text-transform: none;
}
.policy-main p,
.policy-main li,
.policy-contact p { color: #5f5a52; line-height: 1.85; }
.policy-main ul { padding-left: 22px; list-style: disc; }
.policy-main ul li { margin: 8px 0; }

.policy-steps { padding: 0; list-style: none; }
.policy-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 18px; margin: 24px 0; }
.policy-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0f2924;
  font-weight: 700;
}
.policy-steps strong { color: #171717; }
.policy-steps p { margin: 2px 0 0; }
.policy-legal { padding: 28px 30px; border-left: 3px solid #b59449; background: #ece7dc; }
.policy-legal h2 { font-size: 25px; }

.policy-contact {
  position: sticky;
  top: 105px;
  padding: 36px;
  color: #fff;
  background: #171717;
}
.policy-contact .eyebrow { color: #d8ba73; }
.policy-contact h2 { color: #fff; }
.policy-contact p { color: rgba(255,255,255,.68); }
.email-cta,
.whatsapp-cta {
  display: block;
  margin: 26px 0 15px;
  padding: 15px 18px;
  color: #10271e;
  background: #d8ba73;
  font-weight: 700;
  text-align: center;
}
.email-cta:hover,
.whatsapp-cta:hover {
  color: #10271e;
  text-decoration: none;
}
.policy-contact small { display: block; color: rgba(255,255,255,.48); line-height: 1.6; }
.policy-updated { margin: 25px 0 0; color: #817b70; font-size: 13px; }

.info_section { display: none; }

.aham-footer {
  width: min(1280px, calc(100% - 48px));
  margin: auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  text-align: left;
}

.aham-footer .footer-logo {
  width: 118px;
  height: 118px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(214, 186, 115, .45);
  background: #000;
}
.aham-footer h4 { color: #fff; font: 24px "Instrument Serif", Georgia, serif; }
.aham-footer p, .aham-footer a { display: block; color: rgba(255,255,255,.66); line-height: 1.9; }
.footer-bottom { padding: 20px 24px; border-top: 1px solid rgba(255,255,255,.12); text-align: center; }
.footer_section { background: #0a0a0a !important; }

@media (max-width: 900px) {
  .home-promo-slide--affordable {
    background-size: cover, auto 100%;
    background-position: center, 88% 10%;
  }
  .home-promo-slide--premium {
    background-size: cover, auto 100%;
    background-position: center, 94% 8%;
  }
  .home-promo-slide--brand {
    background-position: center, 72% 16%;
  }
  .announcement-brand { display: none; }
  .announcement-bar { gap: 12px; font-size: 9px; }
  .desktop-nav, .nav-actions > a:first-child { display: none; }
  .mobile-menu-button { display: inline-block; }
  .aham-nav { width: calc(100% - 32px); height: 68px; }
  .collection-card { min-height: 400px; }
  .service-assurance__grid { grid-template-columns: 1fr 1fr; }
  .service-assurance__item:nth-child(2) { border-right: 0; }
  .service-assurance__item:nth-child(-n + 2) { border-bottom: 1px solid #e1dbcf; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 88px 1fr 60px; gap: 12px; }
  .cart-line img { width: 88px; height: 86px; }
  .cart-line strong { grid-column: 2; }
  .cart-line .text-button { grid-column: 3; grid-row: 2; }
  .aham-footer { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: .75fr 1fr 1fr; font-size: 13px; }
  .compare-grid > div { padding: 13px; }
  .shop-catalog-layout { display: block; margin-top: 12px; }
  .shop-filter-sidebar { display: contents; }
  .shop-products { width: 100%; }
  .shop_section--catalog { padding: 12px 0 64px; }
  :root {
    --shop-header-offset: 68px;
    --shop-collection-bar-height: 60px;
  }
  .shop-collection-bar {
    min-height: var(--shop-collection-bar-height);
  }
  .shop-collection-bar > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .shop-collection-bar h1 {
    font-size: 1.45rem;
  }
  .shop-results-toolbar {
    min-height: 48px;
    align-items: center;
    padding-bottom: 12px;
  }
  .shop-results-toolbar h3 { font-size: 22px; }
  .filter-drawer-open { display: inline-flex; }
  .filter-panel {
    position: fixed;
    z-index: 1101;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 91vw);
    max-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    transform: translateX(-105%);
    transition: transform .28s ease;
    overscroll-behavior: contain;
    scrollbar-color: #c4a86a transparent;
    scrollbar-width: thin;
  }
  .filter-drawer-close { display: grid; }
  .filter-drawer-overlay {
    position: fixed;
    z-index: 1100;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    border: 0;
    background: rgba(6,18,15,.62);
    backdrop-filter: blur(3px);
    transition: opacity .25s ease, visibility .25s ease;
  }
  body.filters-open { overflow: hidden; }
  body.filters-open .filter-panel { transform: translateX(0); }
  body.filters-open .filter-drawer-overlay {
    visibility: visible;
    opacity: 1;
  }
  .policy-layout { grid-template-columns: 1fr; gap: 20px; }
  .policy-contact { position: static; }
  #product-grid,
  #top-selling-grid {
    margin-right: -10px;
    margin-left: -10px;
  }
  #product-grid > [class*="col-"],
  #top-selling-grid > [class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 22px;
  }
}

@media (max-width: 560px) {
  body.home-page .shop_section.home-product-rail {
    --home-rail-title-gap: 24px;
    padding: var(--home-rail-title-gap) 0 28px;
  }
  body.home-page .shop_section.home-product-rail.shop_section--top-selling {
    padding: var(--home-rail-title-gap) 0 48px;
  }
  .announcement-highlight { display: none; }
  .aham-brand { gap: 8px; }
  .aham-brand .brand-mark,
  .aham-brand .brand-sub { font-size: 26px; letter-spacing: .1em; }
  .aham-footer .footer-logo { width: 96px; height: 96px; }
  .home-promo-slider .carousel { height: 392px; }
  .home-promo-slide--affordable {
    background-size: cover, auto 100%;
    background-position: center, 84% 10%;
  }
  .home-promo-slide--premium {
    background-size: cover, auto 100%;
    background-position: center, 92% 8%;
  }
  .home-promo-slide--offers {
    background-size: cover, auto 100%;
    background-position: center, 90% 40%;
  }
  .home-promo-slide--brand {
    background-position: center, 72% 14%;
  }
  .home-promo-slide__content {
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 40px 0;
  }
  .home-promo-slide__content--offers {
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 28px 0 64px;
  }
  .home-promo-slide__content--offers .promo-offers-lead {
    margin: 10px 0 12px;
    font-size: 14px;
  }
  .promo-offer-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .promo-offer-pill {
    min-width: 0;
    padding: 10px 12px;
  }
  .promo-offer-pill__value {
    font-size: 22px;
  }
  .home-promo-cta .slider-link {
    display: inline-block;
    padding: 12px 22px;
  }
  .slide-from-price { margin-top: 12px; padding: 7px 12px 8px; }
  .slide-from-price__value { font-size: clamp(26px, 8vw, 34px); }
  .home-promo-slide__content h1 { font-size: clamp(40px, 11vw, 56px); }
  .home-promo-slide__content--offers h1 { font-size: clamp(22px, 6vw, 30px); max-width: none; }
  .home-promo-slider .carousel-control-prev,
  .home-promo-slider .carousel-control-next { width: 52px; height: 40px; }
  .home-promo-slider .carousel-control-prev { left: 4px; }
  .home-promo-slider .carousel-control-next { right: 4px; }
  .home-promo-control { width: 40px; height: 40px; font-size: 18px; }
  .service-assurance { padding: 22px 16px 26px; }
  .service-assurance__grid { grid-template-columns: 1fr; }
  .service-assurance__item {
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid #e1dbcf;
  }
  .service-assurance__item:nth-child(3) { border-bottom: 1px solid #e1dbcf; }
  .service-assurance__item:last-child { border-bottom: 0; }
  .shop-results-toolbar { align-items: center; }
  .shop-results-toolbar h3 { font-size: 25px; }
  .active-filter-bar { min-height: 48px; }
  .collection-card { min-height: 430px; padding: 30px; }
  .collection-card h2 { font-size: 40px; }
  .aham-footer { grid-template-columns: 1fr; }
  .return-notice-card { display: block; padding: 30px 25px; }
  .return-notice-card > a { display: inline-block; margin-top: 22px; }
  .policy-hero { padding: 75px 0 65px; }
  .policy-content { padding: 45px 0 70px; }
  .policy-highlights { grid-template-columns: 1fr; margin-bottom: 48px; }
  .policy-highlights article { border-right: 0; border-bottom: 1px solid #d4cfc2; }
  .policy-main section { margin-bottom: 42px; }
  .policy-main h2 { font-size: 30px; }
  .policy-contact { padding: 30px 25px; }
  #product-grid,
  #top-selling-grid {
    margin-top: 22px;
    margin-right: -8px;
    margin-left: -8px;
  }
  #product-grid > [class*="col-"],
  #top-selling-grid > [class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 18px;
  }
  .shop_section .detail-box {
    padding: 12px;
  }
  .shop_section .detail-box > .product-card__title,
  .shop_section .product-card__title {
    font-size: 13px;
    font-weight: 600;
    height: 2.7em;
    max-height: 2.7em;
    min-height: 2.7em;
  }
  .shop_section .product-price {
    min-height: 48px;
    margin: 8px 0 10px;
  }
  .shop_section .product-price .sale-price {
    font-size: 18px;
  }
  .shop_section .product-price .price-was {
    font-size: 11px;
  }
  .shop_section .discount-badge,
  .shop_section .sale-badge {
    padding: 4px 7px;
    font-size: 10px;
  }
  .product-card-actions {
    gap: 6px;
  }
  .shop_section .add-cart-btn,
  .shop_section .buy-now-btn {
    padding: 9px 4px;
    font-size: 11px;
  }
  .shop_section .box .img-box .card-labels {
    top: 8px;
    left: 8px;
    right: 8px;
    gap: 4px;
  }
  .shop_section .box .img-box .tier-badge,
  .shop_section .box .img-box .type-badge {
    padding: 3px 7px;
    font-size: 9px;
  }
}

/* Blog hub + article */
.blog-hub-lead {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  text-align: center;
  color: #5c5c5c;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
}

.blog_section .detail-box h5 a {
  color: inherit;
  text-decoration: none;
}

.blog_section .detail-box h5 a:hover {
  text-decoration: underline;
}

.blog-article-page {
  padding: 2rem 0 4rem;
  background: linear-gradient(180deg, #f7f4ef 0%, #fff 42%);
}

.blog-article {
  max-width: 46rem;
}

.blog-article .blog-category {
  margin: 1.25rem 0 0.5rem;
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a6a2f;
}

.blog-article h1 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.blog-article .blog-lead {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
}

.blog-hero-image {
  margin: 0 0 1.75rem;
  overflow: hidden;
}

.blog-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.blog-body {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2b2b2b;
}

.blog-body h2,
.blog-body h3 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  margin: 1.75rem 0 0.65rem;
  line-height: 1.25;
  color: #1a1a1a;
}

.blog-body p {
  margin: 0 0 1rem;
}

.blog-body ul,
.blog-body ol {
  margin: 0 0 1.1rem;
  padding-left: 1.25rem;
}

.blog-body li {
  margin-bottom: 0.4rem;
}

.blog-body a {
  color: #6b4f1d;
  text-decoration: underline;
}

.blog-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2.25rem 0 1rem;
}

.blog-cta .store-btn.secondary {
  background: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.blog-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-related h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.blog-related-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .blog-related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-related-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-related-card .blog-category {
  margin: 0;
}

.blog-related-card strong {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

.blog-related-card span:last-child {
  font-family: Inter, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: #5c5c5c;
  line-height: 1.45;
}

.checkout-account {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid #d8ba73;
  border-radius: 12px;
  background: #fffaf0;
}

.checkout-account p {
  margin: 5px 0 0;
}

.checkout-account__guest {
  grid-column: 1 / -1;
  color: #6b5b50;
  font-size: 13px;
}

.checkout-account.is-signed-in {
  border-color: #9fcab5;
  background: #f3fbf7;
}

.store-btn.danger {
  color: #fff;
  background: #9a3d36;
}

.account-heading,
.account-order header,
.account-order__total,
.customer-receipt__head,
.customer-receipt__details,
.customer-receipt__items > div,
.customer-receipt__totals p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.account-heading {
  margin-bottom: 24px;
}

.account-heading h1 {
  margin: 0;
}

.account-orders {
  display: grid;
  gap: 18px;
}

.account-signin-card,
.account-order {
  padding: 24px;
  border: 1px solid #eadfce;
  border-radius: 14px;
  background: #fff;
}

.account-signin-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.account-order header h2 {
  margin: 2px 0 0;
  font-size: 22px;
}

.account-order__status {
  padding: 6px 12px;
  border-radius: 999px;
  background: #eee;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-order__status.pending { background: #fff3d6; color: #8a6a12; }
.account-order__status.confirmed { background: #e7f1ee; color: #102c25; }
.account-order__status.ready { background: #efe8f7; color: #593879; }
.account-order__status.shipped { background: #e8eef4; color: #3d5266; }
.account-order__status.delivered { background: #e8f6ee; color: #1f7a4d; }
.account-order__status.cancelled { background: #f6ecec; color: #9a3d36; }

.order-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.order-timeline li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #8d858f;
  font-size: 11px;
}

.order-timeline li::before {
  position: absolute;
  top: 6px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #e6e0e8;
  content: "";
}

.order-timeline li:first-child::before { display: none; }

.order-timeline li > span {
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid #d1cad4;
  border-radius: 50%;
  background: #fff;
}

.order-timeline li.complete { color: #3c2946; }
.order-timeline li.complete::before,
.order-timeline li.complete > span { border-color: #3c2946; background: #3c2946; }

.order-timeline.is-cancelled {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  color: #9a3d36;
  background: #f6ecec;
}

.account-order__items {
  border-block: 1px solid #eee8df;
}

.account-order__items > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
}

.account-order__items img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.account-order__total {
  padding: 14px 0;
  font-size: 18px;
}

.account-order details {
  margin-top: 4px;
}

.account-order summary {
  cursor: pointer;
  font-weight: 700;
}

.account-order__actions,
.order-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.order-success {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.order-success .customer-receipt {
  text-align: left;
}

.customer-receipt {
  width: 100%;
  max-width: 760px;
  margin: 24px auto;
  padding: 24px;
  border: 1px solid #ddd4c7;
  border-radius: 12px;
  background: #fff;
  text-align: left;
}

.customer-receipt__head {
  padding-bottom: 16px;
  border-bottom: 2px solid #3c2946;
}

.customer-receipt__head > div:last-child { text-align: right; }
.customer-receipt__head span { display: block; color: #736a75; font-size: 12px; }
.customer-receipt__details { align-items: start; padding: 12px 0; border-bottom: 1px solid #eee8df; }
.customer-receipt__details p { width: 50%; margin: 0; }
.customer-receipt__items > div { padding: 9px 0; border-bottom: 1px solid #f1ece6; }
.customer-receipt__totals { margin: 12px 0 0 auto; max-width: 360px; }
.customer-receipt__totals p { margin: 0; padding: 5px 0; }
.customer-receipt__totals .total { margin-top: 7px; padding-top: 9px; border-top: 1px solid #3c2946; font-size: 19px; }
.customer-receipt__status { margin: 16px 0 0; text-transform: capitalize; }

@media (max-width: 640px) {
  .checkout-account { grid-template-columns: 1fr; }
  .checkout-account__guest { grid-column: auto; }
  .account-heading,
  .account-order header,
  .customer-receipt__details { align-items: flex-start; flex-direction: column; }
  .customer-receipt__details p { width: 100%; }
  .order-timeline li strong { font-size: 9px; }
}

@media print {
  body * { visibility: hidden !important; }
  .customer-receipt,
  .customer-receipt * { visibility: visible !important; }
  .customer-receipt {
    position: absolute;
    inset: 0 auto auto 0;
    max-width: none;
    margin: 0;
    border: 0;
  }
  .account-order:not(.print-this-order) .customer-receipt,
  .account-order:not(.print-this-order) .customer-receipt * { visibility: hidden !important; }
}
