/* ============================================
   Venkateshwara – Attractive & Responsive UI
   ============================================ */

:root {
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-primary: #1b5e3d;
  --color-primary-dark: #0d3d24;
  --color-accent: #c9a227;
  --color-accent-soft: #e8d9a0;
  --color-text: #2d2d2d;
  --color-text-muted: #5c5c5c;
  --color-sale: #16a34a;
  --color-mrp: #991b1b;
  --color-border: #e8e4de;
  --shadow-sm: 0 2px 8px rgba(27, 94, 61, 0.06);
  --shadow-md: 0 8px 24px rgba(27, 94, 61, 0.1);
  --shadow-lg: 0 16px 48px rgba(27, 94, 61, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Segoe UI', sans-serif;
  --header-height: 72px;
  --container-max: 1200px;
  --safe-bottom: env(safe-area-inset-bottom, 20px);
  --safe-right: env(safe-area-inset-right, 20px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ========== CONTAINER ========== */
main,
.category .products {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  min-height: var(--header-height);
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.logo-area h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
}

/* Hamburger – visible only on small screens */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

.nav-toggle:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

nav a {
  color: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

nav a i {
  font-size: 1.1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  margin-left: 4px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--color-accent-soft);
  font-size: inherit;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lang-btn.active {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 600;
}

.lang-switch a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile nav */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  nav.is-open {
    display: flex;
  }

  nav a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .lang-switch {
    margin-left: 0;
    padding: 12px 16px;
  }
}

/* ========== SECTIONS ========== */
.category {
  padding: clamp(24px, 5vw, 48px) 20px;
}

.category:nth-child(even) {
  background: linear-gradient(180deg, rgba(27, 94, 61, 0.03) 0%, transparent 100%);
}

.category h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-primary);
  margin-bottom: 20px;
  text-align: center;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ========== PRODUCT GRID ========== */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 480px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 992px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ========== PRODUCT CARD ========== */
.product {
  background: var(--color-surface);
  padding: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-soft);
}

.product:active {
  transform: translateY(-2px);
}

/* Product image – big & attractive */
.product .product-img-wrap {
  position: relative;
  width: 100%;
  padding: 20px 20px 24px;
  background: linear-gradient(165deg, #f5f2ed 0%, #fdfcfa 50%, #f8f6f2 100%);
  overflow: hidden;
}

.product .product-img-wrap::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(27, 94, 61, 0.08);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.product .product-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.product:hover .product-img-wrap img {
  transform: scale(1.04);
}

@media (min-width: 480px) {
  .product .product-img-wrap img {
    height: 280px;
  }
}

@media (min-width: 768px) {
  .product .product-img-wrap {
    padding: 24px 24px 28px;
  }
  .product .product-img-wrap img {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .product .product-img-wrap {
    padding: 28px 28px 32px;
  }
  .product .product-img-wrap img {
    height: 320px;
  }
}

.product h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.4;
  padding: 16px 16px 8px;
  color: var(--color-text);
  flex: 1;
}

/* Price area */
.product .price,
.product .price-box {
  padding: 0 16px 16px;
  margin-top: auto;
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.price-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sale-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-sale);
}

.product .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-sale);
  margin-top: 4px;
}

.mrp {
  color: var(--color-mrp);
  text-decoration: line-through;
  font-size: 0.9rem;
  font-weight: 500;
}

.discount {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Order online block on card */
.product .order-online {
  text-align: center;
  padding: 12px 16px 16px;
  margin: 0;
  border-top: 1px dashed var(--color-border);
}

.product .order-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.market-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.market-logos a {
  display: inline-block;
  transition: transform 0.2s ease;
}

.market-logos a:hover {
  transform: scale(1.08);
}

.market-logos img {
  height: 36px;
  width: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

@media (min-width: 768px) {
  .market-logos img {
    height: 42px;
  }
}

/* ========== POPUP ========== */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13, 61, 36, 0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.popup-content {
  background: var(--color-surface);
  padding: 24px;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: var(--radius-lg);
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  margin: auto;
}

.close {
  position: sticky;
  top: 0;
  left: calc(100% - 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-text-muted);
  background: var(--color-bg);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  float: right;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}

.close:hover {
  background: var(--color-primary);
  color: #fff;
}

#popup-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: var(--color-primary);
  margin-bottom: 16px;
  clear: both;
}

.variation-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 16px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(27, 94, 61, 0.03) 0%, transparent 100%);
}

.variation-btn {
  border: 1px solid rgba(27, 94, 61, 0.2);
  background: var(--color-surface);
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.variation-btn:hover {
  border-color: var(--color-primary);
  background: var(--color-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.variation-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.variation-btn.active {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 14px rgba(27, 94, 61, 0.25);
}

@media (max-width: 480px) {
  .variation-selector {
    gap: 8px;
    padding: 8px;
  }

  .variation-btn {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }
}

/* Slider in popup */
.slider-container {
  overflow: hidden;
  width: 100%;
  margin: 16px 0;
  max-height: 280px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.slide {
  min-width: 100%;
  text-align: center;
  padding: 12px;
}

.slide img,
.slide video {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .slider-container {
    max-height: 320px;
  }
  .slide img,
  .slide video {
    max-height: 300px;
  }
}

/* Order online in popup */
#popup-body .order-online {
  text-align: center;
  margin: 16px 0;
}

.market-inline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}

.market-inline img {
  height: 32px;
  width: auto;
}

/* Product details in popup */
.product-details {
  font-size: 0.95rem;
  line-height: 1.65;
  margin-top: 20px;
  color: var(--color-text);
}

.product-details h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 18px;
  margin-bottom: 6px;
}

.product-details p {
  margin-bottom: 8px;
}

/* Popup WhatsApp button */
.popup-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.popup-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.popup-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  margin-top: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(27, 94, 61, 0.3);
  font-family: var(--font-body);
}

.popup-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 61, 0.4);
  color: #fff;
}

.popup-close-btn {
  display: block;
  width: 100%;
  margin: 16px auto 0;
  padding: 12px 24px;
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: background 0.2s, color 0.2s;
}

.popup-close-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
  position: fixed;
  bottom: var(--safe-bottom);
  right: var(--safe-right);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 1.75rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 90;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

@media (min-width: 768px) {
  .floating-whatsapp {
    width: 60px;
    height: 60px;
    font-size: 1.85rem;
  }
}

/* ========== PRODUCT VIDEO in popup ========== */
.product-video {
  width: 100%;
  max-height: 280px;
  border-radius: var(--radius-md);
  margin-top: 12px;
  background: #000;
}

/* ========== CONTACT PAGE ========== */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.logo-link:hover {
  color: #fff;
}

.nav-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-page {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px) 20px;
  padding-bottom: 80px;
}

.contact-hero {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.contact-hero h1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 12px;
}

.contact-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 480px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .contact-card-address {
    grid-column: span 2;
  }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-soft);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.contact-card-whatsapp .contact-card-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-card p:last-of-type {
  margin-bottom: 14px;
}

.contact-card a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-card a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff !important;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none !important;
}

.contact-card-whatsapp .contact-cta {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.contact-cta-outline {
  background: transparent !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
}

.contact-cta-outline:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
}

/* Contact form */
.contact-form-section {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 32px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-section h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-section .contact-tagline {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form .form-row {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-form .required {
  color: var(--color-mrp);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 94, 61, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(27, 94, 61, 0.3);
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 94, 61, 0.4);
}

.contact-hours {
  text-align: center;
  padding: 28px 20px;
  background: linear-gradient(180deg, rgba(27, 94, 61, 0.06) 0%, transparent 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.contact-hours h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-muted {
  font-size: 0.9rem !important;
  color: var(--color-text-muted) !important;
  margin-top: 8px !important;
}

/* ========== LANGUAGE SELECTOR ========== */
.language-selector {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.language-selector button {
  padding: 8px 16px;
  border: 2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.language-selector button:hover {
  background: var(--color-primary);
  color: #fff;
}

.language-selector button.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary-dark);
}

/* ========== FOCUS STYLES (accessibility) ========== */
a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
