/** Shopify CDN: Minification failed

Line 2605:45 Expected ":"

**/
/* ============================================================
   HEROFORCE — Premium Design System
   ============================================================ */

/* Tokens and Resets handled by Dawn theme.liquid overrides */

/* === LAYOUT UTILITIES === */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section-pad { padding-block: var(--sp-xl); }

.section-header {
  text-align: center;
}

.section-header .eyebrow { display: block; margin-bottom: 1.6rem; }

.section-title { color: var(--clr-text); }
.section-title em { font-style: italic; color: var(--clr-gold); }

.section-sub {
  margin-top: 1.6rem;
  color: var(--clr-muted);
  font-size: 1.52rem;
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.8;
}

.gold-line {
  width: 48px;
  height: 1px;
  background: var(--clr-gold);
  margin: 2.4rem auto;
}

/* === BUTTONS === */
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.96rem;
  padding: 1.6rem 4rem;
  font-family: var(--ff-body);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all var(--dur-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.hf-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  transform: translateX(-101%);
  transition: transform var(--dur-base) var(--ease-out);
}
.hf-btn:hover::after { transform: translateX(0); }

.hf-btn-primary {
  background: black;
  color: white !important;
  border: 1px solid var(--clr-black);
}
.hf-btn-primary:hover {
  background: #222;
  border-color: #222;
  /* color: white !important; */
}

.hf-btn-outline {
  background: transparent;
  color: var(--clr-text) !important;
  border: 1px solid rgba(240, 237, 232, 0.149);
}
.hf-btn-outline:hover {
  border-color: var(--clr-gold);
  color: black !important;
}

.hf-btn-ghost {
  background: transparent;
  color: var(--clr-gold) !important;
  border: 1px solid var(--clr-gold);
  padding: 1.2rem 3.2rem;
}
.hf-btn-ghost:hover {
  background: var(--clr-gold);
  color: var(--clr-black) !important;
}
.shopify-payment-button__button--unbranded:hover {
  background-color: var(--clr-gold) !important;
  color: var(--clr-black) !important;
}

/* === PRODUCT CARD LUXURY OVERRIDES === */
.card-wrapper .card__heading {
  font-family: var(--ff-heading) !important;
  font-weight: 300 !important;
  font-size: 1.12rem !important;
  letter-spacing: 0.05em !important;
  margin-top: 1rem;
}

.card-wrapper .card__heading a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--clr-text) !important;
  transition: color var(--dur-fast) ease-out;
}

.card-wrapper:hover .card__heading a {
  color: var(--clr-gold) !important;
}

.card-wrapper .price {
  font-family: var(--ff-heading) !important;
  color: var(--clr-muted) !important;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.card-wrapper:hover .card__media img {
  transform: scale(1.05);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-wrapper .card__media img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-wrapper .card__inner .card__badge,
.card-wrapper .card__badge {
  position: static !important;
}

.card-wrapper .badge {
  position: absolute !important;
  top: 1rem !important;
  left: 1rem !important;
  bottom: auto !important;
  right: auto !important;
  margin: 0 !important;
  transform: none !important;
  z-index: 3 !important;
  background-color: #d6d6d6 !important;
  color: #111111 !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: var(--ff-heading);
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}


/* === HEADER === */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--dur-base), border-color var(--dur-base), backdrop-filter var(--dur-base);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--clr-border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3.2rem;
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.header-nav__link {
  font-size: 1.09rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-platinum);
  transition: color var(--dur-fast);
  position: relative;
  padding-bottom: 2px;
}
.header-nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--dur-base);
}
.header-nav__link:hover { color: var(--clr-gold); }
.header-nav__link:hover::after { width: 100%; }

.header-logo {
  grid-column: 2;
  justify-self: center;
  font-family: var(--ff-heading);
  font-size: 2.48rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-text);
  transition: color var(--dur-fast);
}
.header-logo span { color: var(--clr-gold); }
.header-logo:hover { color: var(--clr-gold); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  justify-content: flex-end;
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 0.64rem;
  color: var(--clr-platinum);
  font-size: 1.09rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color var(--dur-fast);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.header-action-btn:hover { color: var(--clr-gold); }

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: var(--clr-gold);
  color: var(--clr-black);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
}

/* Hamburger */
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px 0;
}
.header-hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--clr-text);
  transition: all var(--dur-base);
  transform-origin: center;
}

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--clr-black);
  z-index: calc(var(--z-header) - 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-out);
}
.mobile-nav.is-open { transform: translateY(0); }

.mobile-nav__link {
  font-family: var(--ff-heading);
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--clr-text);
  transition: color var(--dur-base);
}
.mobile-nav__link:hover { color: var(--clr-gold); }

.mobile-nav__footer {
  position: absolute;
  bottom: 4rem;
  display: flex;
  gap: 3.2rem;
}
.mobile-nav__footer a {
  font-size: 1.12rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color var(--dur-fast);
}
.mobile-nav__footer a:hover { color: var(--clr-gold); }

/* === HERO BANNER === */
.hero {
  position: relative;
  height: 95vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--clr-black);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
  opacity: 0.9;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.3) 40%, transparent 100%);
  z-index: 1;
}

.hero__container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 4rem;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-bottom: 15vh;
}
.hero__eyebrow {
  transform: translateY(0);
  margin-bottom: 1.92rem;
}
.hero__title {
  transform: translateY(0);
  margin-bottom: 2.24rem;
  color: var(--clr-text);
}
.hero__sub {
  font-size: clamp(1.44rem, 1.5vw, 1.68rem);
  color: var(--clr-platinum);
  max-width: 440px;
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 4.48rem;
  transform: translateY(0);
}
.hero__cta {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  transform: translateY(0);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.96rem;
  color: rgba(240,237,232,0.5);
  font-size: 0.99rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out 1.5s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* === MARQUEE TICKER === */
.marquee-section {
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-surface);
  overflow: hidden;
  padding-block: 1.76rem;
  -webkit-user-select: none;
  user-select: none;
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  display: flex;
  align-items: center;
  gap: 2.88rem;
  padding-inline: 3.2rem;
  font-size: 1.09rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-platinum);
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* === FEATURED COLLECTION === */
.featured-collection { background: var(--clr-black); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.section-footer {
  text-align: center;
  margin-top: 5.6rem;
}

/* === PRODUCT CARD === */
.product-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border-sub);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base), transform var(--dur-slow) var(--ease-out);
}
.product-card:hover {
  border-color: var(--clr-border);
  transform: translateY(-5px);
}

.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--clr-surface);
}
.product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

.product-card__img-alt {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--dur-slow);
}
.product-card:hover .product-card__img-alt { opacity: 1; }

.product-card__badges {
  position: absolute;
  top: 1.6rem; left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.64rem;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.badge-new     { background: var(--clr-gold); color: var(--clr-black); }
.badge-sale    { background: #C0392B; color: #fff; }
.badge-limited { background: var(--clr-surface); color: var(--clr-gold); border: 1px solid var(--clr-gold); }

.product-card__quick-add {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--clr-gold);
  color: var(--clr-black);
  padding: 1.44rem;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--dur-base) var(--ease-out);
  cursor: pointer;
  border: none;
  width: 100%;
  z-index: 2;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add:hover { background: var(--clr-gold-lt); }

.product-card__info { padding: 2.24rem 2.4rem; }

.product-card__collection {
  font-size: 0.99rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.64rem;
}
.product-card__title {
  font-family: var(--ff-heading);
  font-size: 1.84rem;
  font-weight: 400;
  color: var(--clr-text);
  margin-bottom: 1.12rem;
  line-height: 1.3;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: 1.12rem;
}
.price          { font-size: 1.52rem; color: var(--clr-text); font-weight: 500; }
.price--compare { color: var(--clr-muted); text-decoration: line-through; font-size: 1.36rem; }
.price--sale    { color: var(--clr-gold); }

/* === BRAND STORY === */
.brand-story { background: var(--clr-surface); overflow: hidden; }

.brand-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.brand-story__visual {
  position: relative;
  overflow: hidden;
}
.brand-story__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.brand-story:hover .brand-story__visual img { transform: scale(1.04); }

.brand-story__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--clr-surface));
}

.brand-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.8rem, 5vw, 8rem);
}

.brand-story__quote {
  font-family: var(--ff-heading);
  font-size: clamp(1.92rem, 2.2vw, 2.72rem);
  font-style: italic;
  color: var(--clr-gold);
  line-height: 1.6;
  margin-bottom: 3.2rem;
  padding-left: 2.88rem;
  border-left: 1px solid var(--clr-gold);
}

.brand-story__text {
  color: var(--clr-muted);
  line-height: 1.95;
  font-size: 1.47rem;
  margin-bottom: 4rem;
}

.brand-story__signature {
  font-family: var(--ff-heading);
  font-size: 2.08rem;
  font-style: italic;
  color: var(--clr-platinum);
  letter-spacing: 0.05em;
}

/* === CRAFTSMANSHIP === */
.craftsmanship { background: var(--clr-black); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: clamp(4.8rem, 5vw, 8rem);
}

.pillar {
  text-align: center;
  padding: clamp(4rem, 4vw, 5.6rem) 3.2rem;
  border: 1px solid rgba(196,151,62,0.08);
  position: relative;
  transition: border-color var(--dur-base), background var(--dur-base);
}
.pillar:hover {
  border-color: rgba(196,151,62,0.35);
  background: rgba(196,151,62,0.025);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 1px;
  background: var(--clr-gold);
  transition: width var(--dur-base);
}
.pillar:hover::before { width: 80px; }

.pillar__num {
  font-family: var(--ff-heading);
  font-size: 8rem;
  font-weight: 300;
  color: rgba(196,151,62,0.1);
  line-height: 1;
  margin-bottom: 2.4rem;
  -webkit-user-select: none;
  user-select: none;
}
.pillar__icon {
  width: 44px; height: 44px;
  margin: 0 auto 2.4rem;
  color: var(--clr-gold);
  transition: transform var(--dur-base);
}
.pillar:hover .pillar__icon { transform: scale(1.1); }

.pillar__title {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
}
.pillar__text {
  color: var(--clr-muted);
  font-size: 1.41rem;
  line-height: 1.85;
}

/* === BESTSELLERS === */
.bestsellers { background: var(--clr-surface); overflow: hidden; }

.bestsellers__scroll-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  margin-inline: calc(-1 * var(--pad-x));
  padding-inline: var(--pad-x);
  padding-bottom: 2.4rem;
}
.bestsellers__scroll-wrap::-webkit-scrollbar { display: none; }
.bestsellers__scroll-wrap:active { cursor: grabbing; }

.bestsellers__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  padding-right: var(--pad-x);
}
.bestsellers__track .product-card {
  width: 310px;
  flex-shrink: 0;
}

.bestsellers__progress {
  margin-top: 3.2rem;
  height: 1px;
  background: rgba(255,255,255,0.07);
  position: relative;
  border-radius: 2px;
}
.bestsellers__bar {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  background: linear-gradient(to right, var(--clr-gold), var(--clr-gold-lt));
  width: 25%;
  border-radius: 2px;
  transition: width var(--dur-base);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--clr-black); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  margin-top: clamp(4.8rem, 5vw, 7.2rem);
}

.testimonial-card {
  padding: clamp(2.88rem, 3vw, 4rem);
  background: var(--clr-card);
  border: 1px solid var(--clr-border-sub);
  position: relative;
  transition: border-color var(--dur-base), transform var(--dur-slow) var(--ease-out);
}
.testimonial-card:hover {
  border-color: var(--clr-border);
  transform: translateY(-4px);
}

.testimonial-card__quote-icon {
  font-family: var(--ff-heading);
  font-size: 7.2rem;
  line-height: 0.8;
  color: var(--clr-gold);
  opacity: 0.25;
  margin-bottom: 1.92rem;
  display: block;
  -webkit-user-select: none;
  user-select: none;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.92rem;
  color: var(--clr-gold);
  font-size: 1.2rem;
}

.testimonial-card__text {
  color: var(--clr-platinum);
  font-size: 1.47rem;
  line-height: 1.85;
  margin-bottom: 3.2rem;
  font-style: italic;
}

.testimonial-card__author { display: flex; align-items: center; gap: 1.6rem; }

.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  color: var(--clr-gold);
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-card__name {
  font-family: var(--ff-heading);
  font-size: 1.52rem;
  color: var(--clr-text);
  font-weight: 400;
}
.testimonial-card__model {
  font-size: 1.09rem;
  color: var(--clr-muted);
  letter-spacing: 0.1em;
  margin-top: 0.24rem;
}

/* === NEWSLETTER === */
.newsletter-section {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.newsletter__inner {
  max-width: 580px;
  margin-inline: auto;
  text-align: center;
}
.newsletter__title { margin-bottom: 1.2rem; }
.newsletter__text {
  color: var(--clr-muted);
  font-size: 1.47rem;
  margin-bottom: 4rem;
}

.newsletter__form {
  display: flex;
  border: 1px solid rgba(196,151,62,0.28);
  overflow: hidden;
}
.newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1.6rem 2.4rem;
  color: var(--clr-text);
  font-size: 1.36rem;
  outline: none;
  letter-spacing: 0.04em;
}
.newsletter__input::placeholder { color: var(--clr-muted); }
.newsletter__submit {
  background: var(--clr-gold);
  color: var(--clr-black);
  border: none;
  padding: 1.6rem 2.88rem;
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter__submit:hover { background: var(--clr-gold-lt); }

.newsletter__note {
  margin-top: 1.6rem;
  font-size: 1.09rem;
  color: var(--clr-muted);
  letter-spacing: 0.06em;
}

/* === FOOTER === */
.site-footer {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border-sub);
  padding: clamp(6.4rem, 6vw, 9.6rem) 0 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(3.2rem, 4vw, 8rem);
  margin-bottom: 6.4rem;
}

.footer__brand-name {
  font-family: var(--ff-heading);
  font-size: 2.72rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.92rem;
  color: var(--clr-text);
}
.footer__brand-name span { color: var(--clr-gold); }

.footer__tagline {
  color: var(--clr-muted);
  font-size: 1.36rem;
  line-height: 1.85;
  max-width: 250px;
  margin-bottom: 3.2rem;
}

.footer__social { display: flex; gap: 1.2rem; }
.footer__social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  transition: all var(--dur-fast);
}
.footer__social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(196,151,62,0.06);
}

.footer__col-title {
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 2.4rem;
}

.footer__links { display: flex; flex-direction: column; gap: 1.12rem; }
.footer__links a {
  font-size: 1.36rem;
  color: var(--clr-muted);
  transition: color var(--dur-fast);
}
.footer__links a:hover { color: var(--clr-text); }

.footer__contact p {
  font-size: 1.36rem;
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: 0.64rem;
}
.footer__contact a { color: var(--clr-gold); transition: color var(--dur-fast); }
.footer__contact a:hover { color: var(--clr-gold-lt); }

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 3.2rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 1.15rem;
  color: var(--clr-muted);
  letter-spacing: 0.06em;
}
.footer__copy span { color: var(--clr-gold); }

.footer__legal { display: flex; gap: 3.2rem; }
.footer__legal a {
  font-size: 1.15rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
  transition: color var(--dur-fast);
}
.footer__legal a:hover { color: var(--clr-text); }

/* === CART DRAWER — HeroForce Premium === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
}
.cart-overlay.is-open { opacity: 1; visibility: visible; }

/* ── Drawer shell ── */
.hf-cart-drawer .cart-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 0;
}

.hf-drawer__inner {
  position: fixed !important;
  top: 0; right: 0; bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 101;
  overflow: hidden;
}
/*
.hf-cart-drawer .drawer__inner {
  position: fixed;
  background: #ffffff;
  display: flex;
} */

/* ── Header ── */
.hf-drawer__header {
    width: 100% !important;
    display: flex !important;
    top: 0;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 24px;
    flex-shrink: 0;
    background: #ffffff;
}

.hf-drawer__title-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.hf-drawer__heading {
  font-size: 2rem !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #111111 !important;
  margin: 0 !important;
}

.hf-drawer__item-count {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #111111;
  opacity: 0.55;
}

.hf-drawer__close {
  position: static !important;
  color: rgba(0,0,0,0.35) !important;
  border-radius: 50% !important;
  border: none !important;
  cursor: pointer !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all var(--dur-fast) !important;
}
.hf-drawer__close:hover { 
  color: #111111 !important;
  transform: rotate(90deg);
}

/* ── Trust Bar ── */
.hf-trust-bar {
      flex-shrink: 0;
    display: block !important;
    width: 100%;
    margin: 0 !important;
    padding: 11px 24px 13px !important;
    color: #222;
    background: #fff;
    border-bottom: none !important;
    font-size: inherit;
    line-height: 1;
}

.hf-trust-bar__headline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.hf-trust-bar__headline svg {
  color: #111111;
  flex-shrink: 0;
}

.hf-trust-bar__headline span {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #111111;
}

/* Dark progress-bar style line */
.hf-trust-bar__line {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.hf-trust-bar__line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #111111;
  width: 72%;
  border-radius: 2px;
}

/* Badge pills — responsive and balanced */
.hf-trust-bar__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  width: 100%;
}

.hf-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 28px;
  width: 100%;
  box-sizing: border-box;
  gap: 5px;
  padding: 6px 6px;
  color: #565656;
  border: 1px solid #dedede;
  border-radius: 4px;
  box-shadow: 0 2px 5px #0000000b;
  font-size: clamp(7px, 2vw, 9px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
  overflow: visible;
}

.hf-trust-badge svg {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: #111111;
  opacity: 0.7;
}

/* Very small mobile */
@media screen and (max-width: 380px) {
  .hf-trust-bar__badges {
    gap: 5px;
  }

  .hf-trust-badge {
    padding: 6px 4px;
    font-size: 6.8px;
    letter-spacing: 0.02em;
    gap: 3px;
  }

  .hf-trust-badge svg {
    width: 10px;
    height: 10px;
    flex-basis: 10px;
  }
}

/* Desktop / tablet */
@media screen and (min-width: 768px) {
  .hf-trust-badge {
    font-size: 8px;
    padding: 6px 8px;
    white-space: nowrap;
  }

  .hf-trust-badge svg {
    width: 13px;
    height: 13px;
    flex-basis: 13px;
  }
}

/* ── Empty State ── */
.hf-drawer__empty {
  flex: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 0 3.2rem 3.2rem !important;
  overflow: hidden;
}

.hf-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  width: 100%;
  min-height: 0;
}
.hf-cart-empty__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  justify-content: center;
  max-width: 300px;
  padding: 2.4rem 0;
}
.hf-cart-empty__footer {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  flex-shrink: 0;
}

.hf-cart-empty__icon {
  visibility: hidden;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  margin-bottom: 1.2rem;
}

.hf-cart-empty__title {
  font-family: var(--ff-heading) !important;
  font-size: 2.2rem !important;
  font-weight: 300 !important;
  color: #111111 !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
}

.hf-cart-empty__sub {
  font-size: 1.35rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.6;
  margin: 0;
}

.hf-cart-empty__cta {
  margin-top: 1.2rem;
  width: 100%;
  justify-content: center;
  border-radius: 2px;
}

.hf-cart-empty__login {
  font-size: 1.2rem;
  color: rgba(0,0,0,0.5);
  margin: 0;
  margin-top: 0.8rem;
}

.hf-cart-empty__login-link {
  color: #111111;
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--dur-fast);
}
.hf-cart-empty__login-link:hover { color: #555555; }

/* ── Cart Items List ── */
/* Clean cart item CSS — no duplicated qty/price rules */

/* Hard protection against horizontal overflow */
.drawer__cart,
.drawer__inner,
.drawer__cart-items-wrapper,
.hf-cart-items,
.hf-cart-item,
.hf-cart-item__details,
.hf-cart-item__row,
.hf-cart-item__qty-wrap,
.hf-cart-item__price-wrap {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.drawer__cart,
.drawer__inner,
.drawer__cart-items-wrapper {
  overflow-x: hidden;
}

.hf-cart-items {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.hf-cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 16px 0;
}

.hf-cart-item__media {
  width: 96px;
  min-width: 96px;
}

.hf-cart-item__img {
  display: block;
  width: 100%;
  height: 96px;
  object-fit: contain;
}

.hf-cart-item__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hf-cart-item__name {
  display: block;
  min-width: 0;
  max-width: 100%;
  color: #111111;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hf-cart-item__variant {
  margin-top: 6px;
  color: #777777;
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hf-cart-item__variant::first-letter {
  color: #111111;
}

/* Correct order: qty/remove left, price right */
.hf-cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
  margin-top: 10px;
}

.hf-cart-item__qty-wrap {
  order: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}

.hf-cart-item__price-wrap {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-left: auto;
  margin-right: 8%;
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  flex: 1 1 auto;
  position: relative;
}

/* Quantity control */
.hf-cart-item .hf-qty-ctrl {
  width: 96px !important;
  height: 32px !important;
  min-height: 32px !important;
  display: grid !important;
  grid-template-columns: 28px 1fr 28px !important;
  align-items: center !important;
  border: 1px solid #dedede !important;
  border-radius: 3px !important;
  overflow: hidden !important;
  background: #ffffff !important;
}

.hf-cart-item .hf-qty-ctrl::before,
.hf-cart-item .hf-qty-ctrl::after {
  display: none !important;
}

.hf-cart-item .hf-qty-btn {
  width: 28px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(0,0,0,0.65) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  transition: color var(--dur-fast), opacity var(--dur-fast) !important;
}

.hf-cart-item .hf-qty-btn:hover:not(:disabled) {
  color: #111111 !important;
}

.hf-cart-item .hf-qty-btn svg {
  display: block !important;
  opacity: 1 !important;
  pointer-events: none;
}

.hf-cart-item .hf-qty-input {
  width: 100% !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  color: #111111 !important;
  font-family: var(--ff-body) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  text-align: center !important;
  appearance: textfield !important;
  -moz-appearance: textfield !important;
}

.hf-cart-item .hf-qty-input::-webkit-outer-spin-button,
.hf-cart-item .hf-qty-input::-webkit-inner-spin-button {
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.hf-cart-item .hf-qty-btn:disabled,
.hf-cart-item .hf-qty-btn[aria-disabled="true"] {
  opacity: 0.35 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Remove button */
.hf-cart-item__remove {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: rgba(0,0,0,0.8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  cursor: pointer !important;
  transition: color var(--dur-fast), opacity var(--dur-fast) !important;
}

.hf-cart-item__remove:hover {
  color: #000000 !important;
  background: transparent !important;
  opacity: 1 !important;
}

/* Prices */
.hf-cart-item__price {
  color: #111111;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hf-cart-item__price--sale {
  color: #111111;
  order: 1;
}

.hf-cart-item__price--compare {
  color: rgba(0,0,0,0.45);
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  order: 2;
}

/* Tablet */
@media screen and (min-width: 750px) and (max-width: 1023px) {
  .hf-cart-item {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .hf-cart-item__media {
    width: 110px;
    min-width: 110px;
  }

  .hf-cart-item__img {
    height: 110px;
  }

  .hf-cart-item__name {
    font-size: 13px;
  }

  .hf-cart-item__variant {
    font-size: 14px;
  }

  .hf-cart-item .hf-qty-ctrl {
    width: 104px !important;
    height: 36px !important;
    min-height: 36px !important;
    grid-template-columns: 32px 1fr 32px !important;
  }

  .hf-cart-item .hf-qty-btn,
  .hf-cart-item .hf-qty-input {
    height: 36px !important;
    min-height: 36px !important;
  }

  .hf-cart-item .hf-qty-btn {
    width: 32px !important;
  }

  .hf-cart-item .hf-qty-input {
    font-size: 15px !important;
  }

  .hf-cart-item__price {
    font-size: 13px;
  }

  .hf-cart-item__price--compare {
    font-size: 14px;
  }
}



/* Extremely narrow screens: let price move below instead of overflowing */
@media screen and (max-width: 340px) {
  .hf-cart-item__row {
    flex-wrap: wrap;
  }

  .hf-cart-item__price-wrap {
    flex: 1 1 100%;
    justify-content: flex-start;
    margin-left: 0;
  }
}


/* ── Footer ── */
.hf-drawer__footer {
  padding: 2.4rem 1.9rem 2rem !important;
  border-top: 1px solid rgba(0,0,0,0.06) !important;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
  background: #fdfdfd;
}

.hf-cart-discounts {
  margin: 0;
  padding: 0;
}

.hf-cart-totals {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}

.hf-cart-totals__label {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  font-family: var(--ff-body);
  font-weight: 600;
}

.hf-cart-totals__price {
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: #111111;
  letter-spacing: 0.02em;
}

.hf-cart-tax-note {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.6;
  display: block;
}

/* CTA Buttons */
.hf-cart-ctas {
  display: flex;
  flex-direction: column;
  gap: 1.2rem; 
}

.hf-cart-ctas__checkout,
.hf-cart-ctas__view {
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: 0.2s;
}

.hf-cart-ctas__checkout {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  padding: 14px !important;
}
.hf-cart-ctas__checkout:hover {
  background: #222 !important;
}
.hf-cart-ctas__checkout:disabled {
  background: rgba(0,0,0,0.05) !important;
  border-color: transparent !important;
  cursor: not-allowed !important;
  color: rgba(0,0,0,0.3) !important;
  box-shadow: none !important;
  transform: none;
}

.hf-cart-ctas__view {
  background: transparent !important;
  color: #111111 !important;
  border-color: #111111 !important;
  padding: 10px !important;
}

/* Payment Icons */
.hf-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.48rem;
  padding-top: 0.4rem;
}

.hf-payment-icon {
  height: 22px;
  width: auto;
  border-radius: 3px;
}
.hf-payment-icon:hover { opacity: 0.85; }

.cart-drawer {
  width: 100%;
  height: 100%;
}

.hf-drawer__inner {
  background: var(--clr-surface);
  border-left: 1px solid var(--clr-border);
}

.cart-drawer__header {
  padding: 2.4rem 3.2rem;
  border-bottom: 1px solid var(--clr-border-sub);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.28rem;
}
.cart-drawer__count {
  font-size: 1.15rem;
  color: var(--clr-muted);
  letter-spacing: 0.12em;
  font-family: var(--ff-body);
  font-weight: 400;
}
.cart-drawer__close {
  color: var(--clr-muted);
  transition: color var(--dur-fast);
  padding: 0.64rem;
  display: flex;
}
.cart-drawer__close:hover { color: var(--clr-text); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 3.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(196,151,62,0.25) transparent;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.6rem;
  text-align: center;
}
.cart-empty svg { color: var(--clr-muted); opacity: 0.35; }
.cart-empty p { color: var(--clr-muted); font-size: 1.41rem; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.6rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--clr-border-sub);
}
.cart-item__img {
  aspect-ratio: 1;
  background: var(--clr-card);
  overflow: hidden;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item__name {
  font-family: var(--ff-heading);
  font-size: 1.52rem;
  color: var(--clr-text);
  margin-bottom: 0.32rem;
  line-height: 1.3;
}
.cart-item__variant {
  font-size: 1.15rem;
  color: var(--clr-muted);
  margin-bottom: 1.2rem;
}
.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.qty-ctrl button {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-platinum);
  font-size: 1.6rem;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.qty-ctrl button:hover {
  background: rgba(196,151,62,0.1);
  color: var(--clr-gold);
}
.qty-ctrl input {
  width: 34px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-size: 1.31rem;
  -moz-appearance: textfield;
  outline: none;
}
.qty-ctrl input::-webkit-outer-spin-button,
.qty-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; }

.cart-item__price { font-size: 1.44rem; color: var(--clr-text); font-weight: 500; }
.cart-item__remove {
  font-size: 1.04rem;
  color: var(--clr-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 0.8rem;
  background: none; border: none;
  padding: 0;
  transition: color var(--dur-fast);
  display: block;
  text-decoration: underline;
}
.cart-item__remove:hover { color: #E74C3C; }

.cart-drawer__footer {
  padding: 2.4rem 3.2rem;
  border-top: 1px solid var(--clr-border-sub);
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.92rem;
}
.cart-subtotal__label {
  font-size: 1.09rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
}
.cart-subtotal__price {
  font-family: var(--ff-heading);
  font-size: 2.16rem;
  color: var(--clr-text);
}

.cart-checkout-btn {
  display: block;
  width: 100%;
  padding: 1.76rem;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
}
.cart-checkout-btn:hover { background: var(--clr-gold-lt); }

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 1.6rem;
  font-size: 1.09rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  transition: color var(--dur-fast);
  cursor: pointer;
  background: none; border: none;
  width: 100%;
}
.cart-continue:hover { color: var(--clr-text); }

/* === COLLECTION PAGE === */
.collection-hero {
  height: 42vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4.8rem;
  position: relative;
  overflow: hidden;
  background: var(--clr-surface);
  margin-top: var(--header-h);
}
.collection-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.collection-hero__content { position: relative; z-index: 1; }
.collection-hero__title { color: var(--clr-text); }

.collection-filters {
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--clr-border-sub);
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}
.filter-tag {
  padding: 0.72rem 1.92rem;
  font-size: 1.09rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--clr-muted);
  background: transparent;
  transition: all var(--dur-fast);
  cursor: pointer;
}
.filter-tag:hover, .filter-tag.is-active {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.collection-grid { padding: 4.8rem 0; }
.collection-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

/* === PRODUCT PAGE === */
.product-page {
  padding-top: calc(var(--header-h) + 4.8rem);
  padding-bottom: 8rem;
}
.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(4.8rem, 5vw, 9.6rem);
  align-items: start;
}

.gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--clr-card);
  position: relative;
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease, transform 0.35s ease;
}

.gallery__thumbs {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.6rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  width: 76px; aspect-ratio: 1;
  background: var(--clr-card);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur-fast);
  flex-shrink: 0;
  overflow: hidden;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active,
.gallery__thumb:hover { border-color: var(--clr-gold); }

.product-info__col-tag {
  font-size: 1.09rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 0.96rem;
  display: block;
}
.product-info__title {
  font-family: var(--ff-heading);
  font-size: clamp(3.2rem, 3.5vw, 4.48rem);
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 1.92rem;
  line-height: 1.2;
}
.product-info__price {
  font-family: var(--ff-heading);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--clr-text);
  margin-bottom: 3.2rem;
}

.product-divider {
  border: none;
  border-top: 1px solid var(--clr-border-sub);
  margin-block: 2.88rem;
}

.variant-label {
  font-size: 1.04rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-muted);
  margin-bottom: 1.2rem;
  display: block;
}
.variant-options {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.variant-btn {
  padding: 0.8rem 1.92rem;
  font-size: 1.15rem;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: var(--clr-text);
  cursor: pointer;
  transition: all var(--dur-fast);
  letter-spacing: 0.1em;
}
.variant-btn.is-active, .variant-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}
.variant-btn.is-sold-out {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.qty-row {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 2.4rem;
}
.qty-row .qty-ctrl { border: 1px solid rgba(255,255,255,0.15); }

.add-btn {
  flex: 1;
  padding: 1.6rem 2.4rem;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.96rem;
}
.add-btn:hover { background: var(--clr-gold-lt); }
.add-btn:disabled { background: var(--clr-muted); cursor: not-allowed; }

.product-perks {
  display: flex;
  flex-direction: column;
  gap: 1.12rem;
  margin-top: 2.88rem;
}
.perk {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.31rem;
  color: var(--clr-muted);
}
.perk svg { color: var(--clr-gold); flex-shrink: 0; }

.product-info__desc {
  color: var(--clr-muted);
  font-size: 1.44rem;
  line-height: 1.95;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* === GLOBAL ANIMATIONS === */
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { to { opacity: 1; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Gold shimmer utility */
.shimmer {
  background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-gold-lt) 40%, var(--clr-gold) 60%, var(--clr-gold-lt) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .products-grid, .testimonials__grid, .pillars-grid, .collection-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 4.8rem; }
  .brand-story__content { padding: clamp(3.2rem, 4vw, 5.6rem); }
  .product-layout { grid-template-columns: 1fr; gap: 4.8rem; }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
    --sp-xl: 8rem;
  }

  .header-nav  { display: none; }
  .header-hamburger { display: flex; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-logo  { grid-column: unset; font-size: 2rem; }
  .header-actions .header-action-btn:not(#cart-btn) { display: none; }

  .products-grid, .collection-products { grid-template-columns: 1fr; }
  .testimonials__grid, .pillars-grid   { grid-template-columns: 1fr; }

  .brand-story__grid {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .brand-story__visual { height: 340px; }
  .brand-story__visual-overlay { background: linear-gradient(to bottom, transparent 50%, var(--clr-surface)); }

  .footer__grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; gap: 2.4rem; }

  .newsletter__form { flex-direction: column; }
  .newsletter__submit { padding: 1.44rem; }

  .hero__cta { flex-direction: column; align-items: flex-start; }

  .cart-drawer { width: 100%; }
}

@media (max-width: 480px) {
  .brand-story__visual { height: 280px; }
  .bestsellers__track .product-card { width: 260px; }
}

/* === TRANSPARENT HEADER ON HOMEPAGE === */
.template-index .section-header {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.template-index .header__heading-link,
.template-index .header__menu-item,
.template-index .header__icon,
.template-index .header__active-menu-item {
  color: var(--clr-platinum) !important;
}
.template-index .header__heading-logo {
  filter: invert(1) brightness(2) !important;
}
.header {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.header__inline-menu {
  justify-self: center !important;
  margin: 0 auto !important;
}
localization-form, .header__localization {
  display: none !important;
}
/* Premium Cart CSS */

.premium-cart-section {
  
  max-width: 150rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

@media screen and (min-width: 750px) {
    .premium-cart-section {
        padding: 4rem 5rem;
    }
}

.premium-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  border-bottom: none;
  padding-bottom: 12px;
}

.premium-cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: #1A1F24;
  margin: 0;
  padding: 0;
}

.premium-cart-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6B7280;
  margin: 8px 0 0 0;
}

.premium-cart-continue-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1A1F24;
  text-decoration: none;
}

.premium-cart-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

/* Left Column - Items */
.premium-cart-contents {
  flex: 1;
}

.premium-cart-item {
  display: flex;
  padding: 24px 0;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 8px;
}

.premium-cart-item-image img {
  width: 192px;
  height: 195px;
  object-fit: cover;
  background-color: transparent;
}

.premium-cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  gap: 10px;
  padding-right: 24px;
}

.premium-cart-item-title {
  font-family: 'inter', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #1A1A1A;
  text-decoration: none;
  display: block;
}

.premium-cart-item-price {
  font-family: 'inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #363738;
  margin-bottom: 6px;
}

.premium-cart-item-color {
  font-family: 'inter', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #4B5563;
}

.premium-cart-item-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #2E7D32;
  margin-top: 12px;
}

.premium-cart-item-actions {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
  padding-bottom: 5px;
}

.premium-cart-quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  height: 40px;
}

.premium-quantity-btn {
  background: none;
  border: none;
  font-family: 'inter';
  font-weight: 400;
  font-size: 16px;
  color: #6B7280;
  padding: 8px 16px;
  cursor: pointer;
}

.premium-quantity-input {
  width: 48px;
  border: none;
  text-align: center;
  font-family: 'inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #1A1A1A;
  padding: 0;
  margin: 0;
}
.premium-quantity-input::-webkit-outer-spin-button,
.premium-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.premium-cart-remove-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6B7280;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
}

/* Right Column - Summary */
.premium-cart-summary {
  width: 394px;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  padding: 32px;
}



.premium-summary-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #111827;
  margin: 0 0 16px 0;
  padding-bottom: 16px;
}

.premium-summary-details {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.premium-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.premium-summary-row:last-child {
  margin-bottom: 0;
}

.premium-summary-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4B5563;
}
.premium-summary-value {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #111827;
}

.premium-summary-discount .premium-summary-label {
  display: flex;
  align-items: center;
  gap: 6px;
}
.premium-summary-value-discount {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.premium-summary-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.premium-summary-total-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #111827;
}

.premium-summary-total-amount {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.premium-summary-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 24px;
  color: #111827;
}

.premium-summary-total-currency {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6B7280;
  padding-bottom: 4px;
}

.premium-summary-tax-note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6B7280;
  margin: 0 0 24px 0;
}

.premium-summary-checkout-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  background: #000000;
  border-radius: 6px;
  border: none;
  padding: 16px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  cursor: pointer;
  margin-bottom: 8px;
}
.premium-summary-checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.premium-summary-secure-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 24px;
}

.premium-summary-pay-with {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.premium-summary-pay-with-divider {
  flex: 1;
  height: 1px;
  background: #E5E7EB;premium-cart-item-title
}

.premium-summary-pay-with-text {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #9CA3AF;
  letter-spacing: 0.6px;
}

.premium-summary-payment-options {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.premium-payment-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 40px;
  border-radius: 6px;
}

.premium-payment-shoppay {
  background: #5A31F4;
}
.premium-payment-paypal {
  background: #FFC439;
}
.premium-payment-gpay {
  background: #000000;
}

@media screen and (max-width: 1024px) {
  .premium-cart-layout {
    flex-direction: column;
  }
  .premium-cart-summary {
    width: 100%;
  }
}


/* Recommendations Section */
.premium-recommendations-section {
  padding-top: 48px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.premium-recommendations-header {
  margin-bottom: 32px;
}

.premium-recommendations-title {
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #1A1F24;
  margin: 0;
}

.premium-recommendations-carousel {
  display: flex;
  gap: 13px;
  overflow-x: auto;
  padding-bottom: 16px;
}

.premium-recommendations-item {
  width: 274px;
  flex: none;
  display: flex;
  flex-direction: column;
}

.premium-recommendations-image-wrapper {
  background: #F9FAFB;
  border-radius: 4px;
  height: 306px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.premium-recommendations-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.premium-recommendations-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.premium-recommendations-name {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1A1F24;
  margin: 0;
}

.premium-recommendations-price {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #6B7280;
  margin: 0;
}

