:root {
  --bg: #2d3035;
  --surface: #3a3d42;
  --surface-alt: #4a4d52;
  --text: #f7f7f7;
  --muted: #f0e26d;
  --brand: #8b1e3a;
  --brand-dark: #6e172e;
  --border: #ffe36a;
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  --accent: #ffe900;
}

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

body {
  margin: 0;
  font-family: "Rajdhani", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 0% 80%, rgba(255, 233, 0, 0.14), transparent 32%),
    var(--bg);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(82, 86, 92, 0.58), rgba(45, 48, 53, 0.46));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
}

.site-nav a {
  text-decoration: none;
  color: #f6f6f6;
  font-weight: 600;
  padding: 0.28rem 0.4rem;
  border-radius: 8px;
}

.site-nav a.active,
.site-nav a:hover {
  color: #1e1f22;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  color: #1f2023;
  background: var(--accent);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
}

.hero {
  padding: 2rem 0 3rem;
}

.top-carousel-section {
  padding-top: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 0.4rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom: 0.7rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  transition: transform 140ms ease, box-shadow 160ms ease, filter 160ms ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px) scale(0.985);
  filter: saturate(1.1);
}

.btn-primary {
  background: linear-gradient(135deg, #fff39f, var(--accent));
  color: #212327;
  box-shadow: var(--shadow);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  border: 1px dashed var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.hero-card,
.card,
.highlight-box {
  background: linear-gradient(180deg, rgba(96, 100, 106, 0.36) 0%, rgba(58, 61, 66, 0.3) 100%);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
}

.hero-card::after,
.card::after,
.highlight-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 35%, transparent 50%);
  pointer-events: none;
}

.hero-card::before,
.card::before,
.highlight-box::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 8px;
  height: 36%;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-card h2 {
  margin-bottom: 0.7rem;
}

.brand-logo {
  width: min(170px, 50%);
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 0.5rem;
  margin-bottom: 0.8rem;
}

.hero-card ul,
.highlight-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.section {
  padding: 2rem 0 3.2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.page-header {
  padding: 3.4rem 0 0.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
}

.text-link {
  color: #ffe900;
  font-weight: 700;
}

.qr-card {
  display: flex;
  flex-direction: column;
}

.qr-image {
  width: min(260px, 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(63, 67, 73, 0.55), rgba(49, 52, 58, 0.45));
  backdrop-filter: blur(12px) saturate(130%);
  -webkit-backdrop-filter: blur(12px) saturate(130%);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem 0;
  color: #f3f3f3;
  font-size: 0.94rem;
}

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

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

.section-anchor {
  scroll-margin-top: 90px;
}

.section-copy {
  max-width: 72ch;
  color: var(--muted);
}

.carousel {
  position: relative;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  margin-bottom: 0;
  box-shadow: none;
  min-height: 340px;
}

.top-carousel {
  min-height: 78vh;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
  filter: contrast(1.06) saturate(1.02);
}

.top-carousel .carousel-slide img {
  min-height: 78vh;
}

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

.product-tile {
  --pack-yellow: #44474d;
  --pack-charcoal: #ffe900;
  --pack-maroon: #8b1e3a;
  background: var(--pack-yellow);
  border: 2px solid #5a5f66;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(42, 42, 42, 0.25);
  position: relative;
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
}

.product-tile::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 18%;
  height: 100%;
  background: var(--pack-charcoal);
  z-index: 1;
}

.product-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
  z-index: 3;
}

.product-tile img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  display: block;
  background: #3f4349;
  padding: 0.35rem 0.5rem;
  position: relative;
  z-index: 0;
}

.product-tile-cover img {
  object-fit: cover;
  object-position: left center;
  padding: 0;
  background: transparent;
}

.product-meta {
  padding: 0.7rem 20% 0.9rem 0.8rem;
  background: linear-gradient(90deg, #44474d 0%, #44474d 82%, #ffe900 82%, #ffe900 100%);
  color: #f6f6f6;
  position: relative;
  z-index: 2;
  box-shadow: inset 0 10px 16px rgba(255, 255, 255, 0.1);
}

.product-meta h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  background: #8b1e3a;
  color: #fff;
}

.product-meta p {
  margin: 0;
  font-weight: 700;
  color: #ffe900;
}

.ripple {
  position: absolute;
  border-radius: 999px;
  transform: scale(0);
  animation: ripple 650ms ease-out;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4.8);
    opacity: 0;
  }
}

@media (max-width: 880px) {
  .hero-grid,
  .two-col,
  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1rem 4vw;
    background: #3a3d42;
    border-bottom: 1px solid var(--border);
  }

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

  .top-carousel {
    min-height: 42vh;
  }

  .top-carousel .carousel-slide img {
    min-height: 42vh;
  }

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