/* ===========================
   DRIP SHOP TN — STORM THEME
=========================== */

:root {
  --bg0: #05060a;
  --bg1: #0a0b12;
  --ink: #e9efff;
  --muted: rgba(233, 239, 255, 0.72);

  --stormA: #0b0f1c;
  --stormB: #05060a;
  --stormC: #10162a;

  --chrome1: #f6fbff;
  --chrome2: #cfd7ff;
  --edge: rgba(255, 255, 255, 0.42);

  --electric: #7ad7ff;
  --electric2: #caa6ff;

  --glass: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.12);

  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow2: 0 12px 28px rgba(0, 0, 0, 0.6);

  --radius2: 26px;
  --max: 1400px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--stormA);
  overflow-x: hid var(--stormA);
}

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}

#rainCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#lightningFlash {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(
      1200px 900px at 70% 20%,
      rgba(255, 255, 255, 0.8),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 30% 10%,
      rgba(122, 215, 255, 0.55),
      transparent 60%
    );
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 120ms ease;
}

#cloudLayer {
  position: fixed;
  inset: -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      900px 600px at 20% 35%,
      rgba(255, 255, 255, 0.06),
      transparent 60%
    ),
    radial-gradient(
      1100px 700px at 70% 25%,
      rgba(255, 255, 255, 0.05),
      transparent 65%
    ),
    radial-gradient(
      700px 520px at 55% 70%,
      rgba(255, 255, 255, 0.035),
      transparent 60%
    ),
    radial-gradient(
      800px 600px at 10% 85%,
      rgba(122, 215, 255, 0.04),
      transparent 55%
    ),
    radial-gradient(
      900px 650px at 95% 80%,
      rgba(202, 166, 255, 0.035),
      transparent 55%
    );
  filter: blur(10px) contrast(110%);
  opacity: 0.9;
  /* animation: cloudsMove 22s linear infinite; */
}

@keyframes cloudsMove {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1.05) rotate(0.2deg);
  }
  50% {
    transform: translate3d(2%, 1%, 0) scale(1.08) rotate(-0.2deg);
  }
  100% {
    transform: translate3d(-2%, -1%, 0) scale(1.05) rotate(0.2deg);
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(5, 6, 10, 0.82),
    rgba(5, 6, 10, 0.55)
  );
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 260px;
}
.brand__text {
  line-height: 1.1;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}
.brand__tag {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navlink {
  position: relative;
  padding: 10px 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  color: rgba(233, 239, 255, 0.86);
  background: transparent;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}
.navlink:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}
.navlink.is-active {
  background: linear-gradient(
    90deg,
    rgba(122, 215, 255, 0.14),
    rgba(202, 166, 255, 0.12)
  );
  border-color: rgba(255, 255, 255, 0.16);
}

.header__right {
  display: flex;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}
.btn:active {
  transform: translateY(0px) scale(0.99);
}

.btn--primary {
  border-color: rgba(122, 215, 255, 0.3);
  background: linear-gradient(
    90deg,
    rgba(122, 215, 255, 0.16),
    rgba(202, 166, 255, 0.14)
  );
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}
.btn--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}
.btn--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
  box-shadow: none;
}
.w-full {
  width: 100%;
}

/* Intro */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(
      1200px 900px at 50% 30%,
      rgba(122, 215, 255, 0.14),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 70% 20%,
      rgba(202, 166, 255, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.92));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.intro-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.intro-inner {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.intro-logoWrap {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.intro-logoWrap::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      500px 280px at 45% 35%,
      rgba(122, 215, 255, 0.12),
      transparent 65%
    ),
    radial-gradient(
      520px 280px at 65% 65%,
      rgba(202, 166, 255, 0.1),
      transparent 65%
    );
  filter: blur(10px);
  animation: glowDrift 8s ease-in-out infinite;
}
@keyframes glowDrift {
  0% {
    transform: translate3d(-2%, -1%, 0);
  }
  50% {
    transform: translate3d(2%, 1%, 0);
  }
  100% {
    transform: translate3d(-2%, -1%, 0);
  }
}

.intro-copy {
  padding: 10px 6px;
}
.kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(233, 239, 255, 0.8);
}
.intro-title {
  margin: 12px 0 10px;
  font-weight: 900;
  line-height: 1.03;
  font-size: clamp(26px, 4vw, 44px);
}
.intro-sub {
  margin: 0 0 18px;
  color: rgba(233, 239, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  max-width: 48ch;
}
.intro-hint {
  margin-top: 14px;
  color: rgba(233, 239, 255, 0.55);
  font-size: 12px;
}

/* HERO */
.hero {
  width: 100%;
  margin: 0 auto;
  padding: 26px 18px 24px;
  display: grid;
  height: 75vh;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;

  position: relative; /* Allow positioning of pseudo-element */
}

/* Add a pseudo-element to create the blur overlay */
.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../img/dripbg.png");
  background-size: cover; /* Ensure the image covers the section */
  background-position: center; /* Center the background image */
  background-repeat: no-repeat; /* Ensure the background doesn't repeat */
  filter: blur(3px); /* Apply blur effect */
  z-index: -1; /* Send the pseudo-element behind the content */
}

/* Content inside hero section */
.hero__content {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(
    255,
    255,
    255,
    0.04
  ); /* Adjust the opacity of the background */
  box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(
    18px
  ); /* Apply blur to the background behind the content */
  z-index: 1; /* Ensure the content stays on top of the blurred background */
}

.badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
}
.hero__title {
  margin: 14px 0 10px;
  font-weight: 1000;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
}
.hero__desc {
  margin: 0 0 18px;
  color: rgba(233, 239, 255, 0.75);
  font-size: 15px;
  line-height: 1.75;
  max-width: 62ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px 12px;
}
.stat__num {
  font-weight: 1000;
  letter-spacing: 0.12em;
  font-size: 14px;
}
.stat__label {
  margin-top: 6px;
  color: rgba(233, 239, 255, 0.65);
  font-size: 12px;
}

.hero__panel {
  z-index: 23;
  display: flex;
}
.panelCard {
  width: 100%;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(18px);
}

.panelCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panelCard__title {
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}
.panelCard__chip {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 10px;
}

.productHero {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 0.5fr 1.05fr;
  gap: 14px;
  align-items: center;
}
.productHero__img {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.12)
  );
  /* height: 300px; */
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.productHero__imgReal {
  width: 100%;
  height: 100%;
  object-fit: cover; /* <-- key to fit the content */
  object-position: center; /* center it nicely */
  border-radius: 18px; /* match container radius */
  display: block;
}

.productGlow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(
      420px 260px at 45% 45%,
      rgba(122, 215, 255, 0.12),
      transparent 65%
    ),
    radial-gradient(
      420px 260px at 65% 65%,
      rgba(202, 166, 255, 0.1),
      transparent 65%
    );
  filter: blur(12px);
  animation: glowDrift 7s ease-in-out infinite;
}
.productSilhouette {
  /* position: absolute; */
  left: 15%;
  /* inset: 18px; */
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.25)
  );
  opacity: 0.95;
  height: 300px;
}

.productHero__name {
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}
.productHero__meta {
  margin-top: 8px;
  color: rgba(233, 239, 255, 0.9);
  font-size: 12px;
  line-height: 1.6;
}
.productHero__price {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(233, 239, 255, 0.8);
}
.productHero__price span {
  font-weight: 1000;
  letter-spacing: 0.08em;
  font-size: 16px;
}
.productHero__buttons {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.microCopy {
  color: rgba(233, 239, 255, 0.9);
  font-size: 12px;
}
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 12px 0;
}
.miniGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.miniItem {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.miniItem__k {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.miniItem__v {
  margin-top: 6px;
  color: rgba(233, 239, 255, 0.9);
  font-size: 12px;
}

/* Collection */
.section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 24px 18px 26px;
}
.section__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}
.section__title {
  margin: 0;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 14px;
}
.section__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(233, 239, 255, 0.88);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  cursor: pointer;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform 0.18s ease;
}
.card:hover {
  transform: translateY(-3px);
}

.card__img {
  width: 100%;
  height: 250px; /* fixed card height */
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.18)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* <-- key! scales image to fit inside without cropping */
  object-position: center;
}

.card__body {
  padding: 14px;
}
.card__name {
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.card__meta {
  margin-top: 8px;
  color: rgba(233, 239, 255, 0.9);
  font-size: 12px;
  line-height: 1.6;
}
.card__row {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-weight: 1000;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
}

/* Callout */
.callout__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 0 18px 34px;
}

.callout__inner {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  padding: 24px;
}
.callout__title {
  margin: 0;
  font-weight: 1000;
  text-transform: uppercase;
  line-height: 1.1;
}
.callout__desc {
  margin: 10px 0 0;
  color: rgba(233, 239, 255, 0.74);
  line-height: 1.8;
  font-size: 14px;
}
.callout__cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pages & Forms */
.page {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 22px 18px 34px;
  min-height: 100vh;
}
.page__title {
  margin: 0;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page__sub {
  margin: 10px 0;
  color: rgba(233, 239, 255, 0.9);
}

.formWrap {
  display: grid;
  gap: 14px;
}
.formCard {
  display: block;
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 18px;
}
.formGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field--full {
  grid-column: 1 / -1;
}

label {
  font-size: 11px;
  color: rgba(233, 239, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  outline: none;
}
textarea {
  resize: vertical;
}

.formActions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sideCard {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow2);
  padding: 18px;
}
.sideItem {
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
  font-weight: 800;
  font-size: 12px;
}
.alert {
  margin: 12px 0;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}
.alert--danger {
  border-color: rgba(255, 80, 120, 0.35);
}

/* Success */
.successCard {
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: center;
}
.successTitle {
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 22px;
}
.successText {
  margin-top: 10px;
  color: rgba(233, 239, 255, 0.74);
  line-height: 1.8;
}

/* Footer */
.footer {
  position: relative;
  z-index: 10;
  padding: 22px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.footer__inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: rgba(233, 239, 255, 0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 3D Logo */
.logo3d {
  --size: 70px;
  --depth: 18px;
  --tiltX: 16deg;
  --tiltY: -18deg;
  --spin: 10s;

  width: var(--size);
  height: var(--size);
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}
.logo3d--nav {
  --size: 62px;
  --depth: 16px;
  --spin: 7s;
}
.logo3d--hero {
  --size: 340px;
  --depth: 34px;
  --spin: 10s;
}

.logo3d__stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--tiltX)) rotateY(var(--tiltY));
  animation: logoSpin var(--spin) linear infinite;
}
.logo3d__stack::before {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateZ(calc(var(--depth) * 0.5));
  font-weight: 1000;
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: calc(var(--size) * 0.62);
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    var(--chrome1),
    var(--chrome2) 45%,
    rgba(122, 215, 255, 0.55)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 0 18px rgba(122, 215, 255, 0.18),
    0 0 24px rgba(202, 166, 255, 0.14);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.65));
}
.logo3d__stack::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 1000;
  font-style: italic;
  letter-spacing: 0.02em;
  font-size: calc(var(--size) * 0.62);
  line-height: 1;
  text-transform: uppercase;
  color: rgba(10, 10, 20, 0.95);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 2px 0 rgba(255, 255, 255, 0.05),
    0 3px 0 rgba(255, 255, 255, 0.05),
    0 4px 0 rgba(255, 255, 255, 0.04),
    0 5px 0 rgba(255, 255, 255, 0.04),
    0 6px 0 rgba(255, 255, 255, 0.03),
    0 7px 0 rgba(255, 255, 255, 0.03),
    0 8px 0 rgba(255, 255, 255, 0.02),
    0 10px 18px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}
.logo3d::before {
  content: "";
  position: absolute;
  inset: -22%;
  background: conic-gradient(
    from 120deg,
    rgba(122, 215, 255, 0),
    rgba(122, 215, 255, 0.18),
    rgba(202, 166, 255, 0),
    rgba(255, 255, 255, 0.12),
    rgba(122, 215, 255, 0)
  );
  filter: blur(10px);
  opacity: 0.55;
  animation: ringSpin 6s linear infinite;
  pointer-events: none;
}

@keyframes ringSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes logoSpin {
  0% {
    transform: rotateX(var(--tiltX)) rotateY(var(--tiltY)) rotateZ(0deg);
  }
  100% {
    transform: rotateX(var(--tiltX)) rotateY(var(--tiltY)) rotateZ(360deg);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .formWrap {
    grid-template-columns: 1fr;
  }
  .intro-inner {
    grid-template-columns: 1fr;
  }
  .logo3d--hero {
    --size: 260px;
    --depth: 30px;
  }
}
@media (max-width: 520px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .formWrap .sideCard {
    display: none;
  }
  .brand__text {
    display: none;
  }
  .logo3d--hero {
    --size: 210px;
    --depth: 26px;
  }
}
/* DRIP LOGO IMAGE – HERO */
.logoHeroWrap {
  position: relative;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
  user-select: none;
}

.logoHeroImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.25))
    drop-shadow(0 0 40px rgba(160, 220, 255, 0.12));
  transform: translateZ(60px) rotateX(10deg) rotateY(-12deg);
  animation: heroFloat 3.8s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}
.intro-overlay.is-hidden .logoHeroImg {
  animation: none;
  transform: translateZ(0) rotateX(0) rotateY(0); /* Reset transform if needed */
}
.intro-overlay.is-hidden .intro-logoWrap::before {
  animation: none;
  transform: translateZ(0) rotateX(0) rotateY(0); /* Reset transform if needed */
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateZ(60px) rotateX(10deg) rotateY(-12deg) translateY(0);
  }
  50% {
    transform: translateZ(80px) rotateX(14deg) rotateY(10deg) translateY(-10px);
  }
}

/* DRIP LOGO IMAGE – NAV spinning */
.logoNavWrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  perspective: 800px;
}

.logoNavImg {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2))
    drop-shadow(0 0 22px rgba(120, 200, 255, 0.12));
  animation: navSpin 2.4s linear infinite;
  transform-style: preserve-3d;
  will-change: transform;
  pointer-events: none;
}

@keyframes navSpin {
  0% {
    transform: rotateY(0deg) rotateX(8deg);
  }
  100% {
    transform: rotateY(360deg) rotateX(8deg);
  }
}

/* CARD */
.card {
  background: linear-gradient(180deg, var(--glass), transparent);
  border: 1px solid var(--stroke);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 32px;
}

/* FORM */
form {
  display: grid;
  grid-template-columns: 1fr 160px 120px;
  gap: 14px;
}

input {
  background: var(--bg1);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}

input::placeholder {
  color: var(--muted);
}

button {
  background: linear-gradient(135deg, var(--electric), var(--electric2));
  border: none;
  border-radius: 14px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--stroke);
}

th {
  text-align: left;
  color: var(--chrome2);
  font-weight: 600;
}

tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.price {
  color: var(--electric);
  font-weight: 600;
}

select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: var(--bg1);
  color: var(--ink);
  font-size: 14px;
  width: 100%;
  transition: all 0.2s;
}

/* Smaller buttons for compact product cards */
.productCard__buttons {
  display: flex;
}

.productCard__buttons .btn {
  font-size: 0.8rem;
  padding: 10px 14px; /* more horizontal space */
  min-width: 100px; /* was too small */
  display: inline-flex; /* better centering */
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Optional: space between buttons */
.productCard__buttons .btn + .btn {
  margin-left: 6px;
}

/* For very small cards on mobile */
@media (max-width: 480px) {
  .productCard__buttons .btn {
    font-size: 0.75rem;
    padding: 3px 6px;
    min-width: 70px;
  }
}

/* Cart modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.modal.hidden {
  display: none;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.modal__card {
  position: relative;
  background: #0e0e0e;
  color: #fff;
  width: 320px;
  margin: 20vh auto;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.modal__card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.modal__card select {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
}

.modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-end;
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: bold;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.hidden {
  display: none;
}

#collection {
  width: 100%;
  z-index: 1;
  background: var(--stormA);
}

#collection #container {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 24px 18px 26px;
}

.callout {
  background: #101420;
}

.footer {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(0, 0, 0, 0.2)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  width: min(var(--max), 100%);
  margin: auto;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer__brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer__logo {
  font-size: 24px;
  color: #7ad7ff;
  filter: drop-shadow(0 0 6px rgba(122, 215, 255, 0.45));
}

.footer__name {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}

.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
  font-size: 0.9rem;
}

.footer__links a {
  opacity: 0.75;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 1;
}

.footer__meta {
  text-align: right;
}

.footer__trust {
  display: flex;
  gap: 7rem;
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  opacity: 0.85;
}

.footer__trust div {
  gap: 6px;
}

.footer__trust i {
  color: #7ad7ff;
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links,
  .footer__trust {
    justify-content: center;
  }

  .footer__trust {
    gap: 0rem;
  }
  .footer__meta {
    text-align: center;
  }
}

.page .intro-logoWrap {
  border: none;
  background: transparent;
  box-shadow: none;
}

.page .intro-logoWrap::before {
  background: transparent;
  filter: none;
}

#contact.formWrap {
  display: flex;
}
.is-out {
  opacity: 0.5;
  pointer-events: none;
}

.badge-out {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b00020;
  color: #fff;
  padding: 4px 8px;
  font-weight: bold;
  font-size: 12px;
}

.badge--out {
  position: absolute;

  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 60, 60, 0.9);
  color: #fff;
  border-radius: 6px;
  letter-spacing: 0.4px;
  z-index: 3;
}

/* Optional: subtle visual hint */
.card.is-out {
  opacity: 0.75;
}

.card.is-out {
  pointer-events: none;
}

/* ===========================
   RESPONSIVE ENHANCEMENTS
=========================== */

/* Base responsive adjustments */
@media (max-width: 1200px) {
  :root {
    --max: 1200px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 16px 24px;
    min-height: auto;
    height: auto;
  }

  .intro-inner {
    gap: 18px;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  /* Already exists, but ensure proper spacing */
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .hero__content {
    padding: 22px;
  }

  /* .productHero { */
  /*   grid-template-columns: 1fr; */
  /*   gap: 12px; */
  /* } */

  .productHero__img {
    height: 300px;
  }

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

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

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

  .logo3d--hero {
    --size: 220px;
    --depth: 28px;
  }
}

@media (max-width: 768px) {
  /* Header adjustments for mobile */
  .header__right {
    display: none;
  }
  .page .intro-logoWrap {
    display: none;
  }
  .header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand {
    min-width: auto;
  }

  .brand__text {
    display: block;
  }

  .header__nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .navlink {
    padding: 8px 10px;
    font-size: 11px;
  }

  .header__right {
    gap: 8px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 11px;
  }

  /* Hero section mobile adjustments */
  .hero {
    padding: 18px 14px 6px;
    gap: 16px;
  }

  .hero__content {
    padding: 18px;
    border-radius: 22px;
  }

  .hero__title {
    font-size: clamp(28px, 4vw, 36px);
  }

  .hero__desc {
    font-size: 14px;
  }

  .hero__cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Collection section mobile */
  .section {
    padding: 20px 14px 22px;
  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section__actions {
    width: 100%;
    justify-content: center;
  }

  .pill {
    flex: 1;
    text-align: center;
  }

  /* Product cards mobile */
  .card {
    margin-bottom: 16px;
  }

  .card__img {
    height: 160px;
  }

  /* Forms mobile */
  .formCard {
    padding: 16px;
  }

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

  /* Footer mobile */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Intro overlay mobile */
  .intro-overlay {
    padding: 20px;
  }

  .intro-logoWrap {
    padding: 22px;
  }

  .intro-copy {
    text-align: center;
  }

  .intro-title {
    font-size: clamp(24px, 3vw, 32px);
  }

  .logo3d--hero {
    --size: 180px;
    --depth: 24px;
  }
}

@media (max-width: 520px) {
  /* Extra small devices */
  .grid {
    grid-template-columns: 1fr;
  }

  .brand__text {
    display: none;
  }

  .logo3d--nav {
    --size: 50px;
    --depth: 14px;
  }

  .navlink {
    padding: 18px 8px !important;
    font-size: 10px;
  }

  .btn {
    padding: 8px 10px;
    font-size: 10px;
    border-radius: 12px;
  }

  .hero__title {
    font-size: 24px;
  }

  .productHero__buttons {
    flex-direction: column;
  }

  .productHero__buttons .btn {
    width: 100%;
  }

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

  .callout__inner {
    padding: 18px;
  }

  .callout__title {
    font-size: 20px;
  }

  .callout__cta {
    flex-direction: column;
  }

  .logo3d--hero {
    --size: 150px;
    --depth: 20px;
  }

  .logoHeroWrap {
    width: min(320px, 90vw);
  }
}

@media (max-width: 380px) {
  /* Very small devices */
  .header {
    padding: 10px 12px;
  }

  .header__nav {
    gap: 4px;
  }

  .navlink {
    padding: 5px 6px;
    font-size: 9px;
  }

  .hero {
    padding: 16px 12px 6px;
  }

  .hero__content {
    padding: 16px;
  }

  .section {
    padding: 16px 12px 18px;
  }

  .stats {
    gap: 8px;
  }

  .stat {
    padding: 10px;
  }

  .logo3d--hero {
    --size: 120px;
    --depth: 18px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .navlink:hover {
    transform: none;
    background: transparent;
    border-color: transparent;
  }

  .btn:hover {
    transform: none;
  }

  .card:hover {
    transform: none;
  }

  /* Increase tap targets for mobile */
  .navlink,
  .btn,
  .pill {
    min-height: 44px;
    /* min-width: 44px; */
  }

  input,
  select,
  textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
}

/* High-DPI screen optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .stroke,
  .border {
    border-width: 0.5px;
  }
}

/* Print styles */
@media print {
  #rainCanvas,
  #lightningFlash,
  #cloudLayer,
  .header__right,
  .btn,
  .hero__cta,
  .callout__cta,
  .footer {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .card,
  .panelCard,
  .formCard {
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    background: white !important;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .intro-overlay {
    padding: 10px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
  }

  .logo3d--hero {
    --size: 150px;
  }
}

/* Dark mode preference (already dark, but for compatibility) */
@media (prefers-color-scheme: dark) {
  /* Your theme is already dark, so no changes needed */
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  #cloudLayer,
  .logo3d__stack,
  .logoNavImg,
  .logoHeroImg,
  .productGlow,
  .intro-logoWrap::before,
  .logo3d::before {
    animation: none !important;
  }
}

.callout {
  position: relative;
  padding: 24px 28px 26px;
}

/* Footer Styles */
.footer {
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); */
  /* color: #fff; */
  /* padding: 4rem 0 2rem; */
  position: relative;
}

.footer__inner {
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

/* Brand & Contact Section */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logoNavImg {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer__brandText {
  display: flex;
  flex-direction: column;
}

.footer__name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: #b0b7d0;
}

/* Contact Numbers */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact__item {
  /* width: 80%; */
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact__item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(76, 201, 240, 0.3);
  transform: translateX(5px);
}

.contact__item i {
  font-size: 1.25rem;
  color: #4cc9f0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 10px;
}

.contact__info {
  display: flex;
  flex-direction: column;
}

.contact__label {
  font-size: 0.75rem;
  color: #b0b7d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.contact__number {
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact__number:hover {
  color: #4cc9f0;
}

/* Social Media */
.footer__social {
  margin-top: 2rem;
}

.social__title {
  display: block;
  font-size: 0.875rem;
  color: #b0b7d0;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social__icons {
  display: flex;
  gap: 1rem;
}

.social__link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #4cc9f0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social__link i {
  position: relative;
  z-index: 1;
}

.social__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social__link:hover::before {
  opacity: 1;
}

/* Navigation */
.nav__title,
.trust__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(76, 201, 240, 0.3);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.nav__link {
  color: #b0b7d0;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 1.5rem;
  width: 30%;
}

.nav__link::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #4cc9f0;
}

.nav__link:hover {
  color: #fff;
  padding-left: 2rem;
}

.nav__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Trust Badges */
.trust__badges {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.trust__item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(76, 201, 240, 0.2);
}

.trust__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(76, 201, 240, 0.1);
  border-radius: 10px;
  color: #4cc9f0;
  font-size: 1.125rem;
}

.trust__text {
  flex: 1;
}

.trust__heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.trust__desc {
  font-size: 0.8125rem;
  color: #b0b7d0;
  line-height: 1.4;
}

/* Footer Bottom */
.footer__bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__copy {
  color: #b0b7d0;
  font-size: 0.875rem;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.legal__link {
  color: #b0b7d0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
}

.legal__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: #4cc9f0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.legal__link:hover {
  color: #fff;
}

.legal__link:hover::after {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer__bottom {
    padding: 1.5rem 1rem 0;
    margin-top: 2rem;
  }

  .footer__legal {
    gap: 1rem;
  }

  .social__icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer__brand {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .contact__item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .contact__item i {
    margin: 0 auto;
  }

  .footer__legal {
    flex-direction: column;
    gap: 0.75rem;
  }
}
@media (max-width: 980px) {
  .intro-inner {
    justify-items: center;
    align-items: center;
  }
  .intro-copy {
    text-align: center;
    justify-items: center;
  }

  .intro-sub {
    text-align: center;
  }
}
/* Contact Page Specific Styles */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

@media (max-width: 992px) {
  .contact-page {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Contact Info Section */
.contact-info {
  border-radius: 20px;
  padding: 2.5rem;
}

.contact-info__title {
  margin-top: 0px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #4cc9f0 0%, #4361ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info__subtitle {
  color: #b0b7d0;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

/* Phone Cards */
.phone-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.phone-card:hover {
  background: rgba(76, 201, 240, 0.1);
  border-color: rgba(76, 201, 240, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(76, 201, 240, 0.2);
}

.phone-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
  background: rgba(76, 201, 240, 0.1);
  color: #4cc9f0;
}

.phone-card__content {
  flex: 1;
}

.phone-card__label {
  display: block;
  font-size: 0.85rem;
  color: #b0b7d0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.phone-card__number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-card:hover .phone-card__number {
  color: #4cc9f0;
}

/* Form Section */
.form-section {
  padding: 2.5rem;
}

/* Enhanced Logo Section */
.logo-visual {
  margin-top: 3rem;
  text-align: center;
}

.logo-visual__wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.logo-visual__image {
  height: 180px;
  object-fit: contain;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-page {
    padding: 1rem;
    gap: 2rem;
  }

  .contact-info,
  .form-section {
    padding: 1.5rem;
  }

  .contact-info__title {
    font-size: 1.5rem;
  }

  .phone-card {
    padding: 1rem;
  }

  .phone-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

.product-detail-section {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 22px 18px 34px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 20px;
}

@media (max-width: 980px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

.product-gallery-card {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.product-gallery-card::before {
  content: "";
  position: absolute;
  background:
    radial-gradient(
      500px 280px at 45% 35%,
      rgba(122, 215, 255, 0.12),
      transparent 65%
    ),
    radial-gradient(
      520px 280px at 65% 65%,
      rgba(202, 166, 255, 0.1),
      transparent 65%
    );
  filter: blur(10px);
}

/* Main Image Container */
.main-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(0, 0, 0, 0.18)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.main-product-image {
  width: 100%;
  height: 480px;
  object-fit: contain;
  display: block;
}

/* Navigation Buttons */
.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.image-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--electric);
  transform: translateY(-50%) scale(1.1);
}

.image-nav.prev {
  left: 15px;
}

.image-nav.next {
  right: 15px;
}

.image-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.image-nav:disabled:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1);
}

/* Image Counter */
.image-counter {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding: 5px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--electric) rgba(255, 255, 255, 0.1);
}

.thumbnail-gallery::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
  background: var(--electric);
  border-radius: 2px;
}

.thumbnail-item {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.thumbnail-item:hover {
  border-color: rgba(122, 215, 255, 0.3);
  transform: translateY(-2px);
}

.thumbnail-item.active {
  border-color: var(--electric);
  box-shadow: 0 0 15px rgba(122, 215, 255, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image loading animation */
.image-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 18px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.product-info-card {
  border-radius: var(--radius2);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.product-title {
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}

.product-category {
  color: var(--electric);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.panelCard__chip {
  display: inline;
  font-weight: bold;
  background: rgb(225 40 40 / 70%);
}

.product-price {
  font-weight: 1000;
  letter-spacing: 0.08em;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--electric);
}

.product-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.meta-item {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px;
}

.meta-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 6px;
}

.meta-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.stock-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stock-status {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.in-stock {
  border-color: rgba(122, 215, 255, 0.3);
  background: rgba(122, 215, 255, 0.1);
  color: var(--electric);
}

.out-of-stock {
  border-color: rgba(255, 80, 120, 0.35);
  background: rgba(255, 80, 120, 0.1);
  color: #ff5078;
}

.total-stock {
  color: var(--muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.size-section {
  margin-bottom: 24px;
}

.section-title {
  font-size: 14px;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 10px;
}

.size-btn {
  padding: 12px 5px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  border-radius: 14px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: all 0.18s ease;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
}

.size-btn:hover:not(.disabled) {
  border-color: var(--electric);
  background: rgba(122, 215, 255, 0.1);
}

.size-btn.selected {
  border-color: var(--electric);
  background: rgba(122, 215, 255, 0.16);
  color: var(--electric);
}

.size-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.size-stock {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--electric2);
  color: black;
  font-size: 10px;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.quantity-section {
  margin-bottom: 24px;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 200px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  border-radius: 14px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s ease;
}

.quantity-btn:hover {
  border-color: var(--electric);
  color: var(--electric);
}

.quantity-input {
  width: 60px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--ink);
  border-radius: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}

.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
}

.delivery-info {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 24px;
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.delivery-item:last-child {
  margin-bottom: 0;
}

.delivery-icon {
  color: var(--electric);
  font-size: 18px;
  width: 24px;
}

.delivery-text strong {
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ink);
}

.delivery-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Related Products */
.related-section {
  margin-top: 40px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.related-product-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow2);
  overflow: hidden;
  transition: transform 0.18s ease;
  text-decoration: none;
  color: inherit;
}

.related-product-card:hover {
  transform: translateY(-3px);
  border-color: var(--electric);
}

.related-product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-product-card-body {
  padding: 14px;
}

.related-product-title {
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 6px;
}

.related-product-price {
  color: var(--electric);
  font-weight: 1000;
  letter-spacing: 0.08em;
  font-size: 14px;
}

/* Notification */
.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.85);
  color: var(--ink);
  padding: 15px 25px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  transform: translateY(100px);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.notification.show {
  transform: translateY(0);
  opacity: 1;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  text-decoration: none;
  transition: all 0.18s ease;
}

.cart-icon:hover {
  border-color: var(--electric);
  background: rgba(122, 215, 255, 0.1);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--electric);
  color: black;
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-detail-grid {
    gap: 18px;
  }

  .main-product-image {
    height: 350px;
  }

  .thumbnail-item {
    width: 70px;
    height: 70px;
  }

  .product-actions {
    flex-direction: column;
  }

  .product-actions .btn {
    width: 100%;
  }

  .size-grid {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  }

  .image-nav {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .main-product-image {
    height: 280px;
  }

  .thumbnail-item {
    width: 60px;
    height: 60px;
  }

  .product-title {
    font-size: 20px;
  }

  .product-price {
    font-size: 24px;
  }

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

  .stock-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .image-nav {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
