/* =========================================================
   ERONNVIDEO.HU — eskuvoi videos oldal
   Tenor Sans + premium glassmorphism + pasztell glow
   ========================================================= */

/* ===== TOKENEK ===== */
:root {
  --bg: #ffffff;
  --bg-pricing: #f8f9ff;
  --bg-coverage: #fafafa;
  --card: #ffffff;
  --ink: #0f1115;
  --muted: #777b85;
  --line: #dfe3ee;
  --accent: #5570ff;
  --bullet: #6ea6ff;
  --body-text: #3b3e47;
  --shadow: 0 6px 20px rgba(15, 17, 21, 0.06);
  --radius: 22px;
  --radius-large: 32px;

  --blue-glow: linear-gradient(135deg, #a8d8ff 0%, #e3f1ff 100%);
  --purple-glow: linear-gradient(135deg, #d9d0ff 0%, #f5f1ff 100%);
  --gold-glow: linear-gradient(135deg, #ffe6bf 0%, #fff4df 100%);

  --premium-badge-bg: #f7f4ff;
  --premium-badge-border: #e4ddff;
  --premium-badge-text: #5b4d82;
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Tenor Sans', serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ===== LUX-TITLE (kozos cimek) ===== */
.lux-title {
  font-family: 'Tenor Sans', serif;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 8px;
  text-align: center;
  margin: 30px auto 20px;
  color: #111;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.lux-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 600px) {
  .lux-title {
    font-size: 16px;
    letter-spacing: 6px;
    padding-bottom: 6px;
  }
}

.section-title-wrap {
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  padding: clamp(40px, 6vw, 80px) 16px clamp(30px, 4vw, 50px);
  text-align: center;
  background: #ffffff;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-logo {
  width: clamp(180px, 22vw, 260px);
  height: auto;
  margin: 0 auto;
}

.hero-title {
  font-family: 'Tenor Sans', serif;
  font-weight: 400;
  font-size: clamp(34px, 6vw, 64px);
  letter-spacing: clamp(6px, 1.2vw, 14px);
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}

.hero-tagline {
  font-family: 'Tenor Sans', serif;
  font-size: clamp(11px, 1.2vw, 14px);
  letter-spacing: clamp(4px, 0.6vw, 8px);
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 600px) {
  .hero {
    padding: 30px 16px 20px;
  }
  .hero-title {
    letter-spacing: 5px;
  }
  .hero-tagline {
    letter-spacing: 4px;
  }
}

/* ===== NAV ===== */
.topnav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffffc9;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #ececf3;
  border-bottom: 1px solid #ececf3;
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 42px;
}

.nav-link {
  font-family: 'Tenor Sans', serif;
  font-size: 15px;
  color: #0f1115;
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  transition: transform 0.22s ease, color 0.2s ease;
}

.nav-link:hover {
  transform: scale(1.10);
  color: var(--accent);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

@media (max-width: 640px) {
  .topnav {
    padding: 10px 0;
  }
  .nav-inner {
    max-width: 100%;
    padding: 0 12px;
    gap: 18px;
    flex-wrap: wrap;
  }
  .nav-link {
    font-size: 13px;
    padding: 4px 2px;
  }
}

/* ===== ABOUT ===== */
.about-section,
.about-section * {
  box-sizing: border-box;
  font-family: 'Tenor Sans', serif;
}

.about-section {
  padding: clamp(60px, 7vw, 120px) 16px;
  background:
    radial-gradient(circle at 0 0, #f6f3ff 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #fff4e4 0, transparent 55%),
    #ffffff;
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
}

.about-card {
  position: relative;
  border-radius: 32px;
  padding: clamp(36px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 225, 240, 0.7);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  text-align: center;
  transition: all 0.32s cubic-bezier(0.2, 0.55, 0.25, 1);
}

.about-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(160, 185, 255, 0.28), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 210, 170, 0.22), transparent 65%);
  opacity: 0.75;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(150, 165, 255, 0.65);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.14),
    0 10px 24px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
}

.about-card:hover::before {
  opacity: 1;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-text {
  margin: 0 auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--body-text);
  letter-spacing: 0.01em;
}

.about-text p {
  margin: 0 0 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: #22232a;
}

@media (max-width: 640px) {
  .about-card {
    border-radius: 26px;
    padding: 26px 20px 30px;
  }
  .about-text {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ===== PORTFOLIO ===== */
.pf-section,
.pf-section * {
  box-sizing: border-box;
  font-family: 'Tenor Sans', serif;
}

.pf-section {
  padding: clamp(50px, 7vw, 100px) 16px;
  background: #ffffff;
}

.pf-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.pf-grid {
  --cols: 2;
  display: grid;
  gap: clamp(34px, 3.2vw, 44px);
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
}

@media (max-width: 900px) {
  .pf-grid {
    --cols: 1;
  }
}

.pf-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 32px;
  border: 1px solid rgba(220, 225, 240, 0.55);
  padding: 20px 20px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.28s ease;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 4px 14px rgba(0, 0, 0, 0.03);
}

.pf-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%,
    rgba(255, 210, 160, 0.22),
    rgba(200, 220, 255, 0.18),
    transparent 70%);
  opacity: 0.6;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.pf-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.14);
  border-color: rgba(180, 190, 255, 0.65);
}

.pf-card:hover::before {
  opacity: 1;
}

.pf-video-wrap {
  position: relative;
  border-radius: 22px;
  padding: 4px;
  background: linear-gradient(
    135deg,
    rgba(210, 225, 255, 0.9),
    rgba(255, 240, 220, 0.9)
  );
}

.pf-video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.25);
}

.pf-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pf-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: all 0.25s ease;
}

.pf-card:hover .pf-play-icon {
  background: rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%) scale(1.08);
}

.pf-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #ffffff;
  margin-left: 3px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.5));
}

.pf-name {
  margin: 16px 4px 0;
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #0f1115;
}

@media (max-width: 640px) {
  .pf-card {
    padding: 16px;
    border-radius: 26px;
  }
  .pf-name {
    font-size: 15px;
  }
  .pf-play-icon {
    width: 48px;
    height: 48px;
  }
}

/* ===== PRICING ===== */
.pricing-lite,
.pricing-lite * {
  font-family: 'Tenor Sans', serif;
  box-sizing: border-box;
}

.pricing-lite {
  padding: clamp(36px, 5vw, 80px) 16px;
  background: var(--bg-pricing);
}

.pricing-grid {
  --cols: 3;
  display: grid;
  gap: clamp(18px, 2vw, 26px);
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    --cols: 2;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    --cols: 1;
  }
}

.p-card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.p-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(15, 17, 21, 0.12);
}

.shine-blue::before,
.shine-purple::before,
.shine-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  filter: blur(28px);
  z-index: 0;
}

.shine-blue::before { background: var(--blue-glow); }
.shine-purple::before { background: var(--purple-glow); }
.shine-gold::before { background: var(--gold-glow); }

.p-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  z-index: 1;
}

.p-title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 24px);
  color: var(--ink);
  letter-spacing: 0.2px;
  font-weight: 400;
}

.p-badge {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  background: #fff;
}

.p-badge-premium {
  background: var(--premium-badge-bg);
  border-color: var(--premium-badge-border);
  color: var(--premium-badge-text);
}

.p-list {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.p-list li {
  font-size: 15px;
  color: #222;
  position: relative;
  padding-left: 16px;
}

.p-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--bullet);
}

.p-price {
  margin-top: auto;
  align-self: stretch;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #111;
}

.price-original {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  opacity: 0.85;
}

.price-discount {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.price-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.price-value-strong {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pricing-note {
  max-width: 1200px;
  margin: 16px auto 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.pricing-note-accent {
  display: inline-block;
  margin-top: 4px;
  font-style: italic;
}

/* ===== NAPTAR ===== */
.calendar-section {
  padding: clamp(40px, 5vw, 70px) 16px clamp(20px, 3vw, 40px);
  background: #ffffff;
  text-align: center;
}

.calendar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 0;
}

.calendar-frame {
  width: 100%;
  max-width: 1000px;
  height: 700px;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

@media (max-width: 768px) {
  .calendar-frame {
    width: 92%;
    height: 650px;
    border-radius: 22px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .calendar-frame {
    width: 88%;
    height: 520px;
    border-radius: 24px;
  }
}

/* ===== TERKEP (coverage) ===== */
.coverage-section,
.coverage-section * {
  font-family: 'Tenor Sans', serif;
  box-sizing: border-box;
}

.coverage-section {
  padding: clamp(40px, 6vw, 80px) 16px;
  background: var(--bg-coverage);
}

.coverage-inner {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.coverage-text {
  font-size: 14px;
  color: #555;
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.55;
  font-weight: 300;
}

#wedding-map {
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(201, 167, 105, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.10);
}

@media (max-width: 600px) {
  #wedding-map {
    height: 420px;
    border-radius: 18px;
  }
}

/* ===== KAPCSOLAT URLAP ===== */
.contact-section {
  padding: clamp(40px, 6vw, 90px) 16px;
  background:
    radial-gradient(circle at 0 0, #f6f3ff 0, transparent 55%),
    radial-gradient(circle at 100% 100%, #fff4e4 0, transparent 55%),
    #ffffff;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  border-radius: 32px;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(220, 225, 240, 0.7);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.06),
    0 6px 18px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(160, 185, 255, 0.20), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 210, 170, 0.18), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  gap: 22px;
}

.form-row-double {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
  .form-row-double {
    grid-template-columns: 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field .req {
  color: #c97070;
  margin-left: 2px;
}

.form-field input,
.form-field textarea {
  font-family: 'Tenor Sans', serif;
  font-size: 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 205, 225, 0.7);
  border-radius: 999px;
  padding: 12px 22px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.form-field textarea {
  border-radius: 22px;
  min-height: 160px;
  resize: vertical;
  line-height: 1.55;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #b8bccc;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(85, 112, 255, 0.12);
}

.form-submit {
  font-family: 'Tenor Sans', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--ink);
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  justify-self: center;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 10px 24px rgba(85, 112, 255, 0.25);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  min-height: 20px;
}

.form-status.success {
  color: #2dbf7e;
}

.form-status.error {
  color: #c97070;
}

/* ===== TOVABBI ELERHETOSEG (footer ikonok) ===== */
.contact-icons-section {
  padding: clamp(40px, 5vw, 70px) 16px clamp(30px, 4vw, 50px);
  background: #ffffff;
  text-align: center;
}

.contact-icons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  max-width: 900px;
  margin: 30px auto 0;
}

.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.25s ease;
}

.contact-icon:hover {
  transform: translateY(-4px) scale(1.05);
}

.contact-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease;
}

.contact-icon:hover .contact-icon-circle {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.contact-icon-circle svg {
  width: 38px;
  height: 38px;
  fill: #ffffff;
}

.icon-mail { background: #4a90e2; }
.icon-messenger { background: #2c2c2c; }
.icon-facebook { background: #1877f2; }
.icon-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.icon-youtube { background: #ff0000; }

.contact-icon-label {
  font-family: 'Tenor Sans', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--ink);
}

@media (max-width: 600px) {
  .contact-icons-grid {
    gap: 24px;
  }
  .contact-icon-circle {
    width: 60px;
    height: 60px;
  }
  .contact-icon-circle svg {
    width: 30px;
    height: 30px;
  }
  .contact-icon-label {
    font-size: 12px;
  }
}

/* ===== VELEMENYEK (FB iframe-ek) ===== */
.reviews-section {
  padding: clamp(40px, 5vw, 80px) 16px;
  background: #ffffff;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1150px;
  margin: 30px auto 0;
  padding: 16px 12px 40px;
  box-sizing: border-box;
}

.review-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e1e4f0;
  box-shadow: 0 6px 18px rgba(15, 17, 21, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  position: relative;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(160, 185, 255, 0.2), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(255, 210, 170, 0.16), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.review-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 14px 32px rgba(15, 17, 21, 0.16);
  border-color: #c5cff8;
  background: #ffffff;
}

.review-card:hover::before {
  opacity: 1;
}

.review-frame {
  width: 100%;
  border: none;
  height: 320px;
  position: relative;
  z-index: 1;
}

/* Placeholder ha a cookie meg nincs elfogadva */
.review-placeholder {
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.review-placeholder-icon {
  width: 32px;
  height: 32px;
  fill: #1877f2;
  opacity: 0.6;
}

.review-placeholder-link {
  color: var(--accent);
  text-decoration: underline;
  font-size: 12px;
}

@media (max-width: 600px) {
  .reviews-grid {
    padding: 10px 10px 32px;
    gap: 14px;
  }
  .review-card {
    border-radius: 16px;
  }
  .review-frame,
  .review-placeholder {
    height: 300px;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  padding: 18px 22px;
  z-index: 10000;
  font-family: 'Tenor Sans', serif;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: cookieSlide 0.4s ease;
}

@keyframes cookieSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--body-text);
  margin: 0 0 14px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Tenor Sans', serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  border: 1px solid var(--line);
  transition: all 0.2s ease;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--muted);
}

.cookie-btn-decline:hover {
  background: #f4f5fa;
  color: var(--ink);
}

.cookie-btn-accept {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.cookie-btn-accept:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 16px 18px;
  }
  .cookie-banner-text {
    font-size: 12px;
  }
}
