/* Bülbül Yuvası QR Menu - Premium CSS Style System */

:root {
  /* Light Theme Variables */
  --bg-primary: #fcfbf9;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f4f1eb;
  --text-primary: #2b231a;
  --text-secondary: #706354;
  --text-muted: #9e9180;
  --accent-gold: #c49a45;
  --accent-gold-hover: #b08432;
  --accent-gold-light: rgba(196, 154, 69, 0.08);
  --border-color: rgba(196, 154, 69, 0.12);
  --danger-color: #d9534f;
  --success-color: #2ec4b6;
  
  --shadow-sm: 0 4px 12px rgba(43, 35, 26, 0.04);
  --shadow-md: 0 8px 24px rgba(43, 35, 26, 0.06);
  --shadow-lg: 0 20px 40px rgba(43, 35, 26, 0.1);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html.dark-mode {
  /* Dark Theme Variables */
  --bg-primary: #110e0a;
  --bg-secondary: #1a1612;
  --bg-tertiary: #26201a;
  --text-primary: #f5f1eb;
  --text-secondary: #b5a898;
  --text-muted: #8c7e6e;
  --accent-gold: #e5b858;
  --accent-gold-hover: #f3cf78;
  --accent-gold-light: rgba(229, 184, 88, 0.1);
  --border-color: rgba(229, 184, 88, 0.15);
  --danger-color: #e26d6a;
  --success-color: #48dbcd;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5);
  
  --glass-bg: rgba(26, 22, 18, 0.85);
  --glass-border: rgba(26, 22, 18, 0.4);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  transition: background-color 0.3s ease, color 0.3s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Header & Hero Section */
.hero-banner {
  position: relative;
  height: 250px;
  background-image: url('https://images.unsplash.com/photo-1517433456452-f9633a875f6f?w=1200&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 24px 20px;
  color: #ffffff;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(18, 14, 10, 0.85) 100%);
  z-index: 1;
}

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

.logo-container {
  width: 56px;
  height: 56px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(196, 154, 69, 0.4);
  margin-bottom: 12px;
}

.logo-icon {
  font-size: 24px;
  color: #ffffff;
}

.shop-title {
  font-size: 28px;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.shop-subtitle {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 300;
  margin-bottom: 12px;
}

.shop-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.shop-meta i {
  color: var(--accent-gold);
  margin-right: 4px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.hero-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.hero-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.hero-btn i {
  font-size: 14px;
}

/* Category Grid Block Section */
.category-grid-section {
  padding: 24px 16px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.category-grid-title {
  margin-bottom: 16px;
}

.category-grid-title h2 {
  font-size: 22px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.category-grid-title h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.category-block-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .category-block-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .category-block-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .category-block-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-block-card {
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-block-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.category-block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.7) 100%);
  transition: background-color 0.25s ease;
}

.category-block-card:hover .category-block-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-block-content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  color: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-block-icon {
  font-size: 20px;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.category-block-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 2px;
  line-height: 1.2;
}

.category-block-count {
  font-size: 10px;
  opacity: 0.85;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Control Sticky Bar */
.control-sticky-bar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.search-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 10px 38px;
  background-color: var(--bg-tertiary);
  border: 1px solid transparent;
  border-radius: 30px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
}

.search-clear-btn {
  position: absolute;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
}

.quick-settings {
  display: flex;
  gap: 8px;
}

.setting-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 600;
}

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

.lang-btn {
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* Category Tabs Navigation */
.category-nav-bar {
  position: sticky;
  top: 65px;
  z-index: 98;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  padding: 10px 16px;
  gap: 8px;
}

.category-nav-bar::-webkit-scrollbar {
  display: none; /* Safari & Chrome */
}

.category-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.category-tab .tab-icon {
  font-size: 16px;
}

.category-tab.active {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(196, 154, 69, 0.2);
}

/* Menu Grid / List Container */
.menu-container {
  padding: 16px;
}

.category-section {
  scroll-margin-top: 135px;
  margin-bottom: 32px;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.category-header h2 {
  font-size: 20px;
  color: var(--text-primary);
}

.category-header .header-badge {
  background-color: var(--accent-gold-light);
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
}

/* Grid Layout (Default) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Responsive Grid columns for tablets/desktops */
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* List Layout Override */
.list-layout .product-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

/* Product Card */
.product-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  position: relative;
  height: 120px;
  overflow: hidden;
  background-color: var(--bg-tertiary);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.calorie-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 10px;
}

.product-card-info {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.product-desc {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  flex: 1;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent-gold);
}

.quick-add-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 11px;
}

.product-card:hover .quick-add-btn {
  background-color: var(--accent-gold);
  color: #ffffff;
}

/* List Layout Card Tweaks */
.list-layout .product-card {
  flex-direction: row;
  height: 96px;
}

.list-layout .product-card-image {
  width: 96px;
  height: 100%;
}

.list-layout .product-card-info {
  padding: 10px 12px;
  flex: 1;
}

.list-layout .product-desc {
  -webkit-line-clamp: 1;
}

/* Bottom Sheet Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 14, 10, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 0.25s forwards ease-out;
}

.bottom-sheet {
  width: 100%;
  max-width: 500px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(100%);
  animation: slideUp 0.3s cubic-bezier(0.1, 0.76, 0.55, 0.94) forwards;
  position: relative;
}

.sheet-drag-handle {
  width: 36px;
  height: 4px;
  background-color: var(--border-color);
  border-radius: 2px;
  margin: 12px auto 6px;
}

.close-sheet-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.close-sheet-btn:hover {
  background: rgba(0,0,0,0.7);
}

.sheet-image-container {
  height: 220px;
  position: relative;
  background-color: var(--bg-tertiary);
}

.sheet-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-calories-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 12px;
}

.sheet-details {
  padding: 20px;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.modal-product-title {
  font-size: 22px;
  color: var(--text-primary);
  flex: 1;
  margin-right: 16px;
}

.modal-product-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-gold);
}

.modal-product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.5;
}

.modal-allergens-section {
  margin-bottom: 24px;
}

.modal-allergens-section h4 {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

.allergens-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.allergen-tag {
  font-size: 11px;
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.modal-action-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.quantity-controller {
  display: flex;
  align-items: center;
  background-color: var(--bg-tertiary);
  border-radius: 30px;
  padding: 4px;
  border: 1px solid var(--border-color);
}

.quantity-controller button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: none;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
}

.quantity-controller button:hover {
  background-color: var(--bg-secondary);
}

.quantity-controller span {
  width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

.add-to-cart-btn {
  flex: 1;
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(196, 154, 69, 0.3);
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background-color: var(--accent-gold-hover);
  box-shadow: 0 6px 20px rgba(196, 154, 69, 0.4);
}

/* Floating Cart Trigger */
.cart-floating-btn {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background-color: var(--text-primary);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  max-width: 90%;
  width: max-content;
}

.cart-floating-btn:hover {
  transform: translateX(-50%) translateY(-2px);
  background-color: var(--accent-gold);
}

.cart-btn-content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff;
}

.cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-icon-wrap i {
  font-size: 18px;
}

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

.cart-floating-btn:hover .cart-badge {
  background-color: var(--text-primary);
  border-color: var(--accent-gold);
}

.cart-total {
  font-weight: 600;
  font-size: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 16px;
}

/* Cart Drawer Slider */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 14, 10, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1100;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  animation: fadeIn 0.25s forwards ease-out;
}

.cart-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--bg-secondary);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  animation: slideLeft 0.3s cubic-bezier(0.1, 0.76, 0.55, 0.94) forwards;
}

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

.drawer-header h3 {
  font-size: 18px;
  color: var(--text-primary);
}

.close-drawer-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}

.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  gap: 12px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  padding: 10px;
  border: 1px solid var(--border-color);
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
}

.cart-item-qty {
  font-size: 12px;
  color: var(--text-secondary);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--danger-color);
  font-size: 14px;
  cursor: pointer;
  padding: 2px;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.drawer-total-row span {
  font-size: 14px;
  color: var(--text-secondary);
}

.drawer-total-row strong {
  font-size: 18px;
  color: var(--accent-gold);
  font-weight: 700;
}

.checkout-btn {
  width: 100%;
  background-color: var(--accent-gold);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(196, 154, 69, 0.3);
  transition: var(--transition);
}

.checkout-btn:hover {
  background-color: var(--accent-gold-hover);
}

/* Modals Dialogs (Wifi / Waiter) */
.modal-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 14, 10, 0.6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  animation: fadeIn 0.25s forwards ease-out;
}

.dialog-card {
  width: 100%;
  max-width: 340px;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  transform: scale(0.9);
  animation: zoomIn 0.3s cubic-bezier(0.1, 0.76, 0.55, 0.94) forwards;
}

.dialog-icon {
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.dialog-card h3 {
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.dialog-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.dialog-input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  background-color: var(--bg-tertiary);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: inherit;
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.dialog-input:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
}

.dialog-actions {
  display: flex;
  gap: 10px;
}

.dialog-btn {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-cancel {
  background-color: var(--bg-tertiary);
  color: var(--text-secondary);
}

.btn-cancel:hover {
  background-color: var(--border-color);
}

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

.btn-confirm:hover {
  background-color: var(--accent-gold-hover);
}

.wifi-info-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
}

.wifi-info-row:last-of-type {
  border-bottom: none;
  margin-bottom: 16px;
}

.wifi-glow {
  animation: pulse 1.5s infinite alternate;
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1500;
  background-color: var(--text-primary);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  animation: slideDownFade 0.3s ease-out;
  border: 1px solid var(--border-color);
}

.toast-icon {
  color: var(--success-color);
  font-size: 16px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

@keyframes slideLeft {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideDownFade {
  0% { transform: translateX(-50%) translateY(-20px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}
