:root {
  --primary-color: #8B4513;
  --secondary-color: #D4AF37;
  --accent-color: #C19A6B;
  --text-color: #2C2416;
  --light-text: #FFFFFF;
  --bg-light: #FAF8F5;
  --bg-dark: #3E2723;
  --nav-color: #2C2416;
  --nav-hover-color: #8B4513;
  --footer-bg: #3E2723;
  --footer-text: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background: var(--bg-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: var(--text-color);
}

h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: var(--text-color);
}

h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  color: var(--text-color);
}

h4 {
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h5, h6 {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
}

small, .small-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar {
  background: var(--bg-light);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-link:focus,
.logo-link:active {
  outline: none !important;
  box-shadow: none !important;
}

.logo {
  min-height: 30px;
  height: auto;
  width: auto;
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
  display: block;
  background: transparent;
  transition: opacity 0.3s ease;
}

.logo:hover {
  .8;
}

.brand-title,
.nav-brand h1,
.nav-brand .brand-name,
.nav-brand span:not(.mobile-toggle span) {
  display: none !important;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-menu a {
  color: var(--nav-color);
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 16px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--nav-hover-color);
}

.mobile-toggle,
.phone-header-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  flex-shrink: 0;
}

.mobile-toggle svg,
.phone-header-btn svg {
  color: var(--nav-color);
  transition: color 0.3s ease;
}

.mobile-toggle:focus,
.mobile-toggle:active,
.phone-header-btn:focus,
.phone-header-btn:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.mobile-toggle:hover svg,
.phone-header-btn:hover svg {
  color: var(--nav-hover-color);
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 30px 40px;
}

.hero-bg {
  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.5);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--light-text);
  max-width: 800px;
  padding: 30px 40px;
}

.hero-content h1 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 1rem;
  color: var(--light-text);
}

.hero-description {
  font-size: 18px;
  margin-bottom: 2rem;
  color: var(--light-text);
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--secondary-color);
  color: var(--text-color);
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cta-button:hover {
  background: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.featured-collections {
  padding: 30px 40px;
  background: var(--bg-light);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-color);
}

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

.collection-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.collection-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.05);
}

.collection-content {
  padding: 24px;
}

.collection-content h3 {
  margin-bottom: 1rem;
}

.story-section {
  padding: 30px 40px;
  background: white;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content {
  padding: 30px 40px;
}

.story-content h2 {
  margin-bottom: 1rem;
}

.text-link {
  color: var(--primary-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.story-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-section {
  padding: 30px 40px;
  background: var(--bg-light);
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.cta-section {
  padding: 30px 40px;
  background: var(--bg-dark);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px 40px;
}

.cta-content h2 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

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

.page-header {
  background: var(--primary-color);
  padding: 30px 40px;
  text-align: center;
}

.page-header h1 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--light-text);
  font-size: 18px;
}

.collections-detailed {
  padding: 30px 40px;
}

.collection-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: center;
}

.collection-detail.reverse {
  direction: ltr;
}

.collection-detail.reverse .collection-detail-content {
  direction: rtl;
}

.collection-detail-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.collection-detail-content {
  padding: 30px 40px;
}

.collection-detail-content h2 {
  margin-bottom: 1rem;
}

.collection-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.collection-detail-content ul li {
  padding: 0.5rem 0;
  padding-right: 1.5rem;
  position: relative;
}

.collection-detail-content ul li:before {
  content: '✦';
  position: absolute;
  right: 0;
  color: var(--secondary-color);
}

.timeline-section {
  padding: 30px 40px;
  background: var(--bg-light);
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.timeline {
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.timeline:before {
  content: '';
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-right: 60px;
}

.timeline-marker {
  position: absolute;
  right: 11px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-color);
  border: 3px solid var(--bg-light);
}

.timeline-content {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.visit-cta {
  padding: 30px 40px;
  background: var(--accent-color);
  text-align: center;
}

.visit-cta h2 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.visit-cta p {
  color: var(--light-text);
  margin-bottom: 2rem;
}

.about-intro {
  padding: 30px 40px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  padding: 30px 40px;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.values-section {
  padding: 30px 40px;
  background: var(--bg-light);
}

.values-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.value-card {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 24px;
}

.value-card h3 {
  margin-bottom: 1rem;
}

.mission-section {
  padding: 30px 40px;
  background: var(--bg-dark);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 40px;
}

.mission-content h2 {
  color: var(--light-text);
  text-align: center;
  margin-bottom: 1rem;
}

.mission-content p {
  color: var(--light-text);
}

.process-section {
  padding: 30px 40px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.process-timeline {
  max-width: 900px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  align-items: start;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step h3 {
  margin-bottom: 1rem;
}

.expertise-section {
  padding: 30px 40px;
  background: var(--bg-light);
}

.expertise-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.expertise-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.expertise-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-section {
  padding: 30px 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 30px 40px;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h3 {
  margin-bottom: 0.5rem;
}

.contact-text a {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

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

.visit-note {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  margin-top: 2rem;
}

.visit-note h3 {
  margin-bottom: 1rem;
}

.contact-form-wrapper {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-button {
  padding: 14px 32px;
  background: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--secondary-color);
  color: var(--text-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.faq-section {
  padding: 30px 40px;
  background: var(--bg-light);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.whatsapp-float {
  display: none;
}

.footer {
  background: var(--footer-bg);
  padding: 30px 40px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--text-color);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }
  h3 { font-size: 20px !important; }
  p { font-size: 15px !important; }
}

@media (max-width: 768px) {
  section {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .hero, .section, .page-header, .cta-section, .visit-cta {
    padding: 30px 20px;
  }

  .story-content, .about-text, .mission-content, .contact-info, .collection-detail-content {
    padding: 30px 20px;
  }

  .contact-form-wrapper, .visit-note, .value-card, .timeline-content, .expertise-item, .faq-item {
    padding: 20px 16px;
  }

  h1 {
    font-size: 28px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h2 {
    font-size: 22px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h3 {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h4, h5, h6 {
    font-size: 16px !important;
    margin-bottom: 0.75rem !important;
    margin-top: 0.5rem !important;
  }

  p {
    font-size: 14px !important;
  }

  .nav-container {
    padding-left: 60px;
    padding-right: 60px;
  }

  .mobile-toggle,
  .phone-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  html[dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    right: 15px;
    left: auto;
  }

  html[dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 15px;
    right: auto;
  }

  html[dir="ltr"] .mobile-toggle,
  html[lang="en"] .mobile-toggle,
  html[lang="es"] .mobile-toggle,
  html[lang="fr"] .mobile-toggle {
    left: 15px;
    right: auto;
  }

  html[dir="ltr"] .phone-header-btn,
  html[lang="en"] .phone-header-btn,
  html[lang="es"] .phone-header-btn,
  html[lang="fr"] .phone-header-btn {
    right: 15px;
    left: auto;
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-brand {
    margin: 0 auto;
    justify-content: center;
  }

  .logo {
    min-height: 30px;
    max-width: 100px;
    max-height: 40px;
  }

  .hero {
    min-height: 400px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .collections-grid,
  .values-grid,
  .gallery-grid,
  .expertise-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .story-grid,
  .about-content,
  .collection-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .collection-detail.reverse {
    direction: rtl;
  }

  .timeline:before {
    right: 10px;
  }

  .timeline-item {
    padding-right: 40px;
  }

  .timeline-marker {
    right: 1px;
    width: 18px;
    height: 18px;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .whatsapp-float {
    display: flex;
    position: fixed;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background: #25d366;
    color: white;
    text-decoration: none;
  }

  html[lang="he"] .whatsapp-float,
  html[lang="ar"] .whatsapp-float,
  html[dir="rtl"] .whatsapp-float {
    right: 20px;
    left: auto;
  }

  html[lang="en"] .whatsapp-float,
  html[lang="es"] .whatsapp-float,
  html[lang="fr"] .whatsapp-float,
  html[dir="ltr"] .whatsapp-float {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 480px) {
  .logo {
    min-height: 30px;
    max-width: 100px;
    max-height: 40px;
  }

  .hero {
    min-height: 350px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }
}
/* CRITICAL: Ensure images are visible immediately (but don't interfere with accessibility toolbar) */
img, picture, figure {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Legal Footer Styles */

    /* Legal Footer Styles - WCAG AA Compliant */
    .legal-footer {
      background-color: #2c3e50;
      color: #ffffff;
      padding: 20px 0;
      font-size: 14px;
      border-top: 3px solid #3498db;
    }

    .legal-footer .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .legal-footer .footer-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .legal-footer .all-rights-reserved {
      flex: 1;
      min-width: 200px;
    }

    .legal-footer .all-rights-reserved p {
      margin: 0;
    }

    .legal-footer .zappy-attribution {
      text-align: center;
      width: 100%;
      padding-top: 15px;
      border-top: 1px solid #ffffff;
      opacity: 0.3;
    }

    .legal-footer .zappy-attribution p {
      margin: 0;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-style: italic;
    }

    .legal-footer .footer-social {
      display: flex;
      align-items: center;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
      flex-shrink: 0;
    }

    .legal-footer .footer-social a {
      color: #ffffff !important;
      text-decoration: none;
      font-size: 22px;
      transition: color 0.3s ease, transform 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
    }

    .legal-footer .footer-social a:hover {
      color: #3498db !important;
      transform: scale(1.15);
      background-color: rgba(255, 255, 255, 0.2);
    }

    .legal-footer .footer-social a:focus {
      outline: 2px solid #3498db;
      outline-offset: 2px;
      border-radius: 50%;
    }
    
    .legal-footer .footer-social i {
      font-size: 20px;
    }

    .legal-footer .footer-legal {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      justify-content: flex-end;
    }

    .legal-footer .footer-legal a {
      color: #ffffff !important;
      text-decoration: none;
      transition: color 0.3s ease, opacity 0.3s ease;
      font-weight: 500;
      opacity: 0.9;
    }

    .legal-footer .footer-legal a:hover {
      color: #ffffff !important;
      opacity: 1;
      text-decoration: underline;
    }

    .legal-footer .footer-legal a:focus {
      outline: 2px solid #ffffff;
      outline-offset: 2px;
      border-radius: 2px;
    }

    .legal-footer .separator {
      color: #ffffff !important;
      font-weight: 300;
      opacity: 0.7;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
      .legal-footer .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }

      .legal-footer .all-rights-reserved {
        width: 100%;
        text-align: center;
      }

      .legal-footer .footer-social {
        justify-content: center;
        order: 2;
      }

      .legal-footer .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
      }
    }

    @media (min-width: 969px) {
      .legal-footer .footer-main {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: baseline;
        gap: 30px;
      }

      .legal-footer .all-rights-reserved {
        text-align: left;
        justify-self: start;
      }

      .legal-footer .footer-social {
        justify-self: center;
      }

      .legal-footer .footer-legal {
        justify-self: end;
        text-align: right;
      }
    }

    /* RTL adjustments */
    [dir="rtl"] .legal-footer .all-rights-reserved {
      text-align: right;
    }

    [dir="rtl"] .legal-footer .footer-legal {
      text-align: left;
    }

    @media (min-width: 969px) {
      [dir="rtl"] .legal-footer .all-rights-reserved {
        text-align: right;
        justify-self: end;
      }

      [dir="rtl"] .legal-footer .footer-legal {
        justify-self: start;
        text-align: left;
      }
    }

    /* RTL Support for Hebrew */
    [dir="rtl"] .legal-footer .footer-main {
      direction: rtl;
    }

    [dir="rtl"] .legal-footer .footer-legal {
      direction: rtl;
    }
    

/* Cookie Consent Styles */

/* Cookie Consent Customizations */
:root {
  --cc-btn-primary-bg: #3b82f6;
  --cc-btn-primary-border: #3b82f6;
  --cc-btn-primary-hover-bg: #2269dd;
}

#cc--main {
  font-family: inherit !important;
}

.cc-btn.cc--btn-primary {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
}

.cc-btn.cc--btn-primary:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #cc--main .cc__btn {
    font-size: 14px !important;
    padding: 8px 16px !important;
  }
  
  .cc__modal .cc__modal-content {
    margin: 10px !important;
  }
}

/* Cookie preferences button in footer */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}

/* Accessibility Styles */

/* Basic Accessibility Enhancements */
:root {
  --accessibility-focus: #146FF8;
}

/* Skip link styles */
.skip-link:focus {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: #000 !important;
  color: white !important;
  padding: 8px !important;
  text-decoration: none !important;
  z-index: 10000 !important;
  border-radius: 4px !important;
}

/* Enhanced focus indicators */
*:focus {
  outline: 2px solid var(--accessibility-focus) !important;
  outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}