:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --secondary: #64748b;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg-light);
 
}

/* Top Promo Bar */
.promo-bar {
  position: relative; /* sits in normal flow above header */
  color: #fff;
  padding: 16px 1rem; /* more vertical breathing room + horizontal padding */
  background: transparent;
  margin-bottom: 16px; /* more separation from header */
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem; /* previous spacing */
  width: calc(100% - 24px);
  max-width: 1200px; /* desktop width - updated to match container */
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 0; /* square corners */
  border: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28);
}

/* Override container width for promo only, per requested design */
.promo-bar > .container.promo-bar-inner {
  margin: 0 auto !important;
  padding: 1.25rem 1.5rem !important;
  width: calc(100% - 24px) !important;
  max-width: 1200px !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.promo-bar-text { flex: 1; font-size: 1rem; line-height: 1.45; }
.promo-bar-text strong { margin-inline-end: .5rem; }
.promo-bar-actions { display: flex; align-items: center; gap: .75rem; }
.promo-bar-close {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 9999px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.promo-bar-close:hover { background: rgba(255,255,255,0.18); }
.promo-bar-actions .nav-link {
  background: #fff;
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.6rem 1rem;
}
@media (max-width: 768px) {
  .promo-bar-inner { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .promo-bar-actions { justify-content: space-between; }
  .promo-bar-actions .nav-link { width: 100%; text-align: center; }
  .promo-bar-text { font-size: .95rem; }
}

@media (min-width: 1200px) {
  .promo-bar-inner { max-width: 1200px; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .solutions .container {
    padding: 0;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height 0.3s ease;
}

.header.scrolled .header-inner {
  height: 60px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

/* Hero Section */
.hero-wrapper {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  min-height: 100vh;
  padding-top: 70px;
  /* Account for fixed header */
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero {
  position: relative;
  color: #fff;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Features */
.features {
  padding: 6rem 0;
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.125rem;
}

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

.feature-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Solutions */
.solutions {
  padding: 6rem 0;
  background: var(--bg-light);
}

.solution-card {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 500px;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-content {
  flex: 1;
}

.solution-content h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.solution-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
}

.solution-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.solution-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* RTL support for Hebrew */
[dir="rtl"] .solution-features li {
  padding-left: 0;
  padding-right: 1.5rem;
}

[dir="rtl"] .solution-features li::before {
  left: auto;
  right: 0;
}

/* Footer */
.footer {
  background: #4a4a4a;
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer-logo {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer h4 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 500;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.9;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-link {
  color: #fff;
  font-size: 1.75rem;
  opacity: 0.9;
}

.social-link:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  color: #fff;
  opacity: 0.9;
  font-size: 1.125rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Language Dropdown */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.875rem;
  border-radius: var(--radius);
  background: #f5f5f7;
}

.lang-btn img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
}

.lang-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  min-width: 140px;
  z-index: 100;
}

[dir="rtl"] .lang-options {
  right: auto;
  left: 0;
}

.lang-options.active {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  white-space: nowrap;
  color: var(--text);
  transition: all 0.2s;
  /* border-radius: var(--radius); */
}

.lang-option img {
  width: 16px;
  height: 16px;
  border-radius: 2px;
}

.lang-option:hover {
  background: #f5f5f7;
}

.lang-option.active {
  background: #f5f5f7;
}

/* Contact links */
.contact-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-link:hover,
.whatsapp-link:hover {
  color: var(--primary);
}

.whatsapp-link {
  cursor: pointer;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer improvements */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Medium screens (tablets and small desktops) */
@media (max-width: 1200px) and (min-width: 769px) {
  .solution-image img {
    width: 350px;
    max-width: 350px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-wrapper {
    padding-left: 0;
    padding-right: 0;
    padding-top: 70px;
  }
  
  .hero {
    min-height: auto;
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    margin: 0;
    max-width: none;
  }

  .hero-video {
    position: relative;
    height: 40vh;
    min-height: 300px;
  }

  .hero-content {
    position: relative;
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .solution-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
  }

  @media (max-width: 768px) {
    .solution-card {
      padding: 0;
      gap: 1rem;
      flex-direction: column !important;
    }

    .solution-image {
      padding: 0;
      width: 100vw;
      margin-left: 0;
      margin-right: 0;
      order: 1;
    }

    .solution-content {
      padding: 1rem;
      order: 2;
    }

    .solution-image img {
      width: 100vw !important;
      max-width: 100vw !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      height: auto;
    }
  }

  .nav {
    display: none;
  }

  .nav-container {
    gap: 1rem;
  }

  .header.scrolled .nav-container {
    opacity: 1;
  }

  .header.scrolled .logo-container {
    margin: 0;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
  }

  .nav-link:hover {
    background: var(--primary-dark);
    color: white;
  }

  .lang-dropdown {
    margin-left: 0.5rem;
  }

  .lang-options {
    position: absolute;
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

  .lang-option {
    padding: 1rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--primary);
  transition: background 0.2s;
}

.nav-link:hover {
  background: var(--primary-dark);
}

.lang-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  min-width: 140px;
  z-index: 100;
}

.lang-options.active {
  display: block;
}

.lang-option {
  background: white;
}

@media (max-width: 768px) {
  .lang-options {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
  }

  .logo-text {
    font-size: 1em;
  }

  .solutions {
    padding: 3rem 0;
  }

  .lang-btn img {
    display: none;
  }
}

/* Solution Videos */
.solution-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}


@media (max-width: 768px) {
  .solution-image {
    padding: 0;
  }
}

/* Accessibility Modal */
.accessibility-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow-y: auto;
}

.accessibility-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  flex-direction: column;
}

/* FAQ modern UI */
.faq {
  padding: 4rem 0;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

[dir="rtl"] .faq-header h1 {
  text-align: right;
}

.faq-header h1 {
  font-size: 2rem;
}

.faq-search {
  flex: 1;
  max-width: 420px;
}

.faq-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
}

[dir="rtl"] .faq-search input::placeholder {
  direction: rtl;
  text-align: right;
}

.faq-group {
  margin-bottom: 2rem;
}

.faq-group-title {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

[dir="rtl"] .faq-group-title {
  text-align: right;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  cursor: pointer;
}

[dir="rtl"] .faq-question {
  text-align: right;
  flex-direction: row-reverse;
}

.faq-question[aria-expanded="true"] {
  background: #f8fafc;
}

.faq-answer {
  padding: 0 1.25rem 1rem 1.25rem;
  color: var(--text);
}

[dir="rtl"] .faq-answer {
  padding: 0 1.25rem 1rem 1.25rem; /* symmetric */
}

/* Ensure question text aligns right in RTL */
[dir="rtl"] .faq-q-text {
  flex: 1 1 auto;
  text-align: right;
  direction: rtl;
}

.faq-media {
  margin-top: 0.75rem;
}

.faq-screenshot {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-video-link a {
  color: var(--primary);
  text-decoration: none;
}

.faq-video-link a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq {
    padding: 2rem 0;
  }
  .faq-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Access-Flow page */
.accessflow .af-hero-wrapper {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 5rem 1rem 2rem;
}

.accessflow .af-hero {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 2rem;
  color: white;
}
.accessflow .af-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.accessflow .af-hero p {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* Access-Flow hero image (above text) */
.accessflow .af-hero-media-wrapper {
  background: #000;
  padding: 0 1rem;
}

.accessflow .af-hero-media {
  max-width: 1200px;
  margin: 0 auto;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.accessflow .af-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.accessflow .af-features { padding: 3rem 0; }
.accessflow .af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.accessflow .af-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.accessflow .af-card h2 { font-size: 1.25rem; margin-bottom: .75rem; }
.accessflow .af-card p { color: var(--text-light); }

.accessflow .af-cta { padding: 3rem 0; text-align: center; }
.accessflow .af-cta h2 { font-size: 1.75rem; margin-bottom: .75rem; }
.accessflow .af-cta p { color: var(--text-light); margin-bottom: 1rem; }

/* NFC Page Styles */
.nfc .nfc-hero-media-wrapper {
  background: #000;
  padding: 0 1rem;
}

.nfc .nfc-hero-media {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.nfc .nfc-hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.nfc .nfc-hero-wrapper {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3rem 1rem;
}

.nfc .nfc-hero {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.nfc .nfc-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  line-height: 1.2;
}

.nfc .nfc-hero p {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.nfc .af-features { padding: 3rem 0; }
.nfc .af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.nfc .af-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.nfc .af-card h2 { font-size: 1.25rem; margin-bottom: .75rem; }
.nfc .af-card p { color: var(--text-light); line-height: 1.6; }

.nfc .af-cta { padding: 3rem 0; text-align: center; }
.nfc .af-cta h2 { font-size: 1.75rem; margin-bottom: .75rem; }
.nfc .af-cta p { color: var(--text-light); margin-bottom: 1rem; }

.accessibility-wrapper {
  background: white;
  border-radius: var(--radius);
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  position: relative;
  margin: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.accessibility-content {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.accessibility-close {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s;
  width: 100%;
  border-top: 1px solid var(--border);
}

.accessibility-close:hover {
  background: var(--primary-dark);
}

.accessibility-content h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.accessibility-content h2 {
  color: var(--text);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.5rem;
}

.accessibility-content p {
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text);
}

@media (max-width: 768px) {
  .accessibility-modal.active {
    padding: 1rem;
  }

  .accessibility-content {
    padding: 1.5rem;
    max-height: 95vh;
  }

  .accessibility-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Access-Flow mobile styles */
  .accessflow .af-hero-wrapper {
    padding: 3rem 0 2rem;
  }
  
  .accessflow .af-hero {
    border-radius: 0;
    margin: 0;
    max-width: none;
    padding: 1.5rem;
  }

  .accessflow .af-hero-media-wrapper {
    padding: 0;
  }
  
  .accessflow .af-hero-media {
    border-radius: 0;
    margin: 0;
    max-width: none;
  }

  /* NFC mobile styles */
  .nfc .nfc-hero-wrapper {
    padding: 2rem 0;
  }
  
  .nfc .nfc-hero {
    border-radius: 0;
    margin: 0;
    max-width: none;
    padding: 1.5rem;
  }
  
  .nfc .nfc-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .nfc .nfc-hero p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .nfc .nfc-hero-media-wrapper {
    padding: 0;
  }
  
  .nfc .nfc-hero-media {
    border-radius: 0;
    margin: 0;
    max-width: none;
  }
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 400px;
  z-index: 9999;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  padding: 1.5rem;
}

.cookie-content p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text);
  white-space: pre-line;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--white);
  color: var(--text);
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cookie-accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.cookie-decline:hover {
  background: var(--bg-light);
  border-color: var(--secondary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    max-width: none;
  }
  
  .cookie-content {
    padding: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    padding: 0.75rem 1rem;
  }
}
