/* =====================================================
   A'LEA — Master Design System & Stylesheet
   Brand: A'LEA | Tagline: "Where the hidden self speaks"
   Palette: Blackened Aubergine, Deep Wine, Earth, Amber, Antique Gold, Sunlight, Warm Cream
   Full Responsive Optimization for Mobile, Tablet & Desktop
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,400&family=Cormorant+Garamond:ital,wght@1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --primary-dark: #201117;
  --secondary-dark: #3C1D23;
  --supporting-wine: #5B2D2D;
  --earth-tone: #7F4533;
  --amber: #A66331;
  --gold: #CD8C4A;
  --sunlight: #E9BA76;
  --cream: #F8E7BD;

  --display: 'Fraunces', Georgia, serif;
  --poetic: 'Cormorant Garamond', Georgia, serif;
  --ui: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-slow: cubic-bezier(.25, 1, .5, 1);

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: 120px;
  --space-2xl: 180px;

  --max-w: 1440px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--primary-dark);
}

body {
  background: var(--primary-dark);
  color: var(--cream);
  font-family: var(--ui);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Bespoke A'LEA Scrollbar System ---------- */
html, body, * {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--primary-dark);
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: var(--primary-dark);
  border-left: 1px solid rgba(248, 231, 189, 0.05);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold) 0%, var(--amber) 100%);
  border-radius: 4px;
  border: 1px solid var(--primary-dark);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--sunlight) 0%, var(--gold) 100%);
}

::-webkit-scrollbar-thumb:active {
  background: var(--sunlight);
}

::-webkit-scrollbar-corner {
  background: var(--primary-dark);
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ---------- Grain Texture Overlay ---------- */
#grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: overlay;
}

/* ---------- Typography & Utility Styles ---------- */
.scene-num {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(248, 231, 189, 0.6);
  display: block;
}

.poetic {
  font-family: var(--poetic);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}

.cta-link {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(248, 231, 189, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  cursor: pointer;
  min-height: 38px;
  transition: border-color .4s var(--ease), color .4s var(--ease), letter-spacing .4s var(--ease);
}

.cta-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  letter-spacing: 0.24em;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 16px 36px;
  min-height: 52px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background .4s var(--ease), color .4s var(--ease), transform .3s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 10px 30px rgba(205, 140, 74, 0.2);
}

.purchase-button:hover {
  background: var(--sunlight);
  border-color: var(--sunlight);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(233, 186, 118, 0.35);
}

.purchase-button:active {
  transform: translateY(0);
}

.btn-secondary-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cream);
  padding: 16px 32px;
  min-height: 52px;
  font-family: var(--ui);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(248, 231, 189, 0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: all .3s var(--ease);
}

.btn-secondary-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(205, 140, 74, 0.08);
}

/* ---------- Layout Helpers ---------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5vw;
}

.section-pad {
  padding: 130px 0;
}

@media (max-width: 900px) {
  .section-pad {
    padding: 90px 0;
  }
}

@media (max-width: 580px) {
  .section-pad {
    padding: 68px 0;
  }
  .wrap {
    padding: 0 6vw;
  }
}

/* ---------- Reveal on Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }
.reveal-delay-4 { transition-delay: .48s; }

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw;
  transition: transform .6s var(--ease), background .6s var(--ease), padding .4s var(--ease), backdrop-filter .4s;
  background: linear-gradient(to bottom, rgba(32, 17, 23, 0.8), transparent);
}

nav.nav-hidden {
  transform: translateY(-100%);
}

nav.nav-solid {
  background: rgba(32, 17, 23, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 16px 5vw;
  border-bottom: 1px solid rgba(248, 231, 189, 0.08);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.75;
  transition: opacity .3s, color .3s;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-word {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  font-weight: 300;
  color: var(--cream);
  text-shadow: 0 0 20px rgba(233, 186, 118, 0.2);
  transition: color .3s, transform .3s;
}

.nav-word:hover {
  color: var(--sunlight);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.voice-toggle {
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity .3s, color .3s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  min-height: 38px;
}

.voice-toggle:hover {
  opacity: 1;
  color: var(--gold);
}

.voice-dot {
  color: var(--gold);
  font-size: 10px;
}

.bag-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity .3s, color .3s, transform .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  min-height: 38px;
}

.bag-btn:hover {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-1px);
}

.bag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 500;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav {
    padding: 18px 5vw;
  }
}

@media (max-width: 540px) {
  nav {
    padding: 14px 4vw;
  }
  .nav-word {
    font-size: 15px;
    letter-spacing: 0.28em;
    padding-left: 0.28em;
  }
  .nav-right {
    gap: 8px;
  }
  .voice-toggle {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .bag-btn {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}

/* ---------- Mobile Navigation Drawer ---------- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32, 17, 23, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s var(--ease);
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.mobile-nav-links a {
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.15em;
  color: var(--cream);
  padding: 8px 16px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .3s, transform .3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold);
  transform: translateX(4px);
}

/* =====================================================
   PAGE HERO / INNER HERO COMPONENT
===================================================== */
.inner-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  background: linear-gradient(180deg, rgba(32, 17, 23, 0.4) 0%, var(--primary-dark) 100%);
  overflow: hidden;
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.1) saturate(0.9);
  z-index: 1;
}

.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(233, 186, 118, 0.25) 0%, transparent 60%),
    linear-gradient(to top, var(--primary-dark) 0%, rgba(32, 17, 23, 0.6) 50%, rgba(32, 17, 23, 0.85) 100%);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
}

.inner-hero h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 72px);
  line-height: 1.12;
  color: var(--cream);
  margin: 12px 0 16px;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
}

.inner-hero .hero-lead {
  font-family: var(--poetic);
  font-style: italic;
  font-size: clamp(16px, 2vw, 24px);
  color: rgba(248, 231, 189, 0.85);
  max-width: 600px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 38vh;
    padding: 110px 0 40px;
  }
}

/* =====================================================
   INTERACTIVE SHOPPING BAG DRAWER
===================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.cart-drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 460px;
  background: #25141B;
  border-left: 1px solid rgba(248, 231, 189, 0.15);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
}

.cart-drawer-overlay.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(248, 231, 189, 0.1);
}

.cart-drawer-header h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity .3s, transform .3s;
}

.cart-close-btn:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-drawer-items::-webkit-scrollbar,
.modal-box::-webkit-scrollbar {
  width: 5px;
}

.cart-drawer-items::-webkit-scrollbar-track,
.modal-box::-webkit-scrollbar-track {
  background: rgba(32, 17, 23, 0.4);
}

.cart-drawer-items::-webkit-scrollbar-thumb,
.modal-box::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.cart-item {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 231, 189, 0.08);
  align-items: center;
}

.cart-item-img {
  width: 75px;
  height: 95px;
  object-fit: cover;
  border-radius: 2px;
  background: var(--secondary-dark);
}

.cart-item-info h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 12px;
  color: rgba(248, 231, 189, 0.6);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.cart-item-price {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(248, 231, 189, 0.4);
  font-size: 18px;
  cursor: pointer;
  padding: 8px;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s;
}

.cart-item-remove:hover {
  color: #E57373;
}

.cart-empty-message {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-message p {
  font-family: var(--poetic);
  font-style: italic;
  font-size: 19px;
  color: rgba(248, 231, 189, 0.65);
  margin-bottom: 20px;
}

.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(248, 231, 189, 0.1);
  background: rgba(32, 17, 23, 0.85);
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.cart-total-price {
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
}

.cart-shipping-note {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(248, 231, 189, 0.5);
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .cart-drawer {
    max-width: 100vw;
  }
  .cart-drawer-header, .cart-drawer-items, .cart-drawer-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cart-item {
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
  }
  .cart-item-img {
    width: 60px;
    height: 80px;
  }
}

/* =====================================================
   MODAL DIALOGS
===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--secondary-dark);
  border: 1px solid rgba(248, 231, 189, 0.18);
  border-radius: 3px;
  max-width: 680px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 32px 28px;
  position: relative;
  transform: translateY(20px);
  transition: transform .4s var(--ease);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

.modal-overlay.is-open .modal-box {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
}

.modal-close-btn:hover {
  opacity: 1;
}

/* Toast Notifications */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--secondary-dark);
  border: 1px solid var(--gold);
  padding: 14px 22px;
  border-radius: 3px;
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 0.08em;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(100px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  max-width: calc(100vw - 48px);
}

.toast-notice.is-active {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 540px) {
  .toast-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: 12px;
  }
}

/* =====================================================
   FORM RESPONSIVENESS
===================================================== */
input, select, textarea {
  font-family: var(--ui);
  color: var(--cream);
}

@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important; /* Prevents mobile Safari auto-zoom */
    min-height: 48px;
  }
}

/* =====================================================
   TOUCH SCROLLING UTILITIES
===================================================== */
.touch-scroll-row {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 12px;
  padding-bottom: 8px;
}

.touch-scroll-row::-webkit-scrollbar {
  display: none;
}

/* =====================================================
   FOOTER (09 CREDITS)
===================================================== */
#credits {
  background: var(--primary-dark);
  padding-top: 120px;
  border-top: 1px solid rgba(248, 231, 189, 0.08);
}

.credits-end {
  text-align: center;
  padding-bottom: 80px;
}

.credits-end .wordmark-sm {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.4em;
  padding-left: 0.4em;
  color: var(--cream);
}

.credits-end p {
  font-family: var(--poetic);
  font-style: italic;
  color: rgba(248, 231, 189, 0.6);
  margin-top: 14px;
  font-size: 18px;
}

.credits-links {
  border-top: 1px solid rgba(248, 231, 189, 0.12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 50px 0 60px;
}

@media (max-width: 768px) {
  #credits {
    padding-top: 80px;
  }
  .credits-links {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
    padding: 40px 0 50px;
  }
}

.credits-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 400;
}

.credits-col a {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(248, 231, 189, 0.6);
  margin-bottom: 10px;
  min-height: 28px;
  display: flex;
  align-items: center;
  transition: color .3s, transform .3s;
}

.credits-col a:hover {
  color: var(--cream);
  transform: translateX(3px);
}

.bottom-line {
  display: flex;
  justify-content: space-between;
  padding: 24px 0 50px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(248, 231, 189, 0.35);
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(248, 231, 189, 0.06);
}

@media (max-width: 540px) {
  .bottom-line {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
