:root {
  --primary-color: #fec400;
  --primary-dark: #e5b200;
  --primary-light: #ffdb4d;

  --accent-color: #ffdf6e;
  --accent2-color: #e5b200;
  --accent3-color: #fff6d1;
  --accent4-color: #ffcc00;

  --dark-text-color: #1a1a1a;
  --gray-text-color: #7a7a7a;
  --light-text-color: #ffffff;

  --dark-background-color: #1a1a1a;
  --light-background-color: #fff8e0;

  --font-family-body: 'Nunito', sans-serif;
  --font-family-heading: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-family-body);
  color: var(--dark-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
}

/* Header CSS */
#global-header {
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

/* Default (Transparent) State - White Text */
.nav-link {
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.lang-link {
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.lang-link:hover {
  color: var(--primary-color) !important;
}

#mobile-toggle {
  color: white;
  transition: color 0.3s;
}

/* Scrolled (White) State - Dark Text */
#global-header.scrolled {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#global-header.scrolled .nav-link {
  color: var(--dark-text-color);
}

#global-header.scrolled .lang-link {
  color: var(--dark-text-color);
}

#global-header.scrolled #mobile-toggle {
  color: var(--dark-text-color);
}

/* Divider color */
.lang-divider {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

#global-header.scrolled .lang-divider,
.header-dark #global-header .lang-divider {
  color: #9ca3af;
  /* gray-400 */
}

/* Force dark header on light pages */
.header-dark #global-header {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-dark #global-header .nav-link,
.header-dark #global-header .lang-link,
.header-dark #global-header #mobile-toggle {
  color: var(--dark-text-color);
}

.cta-btn {
  background: var(--primary-color);
  color: var(--dark-text-color);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  transition: .3s;
}

.cta-btn:hover {
  background: var(--primary-dark);
}

/* Mobile Menu */
.mobile-link {
  color: var(--dark-text-color);
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
}

.mobile-cta {
  background: var(--primary-color);
  color: var(--dark-text-color);
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  font-weight: 700;
  display: block;
}

/* Footer CSS */
.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-list li a {
  opacity: .8;
  transition: .3s;
  font-size: .9rem;
  color: white;
}

.footer-list li a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.social {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: .3s;
  cursor: pointer;
}

.social:hover {
  background: var(--primary-color);
  transform: scale(1.1);
  color: var(--dark-text-color);
}

.footer-input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
}

.footer-btn {
  width: 100%;
  background: var(--primary-color);
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  color: #000;
  transition: .3s;
  margin-top: 10px;
}

.footer-btn:hover {
  background: var(--primary-dark);
}
.physical-stores-section {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.physical-stores-eyebrow {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: var(--light-background-color);
  border: 1px solid #f3f4f6;
  color: var(--primary-dark);
  font-family: var(--font-family-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.physical-stores-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

.physical-store-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid #f1f1f1;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.physical-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 26, 26, 0.12);
  border-color: #f3e4a8;
}

.physical-store-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff8e0;
}

.physical-store-content {
  padding: 1.5rem;
}

.physical-store-title {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-text-color);
}

.physical-store-copy {
  margin-top: 0.5rem;
  color: var(--gray-text-color);
  line-height: 1.6;
}

.physical-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  background: var(--primary-color);
  color: var(--dark-text-color);
  font-family: var(--font-family-heading);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.physical-store-link:hover {
  background: var(--primary-dark);
  transform: translateX(2px);
}

@media (min-width: 768px) {
  .physical-stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .physical-stores-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
