/* style.css - Premium Stylesheet for Restaurant Amalia Digital Menu */

/* Import high-end Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* FontAwesome icons fallback */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --font-logo: 'Caveat', cursive;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  
  /* App brightness controlled via JS */
  --app-brightness: 1.0;
}

/* ================= THEME DEFINITIONS ================= */

/* DAY VIBE - Sandy Greek Beach (Warm Sand, Deep Marine Blue, Aegean Gold) */
body.theme-day {
  --bg-color: #f7f4ed;
  --bg-gradient: radial-gradient(circle at top, #fefdfb 0%, #f7f4ed 100%);
  --text-primary: #0f2747;
  --text-secondary: #51647d;
  --text-greek: #0f2747;
  --text-lang: #856113;
  --accent-blue: #1963ad;
  --accent-gold: #c39839;
  --accent-gold-light: rgba(195, 152, 57, 0.08);
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(195, 152, 57, 0.18);
  --shadow-color: rgba(15, 39, 71, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(195, 152, 57, 0.12);
  --input-bg: rgba(15, 39, 71, 0.04);
  --btn-quick-bg: rgba(255, 255, 255, 0.9);
  --btn-quick-border: rgba(195, 152, 57, 0.25);
  --modal-bg: rgba(255, 255, 255, 0.98);
}

/* SUNSET VIBE - Aegean Dusk (Deep Purple, Sunset Rose & Coral) */
body.theme-sunset {
  --bg-color: #2b142d;
  --bg-gradient: linear-gradient(180deg, #1d0b1f 0%, #2b142d 50%, #471d37 100%);
  --text-primary: #fff1e5;
  --text-secondary: #ccabbf;
  --text-greek: #fff1e5;
  --text-lang: #f4a261;
  --accent-blue: #ea8a8a;
  --accent-gold: #f4a261;
  --accent-gold-light: rgba(244, 162, 97, 0.12);
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(244, 162, 97, 0.22);
  --shadow-color: rgba(0, 0, 0, 0.3);
  --glass-bg: rgba(43, 20, 45, 0.92);
  --glass-border: rgba(244, 162, 97, 0.15);
  --input-bg: rgba(255, 255, 255, 0.06);
  --btn-quick-bg: rgba(255, 255, 255, 0.05);
  --btn-quick-border: rgba(244, 162, 97, 0.3);
  --modal-bg: rgba(30, 14, 32, 0.98);
}

/* NIGHT VIBE - Luxury Lounge (Deep Blue-Black, Pure Gold & Silver) */
body.theme-night {
  --bg-color: #070e17;
  --bg-gradient: radial-gradient(circle at top, #0f1c2b 0%, #070e17 100%);
  --text-primary: #f0f4f8;
  --text-secondary: #8ea1b6;
  --text-greek: #f0f4f8;
  --text-lang: #d1b470;
  --accent-blue: #5b92e5;
  --accent-gold: #d1b470;
  --accent-gold-light: rgba(209, 180, 112, 0.12);
  --card-bg: rgba(255, 255, 255, 0.02);
  --card-border: rgba(209, 180, 112, 0.18);
  --shadow-color: rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(7, 14, 23, 0.95);
  --glass-border: rgba(209, 180, 112, 0.12);
  --input-bg: rgba(255, 255, 255, 0.04);
  --btn-quick-bg: rgba(255, 255, 255, 0.03);
  --btn-quick-border: rgba(209, 180, 112, 0.25);
  --modal-bg: rgba(7, 14, 23, 0.98);
}

/* ================= BASE STYLES ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--text-primary);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 10px;
  opacity: 0.5;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-blue);
}

/* ================= APP WRAPPER (BRIGHTNESS CONTROLLED) ================= */
#appWrapper {
  filter: brightness(var(--app-brightness, 1));
  transition: filter 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 90px; /* Space for floating order bar */
}

/* ================= FLOATING SETTINGS & LANGUAGES (ALWAYS FULL BRIGHTNESS) ================= */
.quick-tools {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 12px;
  z-index: 1000;
}

.btn-icon-round {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--btn-quick-bg);
  border: 1px solid var(--btn-quick-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--shadow-color);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-icon-round:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.btn-icon-round:active {
  transform: translateY(0) scale(1);
}

.btn-icon-round .lang-badge-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ================= HEADER & HERO LOGO ================= */
.hero {
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

/* Cursive Amalia Logo Recreated */
.logo-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo-sub {
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  font-weight: 600;
  color: var(--accent-blue);
  text-transform: uppercase;
  margin-bottom: -15px;
  transition: color var(--transition);
}

.logo-main {
  font-family: var(--font-logo);
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  display: flex;
  align-items: baseline;
  position: relative;
  transition: color var(--transition);
  text-shadow: 0 2px 4px var(--shadow-color);
}

/* Dot of the 'i' custom steering wheel SVG */
.logo-wheel {
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 36px;
  right: 23px;
  fill: var(--accent-blue);
  transition: fill var(--transition), transform 8s linear;
  animation: logo-spin 60s infinite linear;
}

@keyframes logo-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-motto {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 10px;
  transition: color var(--transition);
}

/* Background Sea Wave/Leaf Decor SVG */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
  z-index: 1;
  transition: opacity var(--transition);
}

.theme-day .hero-shapes { opacity: 0.07; }
.theme-sunset .hero-shapes { opacity: 0.04; }
.theme-night .hero-shapes { opacity: 0.03; }

/* ================= INTRO INFO BOX (Welcome to Pyrgadikia) ================= */
.intro-card {
  max-width: 600px;
  margin: 0 auto 30px;
  padding: 24px;
  border-radius: var(--border-radius-md);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: 0 10px 30px var(--shadow-color);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.intro-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.intro-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ================= CATEGORY BAR (STICKY SCROLL NAVIGATION) ================= */
.category-nav-wrapper {
  position: sticky;
  top: 0;
  background: var(--bg-color);
  border-bottom: 1px solid var(--card-border);
  z-index: 900;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  transition: background var(--transition), border-color var(--transition);
}

.category-nav {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 16px;
  gap: 8px;
  -webkit-overflow-scrolling: touch;
}

.category-nav::-webkit-scrollbar {
  display: none; /* Hide scrollbar for category tabs */
}

.category-btn {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.category-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--accent-gold-light);
}

/* ================= MENU CONTENT SECTION ================= */
.menu-sections {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 16px;
}

.menu-section {
  scroll-margin-top: 85px; /* Offset for category nav header */
  margin-bottom: 50px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

.section-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.section-title-sub {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  text-transform: uppercase;
  opacity: 0.9;
}

.section-header::after {
  content: '';
  width: 50px;
  height: 2px;
  background: var(--accent-gold);
  margin-top: 12px;
  border-radius: 2px;
}

.section-footer-note {
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 16px;
  padding: 0 10px;
}

/* ================= ITEM CARDS (NO PRICES) ================= */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-item-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 0 6px 15px var(--shadow-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  position: relative;
}

.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--shadow-color);
  border-color: var(--accent-gold);
}

.item-info {
  flex: 1;
}

/* Dual Language titles stacked beautifully */
.item-title-primary {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-greek);
  line-height: 1.25;
  margin-bottom: 2px;
}

.item-title-secondary {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-lang);
  font-style: italic;
  line-height: 1.25;
  margin-bottom: 6px;
}

/* Dual Language descriptions */
.item-desc-primary {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.item-desc-secondary {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-secondary);
  font-style: italic;
  opacity: 0.85;
}

/* Cart Control Buttons (Add / Quantity Picker) */
.item-actions {
  flex-shrink: 0;
  min-width: 90px;
  display: flex;
  justify-content: flex-end;
}

.btn-add-cart {
  background: none;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 10px var(--accent-gold-light);
}

.quantity-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--accent-gold);
  border-radius: 20px;
  background: var(--card-bg);
  overflow: hidden;
  height: 34px;
  box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-qty {
  background: none;
  border: none;
  width: 32px;
  height: 100%;
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background var(--transition);
}

.btn-qty:hover {
  background: var(--accent-gold-light);
}

.qty-val {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  width: 24px;
  text-align: center;
  color: var(--text-primary);
}

/* ================= FLOATING CART BAR (STICKY BOTTOM) ================= */
.cart-floating-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: calc(100% - 32px);
  max-width: 500px;
  height: 58px;
  border-radius: 30px;
  background: var(--accent-blue);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(15, 39, 71, 0.25);
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 20px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cart-floating-bar.visible {
  transform: translateX(-50%) translateY(0);
}

.cart-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.cart-icon-wrapper {
  position: relative;
  font-size: 1.2rem;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent-gold);
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent-blue);
}

.cart-text-primary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.cart-text-secondary {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.8rem;
  opacity: 0.8;
  font-style: italic;
  margin-top: -2px;
}

.btn-view-cart {
  background: #ffffff;
  border: none;
  color: var(--accent-blue);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-view-cart:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ================= MODAL DRAWER OVERLAYS ================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 39, 71, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 85vh;
  background: var(--modal-bg);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.05);
}

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

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-wrapper {
  display: flex;
  flex-direction: column;
}

.modal-title-primary {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-greek);
}

.modal-title-secondary {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-lang);
  font-style: italic;
}

.btn-modal-close {
  background: var(--input-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-modal-close:hover {
  background: var(--accent-gold);
  color: #ffffff;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

/* --- SETTINGS DRAWER SPECIFIC --- */
.settings-group {
  margin-bottom: 24px;
}

.settings-label-primary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-greek);
}

.settings-label-secondary {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* Theme picker dots */
.theme-options {
  display: flex;
  gap: 16px;
}

.theme-option {
  flex: 1;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 16px;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.theme-option:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.theme-option.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.theme-color-preview {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
}

.theme-option-label {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Brightness Slider Styling */
.brightness-slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brightness-slider-container i {
  font-size: 1.2rem;
  color: var(--accent-gold);
}

.slider-range {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--input-bg);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.slider-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 2px solid var(--bg-color);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.slider-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* --- LANGUAGES MODAL SPECIFIC --- */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lang-option-btn {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.lang-option-btn:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
  transform: translateY(-2px);
}

.lang-option-btn.active {
  border-color: var(--accent-gold);
  background: var(--accent-gold-light);
  box-shadow: 0 4px 12px var(--shadow-color);
  outline: 1.5px solid var(--accent-gold);
}

.lang-flag {
  font-size: 1.4rem;
  line-height: 1;
}

.lang-names {
  display: flex;
  flex-direction: column;
}

.lang-name-native {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

.lang-name-en {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* --- CART DRAWER SPECIFIC --- */
.cart-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
  gap: 16px;
}

.cart-item-names {
  flex: 1;
}

.cart-item-primary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-greek);
}

.cart-item-secondary {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-lang);
  font-style: italic;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-actions .btn-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.cart-actions .btn-remove:hover {
  background: rgba(235, 87, 87, 0.1);
  color: #eb5757;
}

.cart-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.cart-empty-state i {
  font-size: 3rem;
  color: var(--text-secondary);
  opacity: 0.4;
  margin-bottom: 16px;
}

.cart-empty-state p {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--text-secondary);
}

.cart-footer {
  border-top: 1.5px dashed var(--card-border);
  padding-top: 20px;
  text-align: center;
}

.cart-helper-text-primary {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.cart-helper-text-secondary {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

.btn-clear-order {
  background: none;
  border: 1px solid var(--text-secondary);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-clear-order:hover {
  border-color: #eb5757;
  color: #eb5757;
  background: rgba(235, 87, 87, 0.05);
}

/* Responsive Grid Adjustments */
@media (max-width: 480px) {
  .logo-main {
    font-size: 4.2rem;
  }
  .logo-wheel {
    width: 22px;
    height: 22px;
    top: 28px;
    right: 17px;
  }
  .lang-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .theme-options {
    flex-direction: column;
    gap: 10px;
  }
}
