:root {
  --navy:       #0b1f3a;
  --navy-mid:   #112d52;
  --blue:       #1a5cb0;
  --blue-light: #2e80d8;
  --gold:       #c9a84c;
  --gold-light: #e8c96a;
  --white:      #f5f7fa;
  --text-dim:   rgba(245,247,250,0.6);
  --text-muted: rgba(245,247,250,0.35);
  --border:     rgba(201,168,76,0.18);
  --card-bg:    rgba(255,255,255,0.04);
  --row-alt:    rgba(255,255,255,0.03);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  padding: 0 0 40px;
  position: relative;
  overflow-x: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(26,92,176,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(201,168,76,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

header {
  position: relative;
  z-index: 10;
  background: rgba(11,31,58,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 32px;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo-block { display: flex; align-items: center; gap: 14px; }
.logo-img { height: 44px; width: auto; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
}

.header-right { text-align: right; }

.statut {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ouvert     { background: rgba(46,180,90,0.15); color: #4fd87a; border: 0.5px solid rgba(46,180,90,0.3); }
.ferme-badge{ background: rgba(220,60,60,0.15);  color: #f07070; border: 0.5px solid rgba(220,60,60,0.3); }

.date-now { font-size: 11px; color: var(--text-dim); margin-top: 2px; }

.gold-line {
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

main {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.bienvenue {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.rates-section {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.rates-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

.rates-note { font-size: 11px; color: var(--text-muted); }

.rates-table-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.rates-table thead th {
  text-align: left;
  color: var(--gold);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 10px 10px 10px;
  border-bottom: 0.5px solid var(--border);
}

.rates-table thead th.center { text-align: center; }

.rates-table tbody tr {
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  transition: background 0.15s;
}

.rates-table tbody tr:last-child { border-bottom: none; }
.rates-table tbody tr:hover { background: rgba(255,255,255,0.04); }
.rates-table tbody tr:nth-child(even) { background: var(--row-alt); }
.rates-table tbody tr:nth-child(even):hover { background: rgba(255,255,255,0.06); }

.rates-table td {
  padding: 10px;
  color: var(--text-dim);
  vertical-align: middle;
}

.rates-table td.center { text-align: center; }

.devise-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag { font-size: 20px; line-height: 1; }

.devise-name {
  font-weight: 500;
  color: var(--white);
  font-size: 13.5px;
}

.val-achat { color: #4fd87a; font-weight: 500; }
.val-vente { color: #f0a050; font-weight: 500; }
.val-zero  { color: var(--text-muted); }

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.carte {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
  backdrop-filter: blur(8px);
}

.carte-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.carte-titre {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.carte-icon { font-size: 16px; opacity: 0.6; }

.horaire-ligne {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-dim);
}

.horaire-ligne.highlight {
  background: rgba(26,92,176,0.2);
  border: 0.5px solid rgba(46,128,216,0.3);
}

.horaire-val { color: var(--white); font-weight: 500; }

.horaire-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.support-ligne {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.support-ligne:last-child { border-bottom: none; }
.support-ligne:hover { opacity: 0.75; }

.support-badge {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.whatsapp { background: rgba(37,211,102,0.15); color: #25d366; border: 0.5px solid rgba(37,211,102,0.25); }
.email    { background: rgba(26,92,176,0.25);  color: var(--blue-light); border: 0.5px solid rgba(46,128,216,0.3); }
.phone    { background: rgba(201,168,76,0.15); color: var(--gold-light); border: 0.5px solid rgba(201,168,76,0.25); }

.support-name   { font-size: 13px; color: var(--white); font-weight: 500; }
.support-detail { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.support-arrow  { margin-left: auto; color: var(--text-muted); font-size: 14px; }

footer {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 20px 24px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  border-top: 0.5px solid var(--border);
}

@media (max-width: 760px) {
  .rates-table-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-two { grid-template-columns: 1fr; }
  header { padding: 0 16px; }
  main{padding:26px 18px 40px;}
  section{margin-bottom:24px;}
  .rates-section { padding: 16px; }
}
.carte-map { margin-top: 16px; }

.map-info {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 20px;
  align-items: center;
}

.address-line {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.address-detail {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}

.map-link {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-light);
  text-decoration: none;
  border: 0.5px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  transition: opacity 0.2s;
}

.map-link:hover { opacity: 0.75; }

.map-embed iframe { display: block; }

@media (max-width: 760px) {
  .map-info { grid-template-columns: 1fr; }
}
.carte-chart { margin-bottom: 20px; }

.chart-tabs {
  display: flex;
  gap: 6px;
}

.chart-tab {
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.chart-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.chart-tab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.chart-legend {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
  font-size: 11px;
}

.legend-achat { color: #4fd87a; }
.legend-vente { color: #f0a050; }
.carte-converter { margin-bottom: 20px; }

.converter-body { display: flex; flex-direction: column; gap: 16px; }

.converter-row {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1.2fr;
  gap: 12px;
}

.converter-field { display: flex; flex-direction: column; gap: 6px; }

.conv-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.conv-input,
.conv-select {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.conv-input:focus,
.conv-select:focus { border-color: var(--gold); }

.conv-input::placeholder { color: var(--text-muted); }

.conv-select option {
  background: var(--navy-mid);
  color: var(--white);
}

.conv-result {
  background: linear-gradient(135deg, rgba(26,92,176,0.2), rgba(17,45,82,0.3));
  border: 0.5px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.conv-result-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.conv-result-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.conv-result-value span {
  font-size: 20px;
  color: var(--gold-light);
  margin-left: 6px;
}

.conv-result-detail {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

.conv-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 760px) {
  .converter-row { grid-template-columns: 1fr; }
  .conv-result-value { font-size: 34px; }
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35), 0 2px 8px rgba(0,0,0,0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s;
  max-width: 200px;
  overflow: hidden;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.whatsapp-float-label {
  white-space: nowrap;
  transition: all 0.25s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5), 0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 13px;
    border-radius: 50%;
    max-width: 52px;
  }
  .whatsapp-float-label { display: none; }
}
.disclaimer {
  margin-top: 20px;
  border-top: 0.5px solid var(--border);
  padding-top: 16px;
}

.disclaimer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(201,168,76,0.06);
  border: 0.5px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 14px 18px;
}

.disclaimer-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }

.disclaimer p {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

.disclaimer p strong { color: var(--gold-light); font-weight: 500; }
.carte-docs { margin-bottom: 20px; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.doc-block {
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.doc-block-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.doc-block-icon { font-size: 16px; }

.doc-block-desc {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.doc-list li {
  font-size: 12.5px;
  color: var(--text-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.doc-list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--gold);
  font-size: 16px;
  line-height: 1.2;
}

@media (max-width: 760px) {
  .docs-grid { grid-template-columns: 1fr; }
}

.lang-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lang-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,168,76,0.3);
  background: rgba(11,31,58,0.92);
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.2s;
  backdrop-filter: blur(8px);
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.lang-btn.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

@media (max-width: 760px) {
  .lang-float { bottom: 90px; right: 20px; }
}
.print-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.print-info {
  font-size: 12px;
  color: var(--text-muted);
}

.print-btn {
  background: rgba(201,168,76,0.1);
  border: 0.5px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  white-space: nowrap;
}

.print-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
}

@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  body { background: #fff !important; color: #000 !important; margin: 0; padding: 0; }

  /* Hide everything that shouldn't print */
  .bg-pattern,
  .whatsapp-float,
  .lang-float,
  .print-btn,
  .carte-chart,
  .carte-converter,
  .carte-docs,
  .carte-map,
  .bienvenue,
  .print-info,
  .chart-tabs,
  .support-arrow,
  footer { display: none !important; }

  /* Header */
  header {
    background: #fff !important;
    border-bottom: 2px solid #0b1f3a !important;
    padding: 0 16px !important;
    position: relative !important;
  }

  .logo-main { color: #0b1f3a !important; font-size: 22px !important; }
  .logo-sub  { color: #c9a84c !important; }
  .gold-line { display: none !important; }

  .statut {
    background: transparent !important;
    border: 1px solid #333 !important;
    color: #333 !important;
  }

  /* Main layout */
  main { padding: 16px !important; max-width: 100% !important; }

  /* Print bar — show date only, hide button */
  .print-bar {
    justify-content: flex-end !important;
    margin-bottom: 12px !important;
  }

  .print-info {
    display: block !important;
    color: #666 !important;
    font-size: 11px !important;
  }

  /* Rates section */
  .rates-section {
    background: #fff !important;
    border: 1px solid #ddd !important;
    margin-bottom: 12px !important;
    padding: 12px !important;
  }

  .section-label { color: #0b1f3a !important; }
  .rates-note    { color: #666 !important; }

  .rates-table-wrap {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .rates-table th {
    color: #0b1f3a !important;
    border-bottom: 1px solid #0b1f3a !important;
    font-size: 11px !important;
  }

  .rates-table td      { color: #000 !important; font-size: 12px !important; }
  .rates-table tbody tr:hover { background: transparent !important; }
  .devise-name         { color: #000 !important; }
  .val-achat           { color: #1a7a3a !important; }
  .val-vente           { color: #b35000 !important; }
  .val-zero            { color: #999 !important; }

  /* Grid — stack vertically for print */
  .grid-two {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
  }

  .carte {
    background: #fff !important;
    border: 1px solid #ddd !important;
    break-inside: avoid !important;
    padding: 12px 14px !important;
  }

  .carte-titre       { color: #c9a84c !important; }
  .horaire-val       { color: #000 !important; }
  .horaire-ligne     { color: #333 !important; border-bottom-color: #eee !important; }
  .horaire-ligne.highlight { background: #f0f4ff !important; }
  .horaire-note      { color: #666 !important; }

  .support-badge     { border: 1px solid #ddd !important; }
  .support-name      { color: #000 !important; }
  .support-detail    { color: #666 !important; }

  /* Disclaimer */
  .disclaimer {
    border-top: 1px solid #ddd !important;
    margin-top: 12px !important;
  }

  .disclaimer-inner  { background: #fffdf0 !important; border: 1px solid #e0cc88 !important; }
  .disclaimer p      { color: #333 !important; font-size: 10px !important; }
  .disclaimer p strong { color: #0b1f3a !important; }
}
.news-section {
  margin-bottom: 20px;
}

.news-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.news-tab {
  background: transparent;
  border: 0.5px solid var(--border);
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}

.news-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.news-tab.active {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold-light);
}

.news-panel { display: none; }
.news-panel.active { display: block; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.news-card {
  background: var(--card-bg);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.news-card:hover { border-color: rgba(201,168,76,0.4); }

.news-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
  width: fit-content;
}

.tag-reglementaire {
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
  border: 0.5px solid rgba(201,168,76,0.25);
}

.tag-marche {
  background: rgba(46,128,216,0.12);
  color: #7ab8f5;
  border: 0.5px solid rgba(46,128,216,0.25);
}

.news-card-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
}

.news-card-desc {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.news-card-date {
  font-size: 11px;
  color: var(--text-muted);
}

.news-card-source {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-loading {
  font-size: 13px;
  color: var(--text-muted);
  padding: 20px 0;
  text-align: center;
  grid-column: 1 / -1;
}

.news-error {
  font-size: 12px;
  color: #f07070;
  padding: 12px 0;
  grid-column: 1 / -1;
}

@media (max-width: 760px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-tabs { gap: 6px; }
  .news-tab  { font-size: 11px; padding: 7px 14px; }
}

@media print {
  .news-section { display: none !important; }
}

.logo-change {
  color: var(--white);
  font-weight: 700;
}
/* Completely remove the print and download actions panel on all devices */
.table-actions {
  display: none !important;
}
/* ─────────────────────────────────────────────────────
   MOBILE SWIPE CAROUSEL (Max-width: 480px)
   ───────────────────────────────────────────────────── */
@media screen and (max-width: 480px) {
  
  /* 1. Force the grid containers into a horizontal, scrollable row */
  .docs-grid, 
  .news-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 4px 4px 15px 4px !important; /* Bottom padding gives room for natural layout motion */
    
    /* Hide native scrollbars for a clean look */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  /* Hide scrollbars for Chrome, Safari and Opera */
  .docs-grid::-webkit-scrollbar,
  .news-grid::-webkit-scrollbar {
    display: none !important;
  }

  /* 2. Force each single card to take up exactly 100% of the container width */
  .doc-block, 
  .news-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important; /* Locks card into position when user swipes */
    box-sizing: border-box !important;
  }
}
/* ─────────────────────────────────────────────────────
   CAROUSEL INDICATORS & SWIPE TUNING (Max-width: 480px)
   ───────────────────────────────────────────────────── */
.carousel-dots {
  display: none; /* Hidden on Desktop/Laptop viewports */
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 24px;
}

@media screen and (max-width: 480px) {
  .carousel-dots {
    display: flex; /* Displayed only on Mobile */
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #c9a84c; /* Accent gold matching your system palette */
    transform: scale(1.2);
  }
}
/* ─────────────────────────────────────────────────────
   CAROUSEL INDICATORS DISPLAY & STYLE
   ───────────────────────────────────────────────────── */
.carousel-dots {
  display: none; /* Keep hidden on desktop and laptop views */
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 8px;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .carousel-dots {
    display: flex; /* Make visible only on mobile screens */
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
  }

  .dot.active {
    background: #c9a84c; /* Matches your site's gold accent palette */
    transform: scale(1.2);
  }
}