@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Cairo:wght@400;500;600;700;800&display=swap');

:root {
  --stitch-gold: #c9a84c;
  --stitch-gold-hover: #b89151;
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  
  --stitch-dark-bg: #131313;
  --stitch-surface-container: #20201f;
  
  --text-dark: #1a1a1a;
  --text-body: #444841;
  
  --border-light: rgba(0,0,0,0.1);
  --border-dark: rgba(255,255,255,0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-arabic: 'Cairo', system-ui, -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg-primary: #131313;
  --bg-secondary: #20201f;
  --text-dark: #ffffff;
  --text-body: #cccccc;
  --border-light: rgba(255,255,255,0.15);
}

[dir="rtl"] {
  --font-sans: var(--font-arabic);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-sans); color: var(--text-body); background-color: var(--bg-primary); line-height: 1.6; }
h1, h2, h3, h4 { color: var(--text-dark); line-height: 1.2; font-weight: 700; }
h2 { font-size: 1.8rem; margin-bottom: 2rem; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 0; }
.section-dark { background: var(--stitch-dark-bg); color: #e5e2e1; }
.section-dark h2 { color: var(--stitch-gold); text-transform: uppercase; font-size: 1.4rem; letter-spacing: 1px; }

/* Header */
.stitch-header { display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 0; background: var(--bg-primary); }
.stitch-logo-main { font-size: 1.5rem; font-weight: 800; color: var(--stitch-gold); letter-spacing: 2px; text-transform: uppercase; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.header-container {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: var(--bg-primary);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header-container.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .header-container.scrolled {
  background: rgba(19, 19, 19, 0.82);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--stitch-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--stitch-gold); }
.nav-link:hover::after { transform: scaleX(1); }

/* Hero Wrapper */
.hero-wrapper {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
    align-items: center;
    align-items: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('hero-temple.jpg');
  background-size: cover;
  background-position: center;
}

/* Floating Search Bar */
.search-glass {
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-pill);
  display: flex;
  padding: 0.5rem;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  margin: 0 auto;
  justify-content: center;
    align-items: center;
    align-items: center;
  width: fit-content;
  max-width: 100%;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: #fff;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.search-field:last-of-type { border-right: none; }
.search-field input, .search-field select {
  background: transparent; border: none; color: #fff; outline: none; font-family: var(--font-sans); font-size: 0.95rem; width: 100%;
}
.search-field input::placeholder { color: #ccc; }
.search-field select option { color: #000; }
.search-field svg { color: #aaa; flex-shrink: 0; }

.btn { display: inline-flex; align-items: center; justify-content: center;
    align-items: center;
    align-items: center; padding: 0.8rem 1.5rem; border-radius: var(--radius-pill); font-weight: 600; cursor: pointer; transition: all 0.2s ease; border: none; }
.btn-gold { background: linear-gradient(135deg, #e6c364, #c9a84c); color: #3d2e00; white-space: nowrap; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3); }

/* Filter Pills */
.filter-pills { display: flex; gap: 0.75rem; justify-content: center; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}
.pill.active {
  background: linear-gradient(135deg, #e6c364, #c9a84c);
  color: #3d2e00;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.35);
}
.pill:hover:not(.active) {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.3);
}

/* Grids */
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 1.5rem; }

/* Light Theme Card (Feature Grid Anatomy) */
.stitch-card-light {
  background: var(--bg-primary); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  border: 1px solid var(--border-light);
}
.img-16-9 { position: relative; aspect-ratio: 16/9; width: 100%; overflow: hidden; }
.img-16-9 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.stitch-card-light:hover .img-16-9 img { transform: scale(1.05); }

.badge-tl { position: absolute; top: 12px; left: 12px; background: #131313; color: #fff; padding: 4px 10px; font-size: 0.7rem; border-radius: 4px; font-weight: 600; z-index: 2; letter-spacing: 0.5px;}
.badge-tl.certified { background: #555; }
.badge-tr { position: absolute; top: 12px; right: 12px; background: #fff; color: #1a1a1a; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
    align-items: center;
    align-items: center; border-radius: 50%; z-index: 2; font-size: 1rem; box-shadow: 0 2px 5px rgba(0,0,0,0.1); cursor: pointer; }

.card-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.card-location { font-size: 0.7rem; color: #fff; background: #444; display: inline-block; padding: 2px 8px; border-radius: 4px; margin-bottom: 0.75rem; align-self: flex-start; text-transform: uppercase; letter-spacing: 1px;}
.card-title { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem; font-weight: 700; line-height: 1.3;}
.card-meta { display: flex; gap: 1rem; font-size: 0.8rem; color: #777; margin-bottom: 0.5rem; }
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-rating { font-size: 0.85rem; color: #555; margin-bottom: 1rem; display: flex; align-items: center; gap: 4px; }
.card-rating span { color: var(--stitch-gold); }

.card-footer { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.price-tag { text-align: right; margin-left: auto; }
.price-tag .from { font-size: 0.75rem; color: #777; }
.price-tag .val { font-size: 1.15rem; font-weight: 800; color: var(--text-dark); }
.price-tag .unit { font-size: 0.75rem; color: #777; }

/* Dark Theme Signatures Card */
.stitch-card-dark {
  background: var(--stitch-surface-container);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.stitch-card-dark .card-body { padding: 1.5rem; }
.stitch-card-dark .card-title { color: #fff; margin-bottom: 0.75rem; font-size: 1.2rem; }
.stitch-card-dark .card-desc { color: #aaa; font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.5; }
.stitch-card-dark .card-rating { color: #ccc; margin-bottom: 1.5rem; }
.stitch-card-dark .card-footer { border-top-color: rgba(255,255,255,0.1); align-items: center; }
.stitch-card-dark .price-tag .from { color: #aaa; }
.stitch-card-dark .price-tag .val { color: #fff; font-size: 1.25rem; }
.stitch-card-dark .price-tag .unit { display: none; }
.btn-whatsapp { background: transparent; color: #aaa; font-size: 0.85rem; border: none; cursor: pointer; display: flex; align-items: center; gap: 4px; padding: 0; }
.btn-whatsapp:hover { color: #fff; }

/* Immersive Review Logbook */
.review-card {
  background: var(--stitch-surface-container);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  height: 150px;
}
.review-card img { width: 35%; height: 100%; object-fit: cover; }
.review-content { padding: 1.25rem; width: 65%; display: flex; flex-direction: column; justify-content: center;
    align-items: center;
    align-items: center; }
.review-name { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.review-stars { color: var(--stitch-gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.review-text { color: #aaa; font-size: 0.85rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Footer */
.footer-dark { background: #0a0a0a; color: #888; padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.footer-dark h4 { color: #fff; margin-bottom: 1.5rem; font-size: 1rem; }
.footer-dark ul li { margin-bottom: 0.75rem; }
.footer-dark ul li a:hover { color: var(--stitch-gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; font-size: 0.85rem; }

/* Floating WA */




@media (max-width: 768px) {
  .stitch-header { flex-direction: column; gap: 1rem; overflow: hidden; width: 100%; }
  .brand-logo { max-height: 65px; object-fit: contain; }
  .search-glass { flex-direction: column; width: 100%; border-radius: var(--radius-md); }
  .search-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); width: 100%; padding: 0.75rem; }
  .search-field:last-of-type { border-bottom: none; }
  .btn-gold { width: 100%; border-radius: var(--radius-md); margin-top: 0.5rem; }
  .hero-wrapper { height: auto; padding: 4rem 1rem; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
}


/* WhatsApp CTA & Card Footer Fix */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
    align-items: center;
    align-items: center;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 8px;
  background-color: #25D366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-cta:hover {
  background-color: #1ebc59;
}
.whatsapp-cta svg {
  flex-shrink: 0;
}
.stitch-card-light .card-footer, .stitch-card-dark .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  width: 100%;
}


/* Global Floating WhatsApp Widget */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.floating-wa:hover {
  transform: scale(1.1);
  color: white;
}
.floating-wa svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}


/* Brand Logo Styling */
.brand-logo {
  max-height: 85px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .brand-logo {
    max-height: 65px;
  }
}


/* Premium Dark Cards */
.tour-card-dark {
  background-color: #1a1b26; /* Dark background */
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255,255,255,0.05);
}
.tour-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}
.tour-card-dark .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tour-card-dark .card-title {
  color: white;
  font-size: 1.25rem;
  margin: 0.5rem 0;
  font-weight: 700;
}
.tour-desc {
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.tag-pill-container {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  margin-top: auto;
}
.tag-pill {
  font-size: 0.7rem;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  color: #d4d4d8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-tr {
  position: absolute;
  top: 15px;
  right: 15px;
  background: white;
  color: #1a1b26;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.badge-tr img {
  width: 14px;
  height: 14px;
}

/* Range Slider UI */
.range-slider-wrapper {
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}
.range-track {
  height: 4px;
  background: #e4e4e7;
  border-radius: 2px;
  position: relative;
  margin-bottom: 0.5rem;
}
.range-fill {
  position: absolute;
  left: 0;
  right: 20%;
  top: 0;
  height: 100%;
  background: var(--stitch-gold);
  border-radius: 2px;
}
.range-thumb {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: white;
  border: 2px solid var(--stitch-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.range-thumb.left { left: 0%; }
.range-thumb.right { left: 80%; }
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #71717a;
}

/* ==========================================================================
   CURRENCY SELECTOR
   ========================================================================== */
.currency-select-wrapper {
  display: inline-flex;
  align-items: center;
}
.currency-select {
  background: var(--bg-secondary);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}
.currency-select:hover, .currency-select:focus {
  border-color: var(--stitch-gold);
}

/* ==========================================================================
   SMART WHATSAPP BOOKING MODAL
   ========================================================================== */
.waypoint-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.waypoint-modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.waypoint-modal-card {
  background: var(--bg-primary);
  color: var(--text-dark);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(201, 168, 76, 0.15);
  padding: 2rem;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.waypoint-modal-backdrop.active .waypoint-modal-card {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-body);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
[dir="rtl"] .modal-close {
  right: auto;
  left: 1rem;
}
.modal-close:hover {
  background: var(--bg-secondary);
  color: var(--text-dark);
}
.modal-header {
  margin-bottom: 1.5rem;
}
.modal-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--stitch-gold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.modal-price-hint {
  font-size: 0.9rem;
  color: var(--stitch-gold);
  font-weight: 600;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .modal-grid-2 { grid-template-columns: 1fr; }
}
.modal-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.modal-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.modal-field input, .modal-field textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.modal-field input:focus, .modal-field textarea:focus {
  border-color: var(--stitch-gold);
}
.counter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.35rem 0.5rem;
}
.counter-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.counter-btn:hover {
  background: var(--stitch-gold);
  color: white;
  border-color: var(--stitch-gold);
}
.counter-val {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
.modal-summary-box {
  background: var(--bg-secondary);
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 0.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}
.summary-total {
  color: var(--stitch-gold);
  font-size: 1.15rem;
  font-weight: 800;
}
.summary-hint {
  font-size: 0.75rem;
  color: var(--text-body);
  margin-top: 0.35rem;
}
.modal-wa-btn {
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.modal-wa-btn:hover {
  background: #20BA5A;
  transform: translateY(-1px);
}

/* ==========================================================================
   TOURS FILTER TRANSITIONS
   ========================================================================== */
.tour-card-dark, .stitch-card-light {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tour-hidden {
  display: none !important;
}
.catalog-search-bar {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.catalog-search-bar:focus {
  border-color: var(--stitch-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item.active {
  border-color: var(--stitch-gold);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.1);
}
.faq-q {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--stitch-gold);
}
.faq-q span {
  font-size: 1.4rem;
  color: var(--stitch-gold);
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq-item.active .faq-q span {
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
  display: none;
}
.faq-item.active .faq-a {
  display: block;
}





/* ==========================================================================
   MOBILE NAVIGATION DRAWER
   ========================================================================== */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
@media (max-width: 820px) {
  .main-nav {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block;
  }
}
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-drawer.active {
  opacity: 1;
  visibility: visible;
}
.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  background: var(--bg-primary);
  padding: 2rem 1.5rem;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
[dir="rtl"] .mobile-drawer-content {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}
.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}
.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="rtl"] .mobile-drawer-close {
  align-self: flex-start;
}
.mobile-drawer a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer a:hover {
  color: var(--stitch-gold);
  padding-left: 0.5rem;
}
[dir="rtl"] .mobile-drawer a:hover {
  padding-left: 0;
  padding-right: 0.5rem;
}

/* ==========================================================================
   IMAGE LIGHTBOX MODAL
   ========================================================================== */
.waypoint-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.waypoint-lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}
.waypoint-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 30px rgba(201,168,76,0.25);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.waypoint-lightbox-backdrop.active .waypoint-lightbox-img {
  transform: scale(1);
}
.waypoint-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.waypoint-lightbox-close:hover {
  background: var(--stitch-gold);
  color: #1a1a1a;
}


/* ==========================================================================
   ENHANCED ENHANCEMENTS — NEW SECTIONS
   ========================================================================== */

/* NAV LINKS */
.nav-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--stitch-gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-link:hover { color: var(--stitch-gold); }
.nav-link:hover::after { width: 100%; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.header-container {
  position: sticky;
  top: 0;
  z-index: 10000;
  background: var(--bg-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}
.header-container.scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .header-container.scrolled {
  background: rgba(19, 19, 19, 0.88);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.stitch-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.4vw, 1.8rem);
  margin: 0 auto;
}
.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  flex-shrink: 0;
}

/* HERO ENHANCEMENTS */
.hero-wrapper {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.5rem 3rem;
}

/* Hero Background Slider */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-bg-slider img.active { opacity: 1; }
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.hero-content,
.search-glass,
.filter-pills { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--stitch-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-content { margin-bottom: 2.5rem; }

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.hero-gradient-text {
  background: linear-gradient(135deg, #e6c364, #f0d580, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* SCROLL REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.see-all-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--stitch-gold);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.see-all-link:hover { opacity: 0.75; }

/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2414 50%, #1a1a1a 100%);
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--stitch-gold);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--stitch-gold);
}
.stat-label {
  font-size: 0.85rem;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* DESTINATIONS CHIPS */
.destination-chips {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.dest-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ddd;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.dest-chip:hover, .dest-chip.active {
  background: var(--stitch-gold);
  color: #2a1800;
  border-color: var(--stitch-gold);
  transform: translateY(-2px);
}

/* REVIEWS CAROUSEL */
.reviews-carousel {
  overflow: hidden;
  position: relative;
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card-new {
  min-width: calc(33.333% - 1rem);
  background: var(--stitch-surface-container);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.review-card-new:hover { transform: translateY(-4px); }
.review-quote {
  font-size: 3.5rem;
  color: var(--stitch-gold);
  line-height: 0.6;
  font-family: Georgia, serif;
  opacity: 0.7;
}
.review-text-new {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--stitch-gold), #b89151);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #2a1800;
  flex-shrink: 0;
}
.review-name { color: #fff; font-weight: 700; font-size: 0.95rem; }
.review-meta { font-size: 0.78rem; color: #888; margin-top: 2px; }
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.carousel-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--stitch-gold);
  color: #2a1800;
  border-color: var(--stitch-gold);
}
.carousel-dots { display: flex; gap: 0.5rem; align-items: center; }
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.carousel-dot.active {
  background: var(--stitch-gold);
  width: 24px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .review-card-new { min-width: calc(50% - 0.75rem); }
}
@media (max-width: 600px) {
  .review-card-new { min-width: 85%; }
}

/* WHY WAYPOINT */
.why-waypoint { background: var(--bg-secondary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--stitch-gold);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

/* NEWSLETTER */
.newsletter-section { padding: 4rem 0; }
.newsletter-card {
  background: linear-gradient(135deg, #1a1a0d 0%, #2a2414 50%, #1a1200 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-eyebrow {
  display: inline-block;
  color: var(--stitch-gold);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.newsletter-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.newsletter-content p {
  color: #aaa;
  font-size: 0.95rem;
  max-width: 450px;
  margin: 0 auto 2rem;
}
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form input:focus { border-color: var(--stitch-gold); }
.newsletter-disclaimer {
  font-size: 0.78rem;
  color: #666;
  position: relative;
  z-index: 1;
}
@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-card { padding: 2rem 1.5rem; }
}

/* SOCIAL LINKS */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: #aaa;
  transition: all 0.2s ease;
}
.social-link:hover {
  background: var(--stitch-gold);
  color: #2a1800;
  border-color: var(--stitch-gold);
  transform: translateY(-2px);
}

/* SCROLL TO TOP */
.scroll-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.scroll-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.scroll-to-top:hover {
  background: var(--stitch-gold);
  color: #2a1800;
  border-color: var(--stitch-gold);
}

/* FLOATING WA PULSE */
.floating-wa {
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 10px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 10px rgba(37,211,102,0.3), 0 0 0 12px rgba(37,211,102,0); }
}

/* LEAFLET MAP CUSTOMIZATION */
.leaflet-popup-content-wrapper {
  background: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid rgba(201,168,76,0.3) !important;
  border-radius: 8px !important;
}
.leaflet-popup-tip { background: #1a1a1a !important; }
.map-popup-title {
  font-weight: 700;
  color: var(--stitch-gold);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.map-popup-desc { font-size: 0.8rem; color: #bbb; }
.gold-marker {
  background: var(--stitch-gold);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201,168,76,0.5);
  animation: marker-pulse 2s infinite;
}
@keyframes marker-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* CARD WISHLIST ANIMATION */
.wishlist-btn {
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}
.wishlist-btn:hover { transform: scale(1.2); }
.wishlist-btn.saved { color: #e74c3c; }

/* HERO WRAPPER MOBILE */
@media (max-width: 768px) {
  .hero-wrapper { min-height: 70vh; padding: 4rem 1rem 2rem; }
  .hero-headline { font-size: 2.2rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ==========================================================================
   NEW ENHANCEMENTS: Cookie Banner, Page Progress, Currency, Trust Badges
   ========================================================================== */

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 460px;
  background: rgba(18, 18, 22, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.cookie-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn-accept {
  background: var(--stitch-gold, #c9a84c);
  color: #1a1200;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-btn-accept:hover {
  background: #deb853;
  transform: translateY(-1px);
}
.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* TOP PROGRESS BAR (PAGE TRANSITIONS) */
#top-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #c9a84c, #ffd700, #c9a84c);
  z-index: 100000;
  pointer-events: none;
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.8);
}
#top-progress-bar.loading {
  opacity: 1;
}

/* CURRENCY SELECTOR */
.currency-selector {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dark, #fff);
  border: 1px solid var(--border-light, rgba(255, 255, 255, 0.2));
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.currency-selector:hover, .currency-selector:focus {
  border-color: var(--stitch-gold, #c9a84c);
  background: rgba(201, 168, 76, 0.15);
}

/* TRIPADVISOR / GOOGLE REVIEWS BADGE */
.trust-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
}
.trust-stars {
  color: #ffb703;
  letter-spacing: 1px;
}

/* ============================================================
   GRID-2 (Special Offers, 2-column layout)
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 700px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   SPECIAL OFFER BADGES & PRICE ROW
   ============================================================ */
.offer-badge-off {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.offer-badge-limited {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #f59e0b;
  color: #1a1208;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  z-index: 2;
  letter-spacing: 0.5px;
}
.offer-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: auto;
}
.offer-old-price {
  font-size: 0.9rem;
  color: #ef4444;
  text-decoration: line-through;
  font-weight: 600;
}
.offer-new-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--stitch-gold);
}

/* ============================================================
   SOCIAL LINK ICON BUTTONS (Footer)
   ============================================================ */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #aaa;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link:hover {
  background: var(--stitch-gold);
  color: #1a1208;
  border-color: var(--stitch-gold);
}

/* ============================================================
   GOOGLE TRANSLATE — Complete Banner Suppression & Robust Layout
   ============================================================ */
/* Hide ALL Google Translate UI chrome */
#google_translate_element,
#gt-hidden-div,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.skiptranslate,
.skiptranslate > iframe,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.VIpgJd-ZVi9od-aZ2wEe,
.VIpgJd-y0DuTb-hxWXEd,
.goog-te-gadget,
.goog-te-menu-frame,
.goog-tooltip,
.goog-tooltip-skin,
.goog-te-spinner-pos,
#goog-gt-tt,
div.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Ensure body stays at top without any GT offset */
body {
  top: 0 !important;
  position: static !important;
  margin-top: 0 !important;
}
html {
  top: 0 !important;
  margin-top: 0 !important;
}

/* Prevent Google Translate font tags from breaking typography and flex layout */
font {
  background-color: transparent !important;
  box-shadow: none !important;
  vertical-align: inherit !important;
  font-family: inherit !important;
}

/* Keep header on top over GT elements & ensure single row flex layout */
.header-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  z-index: 10000 !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  flex-shrink: 0;
}

/* Hide standalone redundant Arabic link when the language switcher dropdown is present */
.lang-switcher ~ a[href*="-ar.html"] {
  display: none !important;
}

@media (max-width: 1050px) {
  .main-nav {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
  }
}

/* ============================================================
   LANGUAGE SWITCHER DROPDOWN
   ============================================================ */
.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
  font-family: var(--font-sans);
}
.lang-switcher-btn:hover {
  border-color: var(--stitch-gold);
  background: rgba(201,168,76,0.08);
}
.lang-switcher-btn svg { flex-shrink: 0; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 185px;
  z-index: 100000;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
  user-select: none;
}
.lang-option:hover { background: var(--bg-secondary); color: var(--stitch-gold); }
.lang-option.active  { color: var(--stitch-gold); font-weight: 700; background: rgba(201,168,76,0.08); }
.lang-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--stitch-gold);
  background: rgba(201, 168, 76, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* ============================================================
   WHATSAPP CTA BUTTON (Special Offers cards)
   ============================================================ */
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none !important;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 3px 10px rgba(37,211,102,0.3);
  flex-shrink: 0;
}
.whatsapp-cta:hover {
  background: #20BA5A;
  transform: translateY(-1px);
  color: #fff !important;
}
