:root {
  --blue: #0e3fa9;
  --blue-dark: #052166;
  --yellow: #ffa903;
  --yellow-dark: #de8b00;
  --white: #ffffff;
  --gray: #f2f5ff;
  --ink: #071026;
  --card-bg: #0b2f7d;
  --success: #1ddb8b;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: radial-gradient(circle at top, rgba(14, 63, 169, 0.2), transparent 55%), #041640;
  color: var(--white);
  min-height: 100vh;
}

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

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

header {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-bottom: 8px solid var(--yellow);
  padding: 1.5rem 0 3rem;
}

.navbar {
  width: min(1200px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(4, 22, 64, 0.45);
  text-decoration: none;
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.3s ease;
}

.logo-mark:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 1.1rem 2.2rem rgba(0, 0, 0, 0.4);
}

.logo-mark img {
  width: clamp(82px, 9vw, 120px);
  height: auto;
  filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.55));
}

.logo-text {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  letter-spacing: 0.08em;
}

.logo-text span {
  color: var(--yellow);
}

.hero {
  width: min(1200px, 90vw);
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}


.searchlights {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.hero > *:not(.searchlights) {
  position: relative;
  z-index: 1;
}

.searchlight {
  position: absolute;
  width: 80%;
  height: 140%;
  left: 50%;
  bottom: -55%;
  background: linear-gradient(
    180deg,
    rgba(255, 252, 235, 0.75) 0%,
    rgba(255, 230, 150, 0.4) 40%,
    rgba(255, 210, 120, 0.15) 70%,
    transparent 100%
  );
  mix-blend-mode: screen;
  transform-origin: bottom center;
  opacity: 0.6;
  filter: blur(0.5px);
  clip-path: polygon(48% 0%, 52% 0%, 100% 100%, 0% 100%);
  box-shadow: 0 -1rem 2.5rem rgba(255, 220, 160, 0.4);
}

.searchlight-left {
  animation: sweep-left 9s ease-in-out infinite;
}

.searchlight-right {
  animation: sweep-right 9s ease-in-out infinite;
}

@keyframes sweep-left {
  0% {
    transform: translate(-65%, 0) rotate(-30deg) scale(1.05);
  }
  50% {
    transform: translate(-35%, 0) rotate(0deg) scale(1);
  }
  100% {
    transform: translate(-65%, 0) rotate(-30deg) scale(1.05);
  }
}

@keyframes sweep-right {
  0% {
    transform: translate(-15%, 0) rotate(28deg) scale(1.05);
  }
  50% {
    transform: translate(-45%, 0) rotate(-6deg) scale(1);
  }
  100% {
    transform: translate(-15%, 0) rotate(28deg) scale(1.05);
  }
}

.hero-copy h1 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


.hero-copy p {
  margin: 0 0 1.5rem;
  color: #d5e0ff;
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-subtext {
  color: #ffe4ad;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-slogans {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.clint-button {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.clint-button img {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  filter: drop-shadow(0 1rem 2rem rgba(0, 0, 0, 0.45));
}

.clint-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 0.75rem 2rem rgba(255, 169, 3, 0.35);
}

.btn-outline {
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
}

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

main {
  width: min(1200px, 92vw);
  margin: -2rem auto 4rem;
}

.filter-panel {
  background: var(--card-bg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1rem 2.5rem rgba(4, 22, 64, 0.45);
}

.filter-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}

.panel-tagline {
  margin: 0 0 1.25rem;
  color: #e0e8ff;
  font-size: 0.95rem;
}

.filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.filters label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #dce4ff;
}

.filters input,
.filters select {
  padding: 0.65rem 0.95rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 16, 44, 0.85);
  color: var(--white);
  font-size: 1rem;
  box-shadow: inset 0 0.35rem 0.9rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.filters input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.filters input:focus,
.filters select:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(255, 169, 3, 0.25);
}

.filters select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%), linear-gradient(135deg, var(--yellow) 50%, transparent 50%);
  background-position: right 1rem top 50%, right 0.6rem top 50%;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(7, 16, 38, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.card-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(14, 63, 169, 0.8), rgba(255, 169, 3, 0.45));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  font-size: 2.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.card-cover.card-cover-img {
  background-size: cover;
  background-position: center;
  color: transparent;
}

.card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #b1c6ff;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card button {
  align-self: flex-start;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  background: rgba(7, 16, 38, 0.65);
  border-radius: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #c5d5ff;
  margin: 0 0 0.25rem;
}

.cart-pill {
  position: sticky;
  bottom: 1rem;
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

.cart-pill a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1rem 2rem rgba(255, 169, 3, 0.3);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
}

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 150%);
  background: var(--success);
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease;
  z-index: 10;
}

.toast.show {
  transform: translate(-50%, 0);
}

.curation-panel {
  background: rgba(7, 16, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 1rem 2.5rem rgba(4, 22, 64, 0.45);
}

.curation-panel__intro h2 {
  margin: 0.1rem 0 0.25rem;
}

.curation-panel__hint {
  margin: 0;
  color: #b9c8ff;
  font-size: 0.95rem;
}

.curation-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.curation-card {
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 26, 66, 0.85);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 1.2rem 2.3rem rgba(0, 0, 0, 0.35);
}

.curation-card h3 {
  margin: 0.25rem 0 0;
}

.curation-card__subtitle {
  margin: 0;
  color: #d2ddff;
  font-size: 0.95rem;
}

.curation-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.curation-card__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  padding: 0.4rem 0.75rem;
}

.curation-card__list strong {
  font-weight: 600;
}

.curation-card__list span {
  color: #b9c8ff;
  font-size: 0.85rem;
}

.curation-card.skeleton {
  text-align: center;
  color: #aab7e8;
  border: 1px dashed rgba(255, 255, 255, 0.3);
}

.lucky-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: rgba(6, 18, 52, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.4);
}

.lucky-cta__content {
  max-width: 540px;
}

.lucky-cta__content h2 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.lucky-cta__content p {
  margin: 0;
  color: #d3ddff;
  line-height: 1.5;
}

.lucky-cta .clint-button {
  flex-shrink: 0;
}

.detail-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 4, 20, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 100;
}

.detail-backdrop[hidden] {
  display: none;
}

.detail-card {
  background: rgba(5, 12, 32, 0.95);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: minmax(200px, 0.6fr) 1fr;
  max-width: 900px;
  width: 100%;
  gap: 1.5rem;
  position: relative;
  padding: 1.5rem;
}

.detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  cursor: pointer;
}

.detail-media {
  border-radius: 1.2rem;
  min-height: 320px;
  background: linear-gradient(135deg, rgba(14, 63, 169, 0.8), rgba(255, 169, 3, 0.45));
  background-size: cover;
  background-position: center;
}

.detail-body h3 {
  margin: 0;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: #c7d2f8;
  margin: 0.75rem 0;
}

.detail-description {
  color: #e2e9ff;
  line-height: 1.6;
}

.detail-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.detail-list dt {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #9fb3ec;
}

.detail-list dd {
  margin: 0;
  color: #e2e9ff;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.detail-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn.btn-small {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

body.modal-open {
  overflow: hidden;
}

.checkout-shell {
  width: min(1100px, 92vw);
  margin: 2.5rem auto 4rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.checkout-card {
  background: rgba(7, 16, 38, 0.75);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.checkout-card h2 {
  margin-top: 0;
}

.checkout-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-item {
  background: rgba(14, 63, 169, 0.25);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

.checkout-item button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  cursor: pointer;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  border: none;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.checkout-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }

  .detail-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .filters {
    grid-template-columns: 1fr;
  }

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