/* ========================================
   Stay Minted — Styles
   ======================================== */

/* -- Custom Properties -- */
:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-surface: #1a1a1a;
  --color-border: #2a2a2a;
  --color-text: #f5f5f5;
  --color-text-muted: #999999;
  --color-accent: #ffffff;
  --color-price: #ffffff;
  --color-compare: #666666;
  --color-badge: #d4ff00;
  --color-badge-text: #0a0a0a;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --container-pad: 20px;
  --announcement-height: 36px;
  --header-height: 64px;
  --transition: 0.3s ease;
}

/* -- Reset -- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + var(--announcement-height));
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
}

/* -- Utilities -- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: #e0e0e0;
}

.btn--primary:disabled {
  background: var(--color-border);
  color: var(--color-text-muted);
  cursor: not-allowed;
}

.btn--full {
  width: 100%;
}

/* -- Page loader -- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__text {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* -- Fade-in animation -- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Announcement Bar
   ======================================== */
.announcement {
  background: var(--color-badge);
  color: var(--color-badge-text);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement p {
  margin: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.header__nav {
  display: flex;
  gap: 32px;
}

.header__link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.header__link:hover {
  color: var(--color-text);
}

.header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header__menu span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero__content {
  position: relative;
  text-align: center;
  padding: 120px 0 80px;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 24px;
}

.hero__tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.hero__price {
  color: var(--color-text);
  font-weight: 600;
}

.hero__sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

/* ========================================
   Product
   ======================================== */
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product__slider {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product__slider::-webkit-scrollbar {
  display: none;
}

.product__slide {
  min-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.product__slide img,
.product__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.product__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: background var(--transition);
  padding: 0;
}

.product__dot--active {
  background: var(--color-text);
}

.product__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.product__thumb {
  aspect-ratio: 1;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: border-color var(--transition);
  overflow: hidden;
  position: relative;
}

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

.product__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.2rem;
  z-index: 1;
}

.product__thumb--active,
.product__thumb:hover {
  border-color: var(--color-text);
}

.product__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product__subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.product__pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.product__price {
  font-size: 2rem;
  font-weight: 700;
}

.product__compare {
  font-size: 1.25rem;
  color: var(--color-compare);
  text-decoration: line-through;
}

.product__badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: var(--color-badge);
  color: var(--color-badge-text);
}

.product__quality-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.product__items {
  margin-bottom: 32px;
}

.product__items h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.product__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product__item-value {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-decoration: line-through;
  flex-shrink: 0;
  margin-left: 12px;
}

.product__list li:last-child {
  border-bottom: none;
}

.product__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.product__total-value {
  text-decoration: line-through;
}

.product__saving {
  background: var(--color-badge);
  color: var(--color-badge-text);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.03em;
  margin-top: 4px;
  margin-bottom: 8px;
}

.product__size {
  margin-bottom: 24px;
}

.product__size-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.product__size-header h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.product__size-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.product__size-link {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color var(--transition);
}

.product__size-link:hover {
  color: var(--color-text);
}

.size-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.size-btn {
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}

.size-btn:hover {
  border-color: var(--color-text);
}

.size-btn--active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.product__size-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.product__trust {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product__trust-item {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
}

.product__trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-badge);
}

.section__cta {
  text-align: center;
  margin-top: 48px;
}

/* ========================================
   How It Works
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step__number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-border);
  margin-bottom: 16px;
  line-height: 1;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step__text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Price Comparison
   ======================================== */
.compare__intro {
  color: var(--color-text-muted);
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 1rem;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
}

.compare__col {
  border: 1px solid var(--color-border);
  padding: 32px;
}

.compare__col--highlight {
  border-color: var(--color-badge);
  position: relative;
}

.compare__col--highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--color-badge);
  color: var(--color-badge-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
}

.compare__brand {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.compare__brand-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.compare__list {
  list-style: none;
}

.compare__list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.compare__list li:last-child {
  border-bottom: none;
}

.compare__total {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.compare__col--highlight .compare__total {
  color: var(--color-badge);
}

/* ========================================
   Weight Comparison
   ======================================== */
.weight__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  margin-bottom: 32px;
}

.weight__stat {
  text-align: center;
}

.weight__number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
}

.weight__unit {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--color-text-muted);
  vertical-align: super;
}

.weight__label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 8px;
}

.weight__vs {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.weight__caption {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ========================================
   About
   ======================================== */
.about__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}

.about__content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about__content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ========================================
   Social Proof
   ======================================== */
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof__card {
  border: 1px solid var(--color-border);
  padding: 32px;
}

.proof__stars {
  color: var(--color-badge);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.proof__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 16px;
  font-style: italic;
}

.proof__author {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .proof__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ========================================
   FAQ Accordion
   ======================================== */
.accordion {
  max-width: 800px;
}

.accordion__item {
  border-bottom: 1px solid var(--color-border);
}

.accordion__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  transition: color var(--transition);
}

.accordion__header:hover {
  color: var(--color-text-muted);
}

.accordion__icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion__item--open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion__item--open .accordion__body {
  max-height: 300px;
}

.accordion__body p {
  padding-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Size Guide
   ======================================== */
.size-guide__intro {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.size-guide__tables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.size-guide__table h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.size-guide__table table {
  font-size: 0.9rem;
}

.size-guide__table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
}

.size-guide__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.size-guide__note {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.size-guide__note a {
  text-decoration: underline;
}

/* ========================================
   Next Drop Teaser
   ======================================== */
.next-drop__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.next-drop__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-badge);
  margin-bottom: 12px;
}

.next-drop__text {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.next-drop__blur {
  width: 240px;
  height: 320px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.next-drop__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px) brightness(0.6);
  transform: scale(1.1);
}

/* ========================================
   Email Signup
   ======================================== */
.signup__inner {
  max-width: 520px;
  text-align: center;
  margin: 0 auto;
}

.signup__text {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}

.signup__form {
  display: flex;
  gap: 0;
}

.signup__input {
  flex: 1;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-right: none;
  color: var(--color-text);
  outline: none;
  transition: border-color var(--transition);
}

.signup__input:focus {
  border-color: var(--color-text-muted);
}

.signup__input::placeholder {
  color: var(--color-text-muted);
}

.signup__btn {
  flex-shrink: 0;
  padding: 16px 28px;
}

.signup__note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 12px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

.footer__logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.footer__tagline {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__col a:hover {
  color: var(--color-text);
}

.footer__bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  :root {
    --container-pad: 16px;
  }

  .header__nav {
    display: none;
    position: fixed;
    top: calc(var(--header-height) + var(--announcement-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }

  .header__nav--open {
    display: flex;
  }

  .header__nav--open .header__link {
    font-size: 1.25rem;
  }

  .header__menu {
    display: flex;
  }

  .header__menu--open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__menu--open span:nth-child(2) {
    opacity: 0;
  }

  .header__menu--open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 56px 0;
  }

  .section__title {
    margin-bottom: 32px;
  }

  .product__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product__dots {
    display: flex;
  }

  .product__thumbs {
    display: none;
  }

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

  .weight__grid {
    gap: 24px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about__details {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .size-guide__tables {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .hero__title {
    letter-spacing: 0.08em;
  }
}

/* ========================================
   Sticky Mobile Buy Bar
   ======================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-bar--visible {
  transform: translateY(0);
}

.mobile-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.mobile-bar__info {
  display: flex;
  flex-direction: column;
}

.mobile-bar__name {
  font-size: 0.85rem;
  font-weight: 600;
}

.mobile-bar__price {
  font-size: 0.95rem;
  font-weight: 700;
}

.mobile-bar__compare {
  font-size: 0.8rem;
  color: var(--color-compare);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.mobile-bar__btn {
  padding: 12px 24px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .mobile-bar {
    display: block;
  }
}

@media (max-width: 480px) {
  .footer__links {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner p a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__accept {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.cookie-banner__decline {
  padding: 10px 24px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-banner__decline:hover {
  border-color: var(--color-text-muted);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__actions {
    justify-content: center;
  }
}
