@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Playfair+Display:wght@700;900&family=Rye&display=swap");

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --plum-black: #150517;
  --plum: #26092b;
  --plum-soft: #3a1242;
  --pink: #ff2fa7;
  --pink-deep: #b91277;
  --cyan: #17d9e8;
  --cyan-deep: #087d90;
  --gold: #f8d77a;
  --gold-rich: #b87722;
  --white: #fff9ff;
  --muted: rgba(255, 249, 255, 0.76);
  --line: rgba(248, 215, 122, 0.28);
  --line-bright: rgba(23, 217, 232, 0.42);
  --shadow-pink: 0 0 30px rgba(255, 47, 167, 0.28);
  --shadow-cyan: 0 0 26px rgba(23, 217, 232, 0.22);
  --shadow-gold: 0 0 26px rgba(248, 215, 122, 0.22);
  --gold-gradient: linear-gradient(135deg, #fff6b5 0%, #f8d77a 36%, #c7842c 72%, #fff0a8 100%);
  --pink-gradient: linear-gradient(135deg, #ff2fa7 0%, #a9157d 55%, #391448 100%);
  --cyan-gradient: linear-gradient(135deg, #17d9e8 0%, #098aa0 60%, #16415a 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 47, 167, 0.16), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(23, 217, 232, 0.12), transparent 28%),
    linear-gradient(145deg, var(--plum-black), #0b0310 58%, #1d0626);
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(90deg, transparent 0 49%, rgba(248, 215, 122, 0.12) 50%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(23, 217, 232, 0.08) 50%, transparent 51%);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(21, 5, 23, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Rye", "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--white);
  text-shadow: 0 0 14px rgba(255, 47, 167, 0.42);
}

.brand::before {
  content: "";
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: url("hat-dollar.png") center / cover no-repeat;
  box-shadow: var(--shadow-gold);
}

.brand span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.08);
  color: var(--gold);
  font: inherit;
  font-weight: 800;
  padding: 8px 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--white);
}

.nav-links a:hover,
.nav-links a.active {
  border-color: rgba(255, 47, 167, 0.44);
  color: var(--gold);
  box-shadow: var(--shadow-pink);
}

.nav-links .shop-link {
  background: var(--cyan-gradient);
  color: var(--plum-black);
  border-color: rgba(23, 217, 232, 0.62);
  box-shadow: var(--shadow-cyan);
}

.nav-links .shop-link:hover,
.nav-links .shop-link.active {
  color: var(--white);
  background: var(--pink-gradient);
}

.hero {
  min-height: 88vh;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.18), rgba(21, 5, 23, 0.9)),
    url("Howdy Glam Hero Banner.png") center / cover no-repeat;
}

.storefront-hero {
  height: 353.53px;
  min-height: 353.53px;
  align-items: end;
}

.storefront-hero .hero-inner {
  max-width: 1180px;
  padding: 72px 0 30px;
}

.storefront-hero .hero-title {
  max-width: 780px;
  font-size: 3.65rem;
}

.storefront-hero .hero-copy {
  max-width: 760px;
  margin-top: 14px;
  font-size: 1.05rem;
}

.storefront-hero .actions {
  margin-top: 18px;
}

.hero::after,
.page-hero::after,
.holding::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 47, 167, 0.22), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(23, 217, 232, 0.2), transparent 22%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 150px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 5, 23, 0.72);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: var(--shadow-gold);
}

.eyebrow::before,
.kicker::before {
  content: "*";
  margin-right: 8px;
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(23, 217, 232, 0.75);
}

.hero-title,
.page-title,
.section-title {
  margin: 0;
  font-family: "Rye", "Playfair Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.04;
  text-shadow: 0 0 18px rgba(255, 47, 167, 0.44), 0 3px 0 rgba(0, 0, 0, 0.38);
}

.hero-title,
.page-title {
  color: #fff7de;
  -webkit-text-stroke: 1px rgba(33, 8, 38, 0.78);
  text-shadow:
    0 2px 0 rgba(21, 5, 23, 0.92),
    0 10px 26px rgba(0, 0, 0, 0.52),
    0 0 20px rgba(255, 47, 167, 0.18);
}

.hero-title {
  max-width: 830px;
  margin-top: 18px;
  font-size: 4.7rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
button.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(248, 215, 122, 0.68);
  border-radius: 8px;
  background: var(--pink-gradient);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: var(--shadow-pink);
}

.button::after,
.product::after,
.tile::after,
.category-card::after,
.value::after,
.image-panel::after,
.contact-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 249, 255, 0.34), transparent 28%);
  transition: opacity 180ms ease;
}

.button:hover::after,
.product:hover::after,
.tile:hover::after,
.category-card:hover::after,
.value:hover::after,
.image-panel:hover::after,
.contact-list a:hover::after {
  opacity: 1;
}

.button:hover {
  border-color: rgba(23, 217, 232, 0.78);
  background: var(--cyan-gradient);
  color: var(--plum-black);
  box-shadow: var(--shadow-cyan);
}

.button.secondary {
  background: rgba(255, 249, 255, 0.06);
  border-color: var(--line-bright);
  color: var(--cyan);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(23, 217, 232, 0.12);
  color: var(--white);
}

.button.dark {
  background: var(--gold-gradient);
  color: var(--plum-black);
  border-color: rgba(248, 215, 122, 0.86);
  box-shadow: var(--shadow-gold);
}

.button.dark:hover {
  background: var(--pink-gradient);
  color: var(--white);
}

.band {
  padding: 74px 0;
  border-top: 1px solid rgba(248, 215, 122, 0.12);
}

.storefront-products,
.product {
  scroll-margin-top: 96px;
}

.storefront-products {
  padding-top: 46px;
}

.band.dark {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 47, 167, 0.12), transparent 30%),
    linear-gradient(145deg, #0c0311, var(--plum));
  color: var(--white);
}

.band.tint {
  background:
    radial-gradient(circle at 20% 0%, rgba(23, 217, 232, 0.11), transparent 32%),
    linear-gradient(145deg, #1b0721, #250828 62%, #120413);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section-heading .lead {
  max-width: 760px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-title {
  font-size: 2.65rem;
  color: var(--gold);
}

.lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.dark .lead,
.dark .body-copy {
  color: var(--muted);
}

.body-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.image-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-pink), var(--shadow-gold);
  background: rgba(255, 249, 255, 0.06);
}

.image-panel img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.marquee {
  overflow: hidden;
  background: var(--gold-gradient);
  color: var(--plum-black);
  border-top: 1px solid rgba(248, 215, 122, 0.7);
  border-bottom: 1px solid rgba(248, 215, 122, 0.7);
}

.marquee-track {
  display: inline-block;
  min-width: 100%;
  padding: 12px 0;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.collection-grid,
.category-grid,
.product-grid,
.values-grid {
  display: grid;
  gap: 22px;
}

.collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.home-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.tile,
.category-card,
.product,
.value {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.07);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(23, 217, 232, 0.06), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.tile {
  min-height: 270px;
  display: grid;
  align-items: end;
  padding: 26px;
  text-decoration: none;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.14), rgba(21, 5, 23, 0.86)),
    url("hat-dollar.png") center / cover no-repeat;
}

.category-card {
  min-height: 220px;
  display: grid;
  align-items: end;
  padding: 22px;
  text-decoration: none;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.06), rgba(21, 5, 23, 0.88)),
    url("hat-dollar.png") center / cover no-repeat;
}

.tile.teal {
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.12), rgba(21, 5, 23, 0.84)),
    url("brand-logo.jpg") center / cover no-repeat;
}

.category-card.teal {
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.12), rgba(21, 5, 23, 0.84)),
    url("brand-logo.jpg") center / cover no-repeat;
}

.category-card.gold {
  background:
    radial-gradient(circle at 32% 22%, rgba(248, 215, 122, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(21, 5, 23, 0.18), rgba(21, 5, 23, 0.9)),
    url("brand-sign.jpg") center / cover no-repeat;
}

.category-card.pink {
  background:
    radial-gradient(circle at 68% 16%, rgba(255, 47, 167, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(21, 5, 23, 0.14), rgba(21, 5, 23, 0.88)),
    url("brand-logo.jpg") center / cover no-repeat;
}

.tile:hover,
.category-card:hover,
.product:hover,
.value:hover {
  border-color: rgba(23, 217, 232, 0.56);
  box-shadow: var(--shadow-cyan), var(--shadow-pink);
}

.tile h3,
.category-card h3,
.product h3,
.value h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--gold);
}

.tile p,
.category-card p,
.product p,
.value p {
  margin: 10px 0 0;
  color: var(--muted);
}

.product {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-link,
.product h3 a {
  color: inherit;
  text-decoration: none;
}

.product-link {
  display: block;
}

.product h3 a:hover {
  color: var(--cyan);
}

.product-media {
  min-height: 210px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255, 47, 167, 0.26), transparent 48%),
    linear-gradient(135deg, var(--plum-soft), #08020d);
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.product-media-placeholder {
  min-height: 210px;
  padding: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(248, 215, 122, 0.22), transparent 34%),
    radial-gradient(circle at 28% 20%, rgba(255, 47, 167, 0.28), transparent 34%),
    linear-gradient(135deg, var(--plum-soft), #08020d);
}

.product-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-link:hover .product-media img {
  transform: scale(1.035);
}

.product-media img,
.gallery-main img,
.gallery-thumbs img,
.zoom-frame img {
  transition: transform 220ms ease;
}

.home-product-grid .product-media,
.home-product-grid .product-media-placeholder {
  min-height: 190px;
}

.home-product-grid .product-media img {
  height: 220px;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dotted rgba(248, 215, 122, 0.45);
}

.price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-gold);
}

.trust-strip div {
  min-height: 128px;
  padding: 18px;
  background:
    radial-gradient(circle at 82% 14%, rgba(23, 217, 232, 0.16), transparent 34%),
    rgba(255, 249, 255, 0.07);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.15;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.shopify-buy-shell {
  min-height: 260px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 167, 0.14), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(23, 217, 232, 0.12), transparent 28%),
    rgba(255, 249, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24), var(--shadow-gold);
}

.shopify-buy-error {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.product-gallery,
.product-detail-info {
  min-width: 0;
}

.product-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  z-index: 30;
}

.gallery-main {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(255, 47, 167, 0.18), transparent 44%),
    linear-gradient(135deg, var(--plum-soft), #08020d);
  cursor: zoom-in;
  box-shadow: var(--shadow-gold), 0 18px 40px rgba(0, 0, 0, 0.24);
  touch-action: manipulation;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  max-height: 620px;
  object-fit: contain;
}

.gallery-main.hover-zooming {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan), var(--shadow-gold);
}

.zoom-lens {
  position: absolute;
  display: none;
  pointer-events: none;
  border: 1px solid rgba(23, 217, 232, 0.9);
  border-radius: 8px;
  background: rgba(23, 217, 232, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 255, 0.22), var(--shadow-cyan);
}

.gallery-main.hover-zooming .zoom-lens {
  display: block;
}

.hover-zoom-pane {
  position: absolute;
  top: -92px;
  left: calc(100% + 18px);
  z-index: 70;
  display: none;
  width: min(620px, 48vw);
  height: min(680px, calc(100vh - 116px));
  overflow: hidden;
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  background: #08020d;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48), var(--shadow-cyan);
}

.hover-zoom-pane.open {
  display: block;
}

.hover-zoom-pane img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  object-fit: contain;
  will-change: transform;
}

.gallery-thumbs {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 2px;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.07);
  padding: 0;
  cursor: pointer;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.active {
  border-color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-price {
  margin: 18px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold);
}

.product-description {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.product-description p,
.product-description ul,
.product-description ol {
  margin-top: 0;
}

.detail-variant {
  margin-top: 22px;
}

.variant-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--cyan);
  font-weight: 800;
}

.detail-notes {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dotted rgba(248, 215, 122, 0.45);
  color: var(--muted);
}

.detail-notes p {
  margin: 0;
}

.detail-notes strong {
  color: var(--gold);
}

.zoom-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  width: 100dvw;
  height: 100dvh;
  z-index: 80;
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  background: rgba(8, 2, 13, 0.94);
}

.zoom-modal.open {
  display: grid;
}

.zoom-close {
  justify-self: end;
  margin-right: 5px;
}

.zoom-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #08020d;
  cursor: zoom-in;
  touch-action: none;
}

.zoom-frame img {
  width: auto;
  height: auto;
  max-width: calc(100vw - 24px);
  max-height: calc(100vh - 86px);
  max-width: calc(100dvw - 24px);
  max-height: calc(100dvh - 86px);
  object-fit: contain;
  will-change: transform;
}

.zoom-close {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  padding: 8px 12px;
  cursor: pointer;
}

.zoom-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.zoom-hint {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (hover: none), (pointer: coarse), (max-width: 1120px) {
  .zoom-lens,
  .hover-zoom-pane,
  .hover-zoom-pane.open,
  .gallery-main.hover-zooming .zoom-lens {
    display: none;
  }
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-row a,
.filter-row button {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 249, 255, 0.07);
  color: var(--white);
  font: inherit;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.filter-row a:hover,
.filter-row button:hover,
.filter-row button.active {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.variant-label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.variant-label select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(21, 5, 23, 0.92);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  padding: 8px 10px;
}

.button:disabled,
button.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.page-hero {
  height: 353.53px;
  min-height: 353.53px;
  display: grid;
  align-items: end;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.28), rgba(21, 5, 23, 0.92)),
    url("Howdy Glam Hero Banner.png") center / cover no-repeat;
}

.page-hero.shop {
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.28), rgba(21, 5, 23, 0.92)),
    url("Howdy Glam Hero Banner.png") center / cover no-repeat;
}

.page-hero.contact {
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.28), rgba(21, 5, 23, 0.92)),
    url("Howdy Glam Hero Banner.png") center / cover no-repeat;
}

.product-page-hero {
  height: 353.53px;
  min-height: 353.53px;
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 72px 0 30px;
}

.product-page-hero .wrap {
  padding-top: 72px;
  padding-bottom: 30px;
}

.page-title {
  font-size: 3.85rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-list a,
.contact-list div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.07);
  padding: 16px;
  text-decoration: none;
  color: var(--white);
}

.contact-list a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: var(--shadow-cyan);
}

.cart-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  color: var(--white);
}

.cart-toggle {
  min-height: 48px;
  border: 1px solid rgba(23, 217, 232, 0.78);
  border-radius: 8px;
  background: var(--cyan-gradient);
  color: var(--plum-black);
  font: inherit;
  font-weight: 900;
  padding: 10px 16px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-cyan);
}

.cart-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--plum-black);
  color: var(--gold);
}

.cart-panel {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: min(420px, calc(100vw - 36px));
  max-height: min(620px, calc(100vh - 120px));
  display: none;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 47, 167, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(21, 5, 23, 0.98), #08020d);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.52), var(--shadow-gold);
}

.cart-drawer.open .cart-panel {
  display: block;
}

.cart-panel-header,
.cart-footer,
.cart-line {
  padding: 16px;
}

.cart-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-header h2,
.cart-line h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--gold);
}

.cart-close,
.cart-line-actions button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 249, 255, 0.07);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.cart-close {
  padding: 8px 10px;
}

.cart-lines {
  display: grid;
  gap: 1px;
  background: rgba(248, 215, 122, 0.14);
}

.cart-lines > p {
  margin: 0;
  padding: 16px;
  background: rgba(21, 5, 23, 0.94);
  color: var(--muted);
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  background: rgba(21, 5, 23, 0.94);
}

.cart-line img {
  width: 74px;
  height: 74px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line p {
  margin: 4px 0;
  color: var(--muted);
}

.cart-line-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.cart-line-actions button {
  min-width: 34px;
  min-height: 34px;
  padding: 6px 9px;
}

.cart-status {
  min-height: 24px;
  margin: 0;
  padding: 0 16px;
  color: var(--gold);
  font-weight: 800;
}

.cart-footer {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.cart-total strong {
  color: var(--gold);
  font-size: 1.25rem;
}

[data-cart-checkout][aria-disabled] {
  pointer-events: none;
  opacity: 0.58;
}

.site-footer {
  background: #08020d;
  color: var(--white);
  padding: 48px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}

.footer-title {
  margin: 0 0 10px;
  font-family: "Rye", "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--cyan);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--gold);
}

.fine-print {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 215, 122, 0.18);
  color: rgba(255, 249, 255, 0.54);
  font-size: 0.92rem;
}

.holding {
  min-height: 100vh;
  display: grid;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(21, 5, 23, 0.42), rgba(21, 5, 23, 0.9)),
    url("brand-sign.jpg") center / cover no-repeat;
}

.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.sparkle-dot {
  position: absolute;
  left: var(--sparkle-left);
  top: var(--sparkle-top);
  width: 14px;
  height: 14px;
  transform: scale(var(--sparkle-scale));
  animation: sparkleTwinkle 3.8s ease-in-out infinite;
  animation-delay: var(--sparkle-delay);
  filter: drop-shadow(0 0 8px rgba(248, 215, 122, 0.95));
}

.sparkle-dot::before,
.sparkle-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--gold);
}

.sparkle-dot::before {
  width: 2px;
  height: 14px;
}

.sparkle-dot::after {
  width: 14px;
  height: 2px;
}

@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 0.24;
    transform: scale(calc(var(--sparkle-scale) * 0.7)) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(calc(var(--sparkle-scale) * 1.2)) rotate(45deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.holding .wrap {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

.holding-panel {
  max-width: 790px;
}

.holding h1 {
  margin: 16px 0 0;
  font-family: "Rye", "Playfair Display", Georgia, serif;
  font-size: 4.2rem;
  line-height: 1.04;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 47, 167, 0.44);
}

.holding p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 600;
}

@media (max-width: 1120px) {
  .home-product-grid,
  .category-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(21, 5, 23, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-pink);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    justify-content: center;
  }

  .hero-title,
  .holding h1,
  .page-title {
    font-size: 2.75rem;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .hero-inner {
    padding: 120px 0 52px;
  }

  .storefront-hero {
    height: 353.53px;
    min-height: 353.53px;
  }

  .storefront-hero .hero-inner {
    padding: 72px 0 30px;
  }

  .storefront-hero .hero-title {
    font-size: 2.35rem;
  }

  .storefront-hero .hero-copy {
    font-size: 1rem;
  }

  .storefront-products {
    padding-top: 38px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .button {
    margin-top: 18px;
  }

  .split,
  .collection-grid,
  .category-grid,
  .product-grid,
  .product-detail,
  .values-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

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

  .gallery-thumbs {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
    max-height: none;
    overflow: visible;
    padding-right: 0;
    margin-top: 14px;
  }

  .image-panel img {
    height: 320px;
  }

  .band {
    padding: 54px 0;
  }

  .cart-drawer {
    right: 12px;
    bottom: 12px;
  }

  .cart-panel {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 96px);
    bottom: 60px;
  }
}
