:root {
  --burgundy: #5C1A1A;
  --deep-red: #8B2020;
  --gold: #C9A84C;
  --cream: #F5EFE0;
  --parchment: #EDE3C8;
  --dark: #1A0A0A;
  --text: #2C1A0E;
  --muted: #7A6A5A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92,26,26,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0e0404 0%, #1a0808 40%, #100303 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.0;
  margin: 1rem 0;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  position: relative;
  overflow: hidden;
  transition: color 0.35s;
  opacity: 0;
  animation: fadeUp 1s ease 0.95s forwards;
}

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 0;
}

.btn-primary:hover { color: var(--dark); }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }

.scroll-line {
  position: absolute; bottom: 2.5rem;
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0;
  animation: fadeUp 1s ease 1.4s forwards, scrollLine 2.5s ease 2.5s infinite;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: linear-gradient(to bottom, rgba(10,2,2,0.9) 0%, transparent 100%);
  backdrop-filter: blur(4px);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cart {
  position: relative; color: var(--cream); text-decoration: none;
  font-size: 1.25rem; margin-left: 1rem; transition: color .25s;
}
.nav-cart:hover { color: var(--gold); }
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--gold); color: var(--dark);
  font-size: 0.6rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
}

.nav-toggle:hover { color: var(--gold); }

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 2, 2, 0.95);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  flex-direction: column;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.nav-mobile.active {
  max-height: 200px;
}

.nav-mobile a {
  color: var(--muted);
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.05);
  transition: all 0.3s;
}

.nav-mobile a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
}

/* ── SECTION TITLES ── */
.section-title { text-align: center; margin-bottom: 4rem; }

.section-title .eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
}

.section-title h2 em { color: var(--gold); font-style: italic; }

/* ── CATALOGUE ── */
#catalogue {
  padding: 7rem 4rem;
  background: linear-gradient(180deg, var(--dark) 0%, #0d0404 100%);
}

.wine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wine-card {
  background: #ffffff;
  border: 1px solid rgba(92,26,26,0.12);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 0.7s ease both;
}

.wine-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.6);
  box-shadow: 0 20px 50px rgba(92,26,26,0.18), 0 0 20px rgba(201,168,76,0.1);
}

/* ── Galerie slider de la carte ── */
.wine-card-gallery {
  position: relative;
  width: 100%;
  height: 260px;
  background: #ffffff;
  overflow: hidden;
}

.wine-card-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px 8px 4px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
  transition: opacity 0.45s ease, filter 0.4s ease;
}

.wine-card-img.hidden { opacity: 0; pointer-events: none; }

.wine-card:hover .wine-card-gallery .wine-card-img:not(.hidden) {
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.18));
}

/* Flèches */
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1rem; line-height: 26px; text-align: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s;
  z-index: 10;
  user-select: none;
}
.gallery-arrow.prev { left: 8px; }
.gallery-arrow.next { right: 8px; }
.wine-card:hover .gallery-arrow { opacity: 1; }
.gallery-arrow:hover { background: rgba(201,168,76,0.25); }

/* Pastilles */
.gallery-dots {
  position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10;
}
.gallery-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,168,76,0.35);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.wine-card-img-placeholder {
  width: 100%; height: 260px;
  background: #f9f4ee;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--burgundy);
}

.wine-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--burgundy);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(201,168,76,0.3);
}

.wine-card-body { padding: 1.5rem; }

.wine-appellation {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.wine-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.wine-year {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.wine-desc {
  font-size: 0.78rem;
  color: #6a5a4a;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.wine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(92,26,26,0.12);
  padding-top: 1rem;
}

.wine-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.wine-price small {
  font-size: 0.75rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.btn-contact {
  background: none;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  padding: 0.5rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-contact:hover { background: var(--gold); color: var(--dark); }

.btn-add-cart {
  background: var(--burgundy);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background .25s, transform .15s;
  display: flex; align-items: center; gap: .35rem;
}
.btn-add-cart:hover:not(:disabled) { background: #7a2020; }
.btn-add-cart:disabled { opacity: .65; cursor: not-allowed; }

/* ── EMPTY STATE ── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }

.empty-state p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
}

/* ── CONTACT ── */
#contact {
  padding: 7rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, #0d0404 0%, var(--dark) 100%);
  position: relative;
}

#contact::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.contact-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--muted);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.contact-info {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0202;
}

footer p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── ADMIN PANEL ── */
.admin-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem;
}

.admin-overlay.active { display: flex; }

.admin-panel {
  background: linear-gradient(145deg, #1a0808, #120404);
  border: 1px solid rgba(201,168,76,0.25);
  width: 100%; max-width: 900px;
  margin: auto;
  padding: 2.5rem;
  position: relative;
  animation: fadeUp 0.4s ease;
}

.admin-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.5rem; cursor: pointer;
  transition: color 0.2s;
}

.admin-close:hover { color: var(--gold); }

.admin-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.admin-title span { color: var(--gold); font-style: italic; }

.admin-subtitle {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.admin-tabs {
  display: flex;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 2rem;
}

.admin-tab {
  background: none; border: none;
  color: var(--muted);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
}

.admin-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-full { grid-column: 1 / -1; }

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

.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
}

.form-group select option { background: #1a0808; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-actions {
  display: flex; gap: 1rem; justify-content: flex-end;
  margin-top: 1.5rem;
}

.btn-admin {
  padding: 0.75rem 2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all 0.25s;
}

.btn-admin-primary { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-admin-primary:hover { background: #d4b360; }
.btn-admin-secondary { background: none; color: var(--muted); border-color: rgba(201,168,76,0.2); }
.btn-admin-secondary:hover { color: var(--cream); border-color: var(--cream); }

/* ── TABLE ── */
.wine-table { width: 100%; border-collapse: collapse; }

.wine-table th {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.wine-table td {
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: middle;
}

.wine-table td strong { color: var(--cream); font-weight: 400; }
.wine-table tr:hover td { background: rgba(201,168,76,0.03); }

.tbl-actions { display: flex; gap: 0.5rem; }

.btn-tbl {
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--muted);
  padding: 0.3rem 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Josefin Sans', sans-serif;
  transition: all 0.2s;
}

.btn-tbl-edit:hover  { border-color: var(--gold); color: var(--gold); }
.btn-tbl-delete:hover { border-color: #e05050; color: #e05050; }

.badge-type {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badge-rouge    { background: rgba(139,32,32,0.4);   color: #e08080; border: 1px solid rgba(139,32,32,0.5); }
.badge-blanc    { background: rgba(201,168,76,0.15);  color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-rosé     { background: rgba(200,80,120,0.2);  color: #e096b0; border: 1px solid rgba(200,80,120,0.4); }
.badge-mousseux { background: rgba(120,180,220,0.15); color: #a0cce0; border: 1px solid rgba(120,180,220,0.3); }

/* ── NOTIFICATION ── */
.notif {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: var(--gold); color: var(--dark);
  padding: 0.9rem 1.8rem;
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateY(120%);
  transition: transform 0.35s ease;
  pointer-events: none;
}

.notif.show { transform: translateY(0); }

/* ── DETAIL MODAL ── */
.detail-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.detail-overlay.active { display: flex; }

.detail-modal {
  background: linear-gradient(145deg, #1e0a0a, #140606);
  border: 1px solid rgba(201,168,76,0.2);
  max-width: 560px; width: 100%;
  padding: 2.5rem;
  position: relative;
  animation: fadeUp 0.35s ease;
}

.detail-modal .close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--muted); font-size: 1.3rem; cursor: pointer;
}

.detail-modal .close:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    padding: 1.2rem 1.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 6rem 1.5rem;
  }

  .hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin: 0.8rem 0;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  .hero-sub {
    font-size: 0.7rem;
    margin-bottom: 2rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.65rem;
  }

  .scroll-line {
    display: none;
  }

  #catalogue, #contact, #franchise {
    padding: 3rem 1.5rem;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .wine-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .wine-card {
    border-radius: 8px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .admin-panel {
    padding: 1.5rem;
  }

  .contact-text {
    font-size: 1rem;
  }

  .contact-info {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 1rem 1rem;
  }

  nav a {
    font-size: 1rem;
  }

  .hero {
    padding: 4rem 1rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    margin: 0.5rem 0;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
  }

  .hero-sub {
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .btn-primary {
    padding: 0.7rem 1.5rem;
    font-size: 0.6rem;
  }

  #catalogue, #contact, #franchise {
    padding: 2rem 1rem;
  }

  .section-title {
    margin-bottom: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title .eyebrow {
    font-size: 0.65rem;
  }

  .wine-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wine-card-body {
    padding: 1rem;
  }

  .wine-card-body h3 {
    font-size: 1.1rem;
  }

  .wine-card-body p {
    font-size: 0.8rem;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }

  .contact-text {
    font-size: 0.95rem;
  }

  .contact-info {
    font-size: 0.85rem;
  }

  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
