/* =========================================================
   HARRETH OUTFITTERS
   MASTER STYLESHEET
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111111;
  color: #f4f4f4;
  line-height: 1.5;
}

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

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


/* =========================================================
   HARRETH COLORS
   ========================================================= */

:root {
  --black: #0b0b0b;
  --dark: #151515;
  --charcoal: #222222;
  --gray: #8d8d8d;
  --light: #f4f4f4;
  --white: #ffffff;

  --gold: #b7924a;
  --gold-hover: #d0aa60;
}


/* =========================================================
   SITE HEADER
   ========================================================= */

.site-header {
  height: 82px;
  padding: 0 4%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #050505;
  border-bottom: 1px solid #222;

  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  width: 220px;
  height: auto;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--white);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.8px;
  text-transform: uppercase;

  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  gap: 18px;

  color: var(--white);

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: 680px;

  position: relative;

  display: flex;
  align-items: center;

  padding: 60px 7%;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.55) 48%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    url("images/hero.png");

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 10%;
}

.hero-content {
  max-width: 680px;
}

.hero .eyebrow {
  color: var(--gold);

  font-size: 14px;
  font-weight: 900;

  text-transform: uppercase;
  letter-spacing: 3px;

  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(50px, 7vw, 92px);

  line-height: 0.95;
  font-weight: 900;

  letter-spacing: -3px;
  text-transform: uppercase;

  margin-bottom: 25px;
}

.hero-description {
  max-width: 570px;

  color: #d2d2d2;

  font-size: 18px;

  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-block;

  background: var(--gold);
  color: var(--black);

  padding: 16px 30px;

  border: 2px solid var(--gold);

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);

  transform: translateY(-2px);
}

.btn-dark {
  background: transparent;
  color: var(--white);

  border-color: var(--white);

  margin-left: 10px;
}

.btn-dark:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

section {
  padding: 85px 6%;
}

.section-heading {
  max-width: 1500px;
  margin: 0 auto 10px;
}

.section-heading > p {
  color: var(--white);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--white);

  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;

  line-height: 1;
  text-transform: uppercase;

  margin-top: 5px;
}


/* =========================================================
   HOME — SHOP HARRETH
   ========================================================= */

.categories {
  background:
    linear-gradient(
      rgba(10, 10, 10, 0.88),
      rgba(10, 10, 10, 0.88)
    ),
    url("images/topo-lines.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.category-grid {
  max-width: 1500px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.category-card {
  min-height: 440px;

  position: relative;
  overflow: hidden;

  background: #1f1f1f;

  display: flex;
  align-items: flex-end;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card img {
  position: absolute;

  width: 100%;
  height: 85%;

  top: 20px;
  left: 0;

  object-fit: contain;

  transition: transform 0.4s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.78) 18%,
      rgba(0, 0, 0, 0.20) 48%,
      rgba(0, 0, 0, 0.02) 72%
    );

  pointer-events: none;
}

.category-card > div {
  position: relative;
  z-index: 2;

  width: 100%;

  padding: 30px 22px 22px;
}

.category-card > div span {
  display: block;

  color: var(--gold);

  font-size: 14px;
  font-weight: 800;

  letter-spacing: 1px;

  margin-bottom: 3px;
}

.category-card > div h3 {
  color: var(--white);

  font-size: 25px;
  font-weight: 900;

  line-height: 1;
  letter-spacing: -0.5px;

  text-transform: uppercase;

  margin: 0 0 7px;
}

.category-card > div p {
  color: #d5d5d5;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;

  margin: 0;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.category-card:hover > div p {
  color: var(--white);

  transform: translateX(3px);
}


/* =========================================================
   BRAND STRIP
   ========================================================= */

.brand-strip {
  padding: 55px 6%;

  background: #111111;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-top: 1px solid #202020;
  border-bottom: 1px solid #202020;
}

.brand-strip p {
  color: var(--white);

  font-size: clamp(17px, 2vw, 24px);
  font-weight: 900;

  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
  background: #080808;

  padding: 55px 6% 25px;

  border-top: 1px solid #242424;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 30px;
}

.footer-brand h2 {
  color: var(--white);

  font-size: 30px;
  font-weight: 900;

  letter-spacing: 3px;
}

.footer-brand p {
  color: var(--gold);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 2px;
}

footer > p {
  color: #666;

  font-size: 12px;
}


/* =========================================================
   COLLECTION PAGES
   ========================================================= */

.mens-hero {
  background: #161616;

  padding: 90px 8%;

  border-bottom: 1px solid #2c2c2c;
}

.mens-hero-content {
  max-width: 800px;
}

.mens-hero h1 {
  font-size: clamp(42px, 6vw, 78px);

  margin: 10px 0 15px;

  line-height: 0.95;
}

.mens-hero-content > p:last-child {
  max-width: 620px;

  font-size: 18px;

  color: #c9c9c9;
}

.mens-shop {
  padding: 70px 8% 100px;

  background:
    linear-gradient(
      rgba(10, 10, 10, 0.88),
      rgba(10, 10, 10, 0.88)
    ),
    url("images/topo-lines.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mens-shop .section-heading {
  margin-bottom: 35px;
}

.mens-shop .section-heading h2 {
  font-size: clamp(32px, 4vw, 52px);

  margin-top: 6px;
}


/* =========================================================
   COLLECTION PRODUCT GRID
   ========================================================= */

.product-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.product-card {
  display: block;

  background: transparent;

  padding: 20px;

  cursor: pointer;

  transition: transform 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: contain;

  background: transparent;
}

.product-card h3 {
  margin: 18px 0 5px;

  color: var(--white);

  font-size: 20px;

  letter-spacing: 0.5px;
}

.product-card p {
  margin: 0;

  color: #a9a9a9;
}


/* =========================================================
   PRODUCT DETAIL PAGE
   ========================================================= */

.product-page {
  min-height: 700px;

  background:
    linear-gradient(
      rgba(10, 10, 10, 0.90),
      rgba(10, 10, 10, 0.90)
    ),
    url("images/topo-lines.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 90px 7%;
}

.product-page-grid {
  max-width: 1300px;

  margin: auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 70px;

  align-items: center;
}

.product-page-image {
  background: transparent;

  min-height: 600px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px;
}

.product-page-image img {
  width: 100%;
  max-height: 560px;

  object-fit: contain;
}

.product-page-info {
  max-width: 520px;
}

.product-eyebrow {
  color: var(--gold);

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 3px;
  text-transform: uppercase;

  margin-bottom: 10px;
}

.product-page-info h1 {
  color: #ffffff;

  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;

  line-height: 1;

  margin-bottom: 10px;
}

.product-color {
  color: #a7a7a7;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;

  margin-bottom: 20px;
}

.product-price {
  color: var(--gold);

  font-size: 28px;
  font-weight: 900;

  margin-bottom: 25px;
}

.product-description {
  color: #d0d0d0;

  font-size: 16px;
  line-height: 1.7;

  margin-bottom: 30px;
}

.product-option {
  margin-bottom: 25px;
}

.product-option label {
  display: block;

  color: #ffffff;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 1.5px;

  margin-bottom: 8px;
}

.product-option p {
  color: #d0d0d0;

  font-size: 15px;
}

.product-option select {
  width: 100%;

  background: #1b1b1b;
  color: #ffffff;

  border: 1px solid #444;

  padding: 14px;

  font-size: 14px;

  cursor: pointer;
}

.product-option select:focus {
  outline: none;

  border-color: var(--gold);
}

.add-cart-btn {
  width: 100%;

  background: var(--gold);
  color: #0b0b0b;

  border: none;

  padding: 17px;

  font-size: 13px;
  font-weight: 900;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  cursor: pointer;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.add-cart-btn:hover {
  background: var(--gold-hover);

  transform: translateY(-2px);
}


/* =========================================================
   HARRETH SNIPCART THEME
   ========================================================= */

/*
   !important is intentional here.
   Snipcart loads its own stylesheet dynamically after
   the HARRETH stylesheet, so these need to win.
*/

#snipcart {
  --color-default: #f4f4f4 !important;
  --color-alt: #9a9a9a !important;
  --color-icon: #b7924a !important;

  --color-success: #80a77a !important;
  --color-error: #d46a60 !important;


  /* LINKS */

  --color-link: #b7924a !important;
  --color-link-hover: #d0aa60 !important;
  --color-link-active: #d0aa60 !important;
  --color-link-focus: #d0aa60 !important;

  --borderColor-link: #b7924a !important;
  --borderColor-link-hover: #d0aa60 !important;

  --bgColor-link: transparent !important;
  --bgColor-link-hover: transparent !important;
  --bgColor-link-active: transparent !important;
  --bgColor-link-focus: transparent !important;


  /* INPUT TEXT */

  --color-input: #ffffff !important;
  --color-input-hover: #ffffff !important;
  --color-input-focus: #ffffff !important;
  --color-input-checked: #0b0b0b !important;
  --color-input-disabled: #777777 !important;
  --color-input-error: #d46a60 !important;

  --color-inputLabel: #f4f4f4 !important;
  --color-inputLabel-hover: #ffffff !important;
  --color-inputLabel-focus: #b7924a !important;

  --color-inputIcon: #b7924a !important;
  --color-inputIcon-hover: #d0aa60 !important;
  --color-inputIcon-focus: #d0aa60 !important;
  --color-inputIcon-checked: #0b0b0b !important;
  --color-inputIcon-error: #d46a60 !important;

  --color-inputPlaceholder: #777777 !important;


  /* INPUT BORDERS */

  --borderColor-input: #444444 !important;
  --borderColor-input-hover: #b7924a !important;
  --borderColor-input-focus: #b7924a !important;
  --borderColor-input-checked: #b7924a !important;
  --borderColor-input-disabled: #292929 !important;
  --borderColor-input-error: #d46a60 !important;


  /* INPUT BACKGROUNDS */

  --bgColor-input: #171717 !important;
  --bgColor-input-hover: #1d1d1d !important;
  --bgColor-input-focus: #1d1d1d !important;
  --bgColor-input-checked: #b7924a !important;
  --bgColor-input-disabled: #101010 !important;
  --bgColor-input-error: #201313 !important;
  --bgColor-input-autofill: #222222 !important;

  --shadow-input-hover: none !important;

  --shadow-input-focus:
    0 0 0 2px rgba(183, 146, 74, 0.25) !important;

  --shadow-input-checked: none !important;


  /* PRIMARY BUTTONS */

  --color-buttonPrimary: #0b0b0b !important;
  --color-buttonPrimary-hover: #0b0b0b !important;
  --color-buttonPrimary-active: #0b0b0b !important;
  --color-buttonPrimary-focus: #0b0b0b !important;
  --color-buttonPrimary-disabled: #777777 !important;
  --color-buttonPrimary-success: #0b0b0b !important;
  --color-buttonPrimary-error: #ffffff !important;

  --borderColor-buttonPrimary: #b7924a !important;
  --borderColor-buttonPrimary-hover: #d0aa60 !important;
  --borderColor-buttonPrimary-focus: #d0aa60 !important;
  --borderColor-buttonPrimary-disabled: #333333 !important;
  --borderColor-buttonPrimary-success: #80a77a !important;
  --borderColor-buttonPrimary-error: #d46a60 !important;

  --bgColor-buttonPrimary: #b7924a !important;
  --bgColor-buttonPrimary-hover: #d0aa60 !important;
  --bgColor-buttonPrimary-active: #a7823d !important;
  --bgColor-buttonPrimary-focus: #d0aa60 !important;
  --bgColor-buttonPrimary-disabled: #333333 !important;
  --bgColor-buttonPrimary-success: #80a77a !important;
  --bgColor-buttonPrimary-error: #d46a60 !important;

  --shadow-buttonPrimary-hover:
    0 8px 20px rgba(0, 0, 0, 0.35) !important;

  --shadow-buttonPrimary-active: none !important;

  --shadow-buttonPrimary-focus:
    0 0 0 3px rgba(183, 146, 74, 0.25) !important;


  /* SECONDARY BUTTONS */

  --color-buttonSecondary: #f4f4f4 !important;
  --color-buttonSecondary-hover: #b7924a !important;
  --color-buttonSecondary-active: #d0aa60 !important;
  --color-buttonSecondary-focus: #b7924a !important;
  --color-buttonSecondary-disabled: #666666 !important;
  --color-buttonSecondary-success: #80a77a !important;
  --color-buttonSecondary-error: #d46a60 !important;

  --borderColor-buttonSecondary: #444444 !important;
  --borderColor-buttonSecondary-hover: #b7924a !important;
  --borderColor-buttonSecondary-focus: #b7924a !important;
  --borderColor-buttonSecondary-disabled: #292929 !important;
  --borderColor-buttonSecondary-success: #80a77a !important;
  --borderColor-buttonSecondary-error: #d46a60 !important;

  --bgColor-buttonSecondary: #181818 !important;
  --bgColor-buttonSecondary-hover: #202020 !important;
  --bgColor-buttonSecondary-active: #242424 !important;
  --bgColor-buttonSecondary-focus: #202020 !important;
  --bgColor-buttonSecondary-disabled: #101010 !important;
  --bgColor-buttonSecondary-success: #172218 !important;
  --bgColor-buttonSecondary-error: #281513 !important;


  /* DANGER / DELETE */

  --color-buttonDanger: #d46a60 !important;
  --color-buttonDanger-hover: #ffffff !important;
  --color-buttonDanger-active: #ffffff !important;
  --color-buttonDanger-focus: #ffffff !important;
  --color-buttonDanger-disabled: #666666 !important;

  --borderColor-buttonDanger: transparent !important;
  --borderColor-buttonDanger-hover: transparent !important;
  --borderColor-buttonDanger-focus: transparent !important;

  --bgColor-buttonDanger: #2b1715 !important;
  --bgColor-buttonDanger-hover: #87332d !important;
  --bgColor-buttonDanger-active: #6b2924 !important;
  --bgColor-buttonDanger-focus: #87332d !important;
  --bgColor-buttonDanger-disabled: #161616 !important;


  /* CHECKOUT BADGES */

  --color-badge: #0b0b0b !important;
  --color-badge-active: #0b0b0b !important;
  --color-badge-disabled: #777777 !important;

  --borderColor-badge: #b7924a !important;
  --borderColor-badge-active: #d0aa60 !important;
  --borderColor-badge-disabled: #333333 !important;

  --bgColor-badge: #b7924a !important;
  --bgColor-badge-active: #d0aa60 !important;
  --bgColor-badge-disabled: #1a1a1a !important;


  /* ENTIRE CART / CHECKOUT */

  --borderColor-default: #303030 !important;
  --borderColor-error: #87332d !important;

  --bgColor-default: #171717 !important;
  --bgColor-alt: #101010 !important;

  --bgColor-success: #162118 !important;
  --bgColor-error: #2b1715 !important;
  --bgColor-info: #1c1c1c !important;

  --bgColor-modal: #0b0b0b !important;
  --bgColor-modalVeil: rgba(0, 0, 0, 0.92) !important;
}


/* =========================================================
   SNIPCART — FORCE HARRETH APPEARANCE
   ========================================================= */

#snipcart,
#snipcart .snipcart-modal,
#snipcart .snipcart-modal__container,
#snipcart .snipcart-cart,
#snipcart .snipcart-cart__content,
#snipcart .snipcart-layout,
#snipcart .snipcart-layout__content,
#snipcart .snipcart-checkout {
  background-color: #0b0b0b !important;
  color: #f4f4f4 !important;
}


/* TOPO BACKGROUND */

#snipcart .snipcart-modal__container,
#snipcart .snipcart-cart__content,
#snipcart .snipcart-layout__content {
  background:
    linear-gradient(
      rgba(10, 10, 10, 0.96),
      rgba(10, 10, 10, 0.96)
    ),
    url("images/topo-lines.png") !important;

  background-size: cover !important;
  background-position: center !important;
}


/* CART / CHECKOUT PANELS */

#snipcart .snipcart-item-line,
#snipcart .snipcart-cart-summary,
#snipcart .snipcart-cart-summary__content,
#snipcart .snipcart-checkout-step,
#snipcart .snipcart-billing-completed,
#snipcart .snipcart-payment-methods__container,
#snipcart .snipcart-order__invoice-number,
#snipcart .snipcart-order__details {
  background: #171717 !important;

  border-color: #303030 !important;

  color: #f4f4f4 !important;
}


/* ALL MAJOR TEXT */

#snipcart .snipcart__font--std,
#snipcart .snipcart__font--subtitle,
#snipcart .snipcart__font--secondary,
#snipcart .snipcart__font--tiny,
#snipcart .snipcart__font--slim,
#snipcart .snipcart__font--bold {
  color: #f4f4f4 !important;
}


/* HEADINGS */

#snipcart h1,
#snipcart h2,
#snipcart h3,
#snipcart h4,
#snipcart .snipcart-cart-header__title,
#snipcart .snipcart-cart-summary__title,
#snipcart .snipcart-checkout-step__title,
#snipcart .snipcart-item-line__title {
  color: #ffffff !important;
}


/* PRODUCT OPTIONS */

#snipcart .snipcart-item-line__variant,
#snipcart .snipcart-item-custom-fields__field {
  color: #b7924a !important;
}


/* PRICE / TOTAL */

#snipcart .snipcart-item-line__price,
#snipcart .snipcart-cart-summary-fees__total,
#snipcart .snipcart-summary-fees__amount,
#snipcart .snipcart-cart-summary-fees__amount {
  color: #ffffff !important;
}

#snipcart .snipcart-cart-summary-fees__total {
  color: #b7924a !important;

  font-weight: 900 !important;
}


/* PRIMARY CHECKOUT BUTTON */

#snipcart .snipcart-base-button.is-primary,
#snipcart .snipcart-button-primary {
  background: #b7924a !important;

  border-color: #b7924a !important;

  color: #0b0b0b !important;

  font-weight: 900 !important;

  letter-spacing: 1.3px !important;

  text-transform: uppercase !important;

  border-radius: 0 !important;
}

#snipcart .snipcart-base-button.is-primary:hover,
#snipcart .snipcart-button-primary:hover {
  background: #d0aa60 !important;

  border-color: #d0aa60 !important;

  color: #0b0b0b !important;
}


/* SECONDARY BUTTONS */

#snipcart .snipcart-button-secondary {
  background: #181818 !important;

  border-color: #444444 !important;

  color: #ffffff !important;

  border-radius: 0 !important;
}

#snipcart .snipcart-button-secondary:hover {
  border-color: #b7924a !important;

  color: #b7924a !important;
}


/* FORM FIELDS */

#snipcart input,
#snipcart select,
#snipcart textarea {
  background: #171717 !important;

  color: #ffffff !important;

  border-color: #444444 !important;

  border-radius: 0 !important;
}

#snipcart input:focus,
#snipcart select:focus,
#snipcart textarea:focus {
  border-color: #b7924a !important;

  outline: none !important;
}


/* QUANTITY CONTROLS */

#snipcart .snipcart-button-icon {
  background: #1b1b1b !important;

  color: #b7924a !important;

  border-color: #333333 !important;
}


/* LINKS */

#snipcart a {
  color: #b7924a !important;
}

#snipcart a:hover {
  color: #d0aa60 !important;
}


/* ICONS */

#snipcart svg {
  color: #b7924a;
}


/* REMOVE BLUE ACCENTS */

#snipcart .snipcart__icon--blue,
#snipcart .snipcart__icon--brand {
  color: #b7924a !important;
}


/* SQUARE HARRETH STYLE */

#snipcart button,
#snipcart input,
#snipcart select,
#snipcart textarea,
#snipcart .snipcart-base-button {
  border-radius: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .site-header {
    padding: 0 20px;
  }

  nav {
    gap: 18px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 700px) {

  section {
    padding: 60px 20px;
  }

  .site-header {
    height: 70px;

    padding: 0 18px;
  }

  .logo img {
    width: 170px;
  }

  nav {
    display: none;
  }

  .header-actions {
    gap: 10px;

    font-size: 10px;
  }

  .hero {
    min-height: 620px;

    padding: 70px 22px;

    align-items: flex-end;

    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92),
        rgba(0, 0, 0, 0.25)
      ),
      url("images/hero.png");

    background-size: cover;
    background-position: 35% center;
    background-repeat: no-repeat;
  }

  .hero h1 {
    font-size: 52px;

    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    display: block;
  }

  .btn {
    width: 100%;

    text-align: center;

    margin-bottom: 10px;
  }

  .btn-dark {
    margin-left: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

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

  .category-card > div {
    padding: 26px 20px 20px;
  }

  .category-card > div h3 {
    font-size: 23px;
  }

  .brand-strip {
    flex-direction: column;
    align-items: flex-start;

    padding: 45px 20px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;

    padding-left: 20px;
    padding-right: 20px;
  }

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

  .mens-hero {
    padding: 65px 6%;
  }

  .mens-shop {
    padding: 50px 6% 80px;
  }

}


/* =========================================================
   PRODUCT PAGE — SMALL SCREENS
   ========================================================= */

@media (max-width: 800px) {

  .product-page {
    padding: 55px 6%;
  }

  .product-page-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .product-page-image {
    min-height: 420px;

    padding: 20px;
  }

  .product-page-info {
    max-width: none;
  }

}

/* =========================================================
   HOME — SHOP HARRETH HEADING TREATMENT
   Gold eyebrow + fading gold line + bold white headline
   ========================================================= */

.categories .section-heading {
  max-width: 1500px;
  margin: 0 auto 32px;
}

.categories .section-heading > p {
  display: flex;
  align-items: center;
  gap: 14px;

  color: var(--gold);

  font-size: 14px;
  font-weight: 900;

  letter-spacing: 4px;
  text-transform: uppercase;

  white-space: nowrap;
}

.categories .section-heading > p::after {
  content: "";

  display: block;

  width: min(430px, 42vw);
  height: 2px;

  background:
    linear-gradient(
      to right,
      rgba(183, 146, 74, 1) 0%,
      rgba(183, 146, 74, 0.78) 38%,
      rgba(183, 146, 74, 0.30) 72%,
      rgba(183, 146, 74, 0) 100%
    );
}

.categories .section-heading h2 {
  margin-top: 12px;

  color: var(--white);

  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -1px;
  text-transform: uppercase;
}

@media (max-width: 700px) {

  .categories .section-heading {
    margin-bottom: 24px;
  }

  .categories .section-heading > p {
    gap: 10px;

    font-size: 11px;

    letter-spacing: 2.8px;
  }

  .categories .section-heading > p::after {
    width: min(220px, 44vw);
  }

  .categories .section-heading h2 {
    font-size: clamp(30px, 9vw, 44px);

    line-height: 1;
  }

}


/* =========================================================
   LIVE HEADER CART — CLEAN FINAL VERSION
   ========================================================= */

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

  color: var(--white);

  font-size: 12px;
  font-weight: 700;
}

.header-actions > span {
  color: var(--white);
}

.site-header .header-cart {
  all: unset;

  display: inline;

  color: var(--white);

  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;

  line-height: 1;

  cursor: pointer;

  transition: color 0.2s ease;
}

.site-header .header-cart:hover {
  color: var(--gold);
}

.site-header .header-cart:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.site-header .header-cart .snipcart-items-count {
  color: inherit;
  font: inherit;
}


/* =========================================================
   PHONE — HEADER CART
   ========================================================= */

@media (max-width: 700px) {

  .header-actions {
    gap: 10px;

    font-size: 10px;
  }

  .site-header .header-cart {
    font-size: 10px;
  }

}