/* ===================================================
   Café O'Clock - Premium Clean Light-Mode Stylesheet
   =================================================== */

:root {
  /* Design Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Color Variables */
  --color-bg: #FDFBF7;
  --color-surface: #FFFFFF;
  --color-primary: #F4B41A;
  --color-primary-rgb: 244, 180, 26;
  --color-text: #2B1E16;
  --color-text-muted: #6E5C51;
  --color-border: #EFEBE4;
  --color-shadow: rgba(0, 0, 0, 0.05);
  --color-shadow-hover: rgba(43, 30, 22, 0.08);

  /* Layout Standards */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --transition-normal: 0.3s ease;
  --transition-spring: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-diffuse: 0 4px 15px var(--color-shadow);
  --shadow-diffuse-hover: 0 8px 22px var(--color-shadow-hover);
}

/* Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

/* Universal scrollbar removal across ALL devices & screens */
* {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

*::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  display: flex;
  justify-content: center;
}

/* Lock Mobile Layout frame */
.app-container {
  width: 100%;
  max-width: 480px; /* Highly optimized for max-width: 480px mobile screens */
  min-height: 100vh;
  background-color: var(--color-bg);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 30px rgba(43, 30, 22, 0.04);
}

/* Common Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text);
}

/* Homepage Header Area */
.hero-header {
  position: relative;
  height: 200px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(43, 30, 22, 0.3) 0%, rgba(253, 251, 247, 0.7) 100%);
  z-index: 2;
}

/* Centered Circular Logo */
.logo-container {
  position: relative;
  z-index: 3;
  width: 96px;
  height: 96px;
  background-color: var(--color-surface);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 8px 24px rgba(43, 30, 22, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Fixed Top-Right Vegetarian Icon */
.veg-indicator-fixed {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 32px;
  height: 32px;
  background-color: var(--color-surface);
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.veg-indicator-fixed img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Search Bar layout */
.search-wrapper {
  padding: 16px 20px 8px 20px;
}

.search-container {
  display: flex;
  align-items: center;
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 30px;
  padding: 2px 8px 2px 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
  transition: var(--transition-normal);
}

.search-container:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(244, 180, 26, 0.1);
}

.search-icon {
  width: 18px;
  height: 18px;
  color: var(--color-text-muted);
  margin-right: 8px;
  flex-shrink: 0;
}

#search-input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
}

#search-clear {
  border: none;
  background: none;
  font-size: 1.3rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 8px;
}

/* Views Box */
.view-container {
  flex: 1;
  padding: 8px 20px 100px 20px;
}

.view-state {
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.view-state.hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(10px);
}

/* Categories List View (STRICT SPEC: Single-line column rows, tight layout) */
.category-list-header {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  /* STRICT SPEC: Increased space around title of category and browse category */
  margin-top: 28px;
  margin-bottom: 24px;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.category-row {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  border: 1.5px solid var(--color-border);
  padding: 8px 12px;
  cursor: pointer;
  box-shadow: var(--shadow-diffuse);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.category-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-diffuse-hover);
  border-color: var(--color-primary);
}

.category-row:active {
  transform: translateX(1px);
}

.category-row-img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  background-color: var(--color-bg);
  flex-shrink: 0;
}

.category-row-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
}

/* STRICT SPEC: "Combos" Category Highlight row design */
.category-row.combos-highlight {
  border: 2px solid var(--color-primary);
  background: linear-gradient(135deg, var(--color-surface) 0%, #FFFDF0 100%);
  box-shadow: 0 4px 18px rgba(244, 180, 26, 0.15);
  position: relative;
  overflow: hidden;
}

.category-row.combos-highlight::after {
  content: 'Special';
  position: absolute;
  top: 4px;
  right: 8px;
  background-color: var(--color-primary);
  color: var(--color-text);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Detail Header & Spacing Alignment Fix */
.detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* STRICT SPEC: Increased space around title of category and browse category */
  margin-top: 16px;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--color-border);
  padding-bottom: 14px;
}

/* Back button SVG-only circular layout */
.btn-back {
  background-color: var(--color-surface);
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-diffuse);
  transition: var(--transition-normal);
  flex-shrink: 0;
  padding: 0;
}

.btn-back:hover {
  border-color: var(--color-text);
  transform: scale(1.05);
}

.btn-back svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.detail-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* STRICT SPEC: Minimal product cards, clean mobile UI design polish */
.product-card {
  background-color: var(--color-surface);
  border-radius: var(--border-radius-md);
  border: 1.5px solid var(--color-border);
  padding: 12px 16px; /* Optimized padding spacing */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-shadow: var(--shadow-diffuse);
  position: relative;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.product-card:hover {
  box-shadow: var(--shadow-diffuse-hover);
  border-color: rgba(244, 180, 26, 0.4);
}

.product-info-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-main-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.product-name-column {
  max-width: 70%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-name {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
}

/* Badges for Spicy and New indicators */
.new-badge {
  background-color: var(--color-primary);
  color: var(--color-text);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 1.5px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-body);
}

.spicy-badge {
  font-size: 0.85rem;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.product-action-column {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.product-price {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Slashed original pricing display */
.original-price-strike {
  text-decoration: line-through;
  color: #A49387;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2px;
}

/* Product Description Accordion togglers */
.btn-desc-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-desc-toggle.open {
  transform: rotate(180deg);
}

.chevron-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-desc-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

.product-desc-inner {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-serving {
  font-size: 0.72rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.product-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.35;
}

/* Customizations Checkbox Styles */
.card-customization-row {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
}

.custom-checkbox-container {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  user-select: none;
}

.custom-checkbox-container input {
  cursor: pointer;
  accent-color: var(--color-primary);
}

.custom-checkbox-container input:checked + span {
  color: var(--color-text);
  font-weight: 700;
}

/* Elegant Plus Add Button inside Cards */
.btn-plus-add {
  background-color: var(--color-primary);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B1E16;
  box-shadow: 0 3px 8px rgba(244, 180, 26, 0.2);
  transition: var(--transition-spring);
}

.btn-plus-add:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(244, 180, 26, 0.35);
}

.btn-plus-add:active {
  transform: scale(0.95);
}

.plus-icon {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

/* Card Quantity count badge */
.card-qty-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-text);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  z-index: 5;
}

/* STRICT SPEC: Floating Action Button (FAB) circle bottom right */
.cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px; /* Anchored at bottom right */
  left: auto;
  transform: scale(0);
  background-color: var(--color-text);
  color: #FFFFFF;
  border: none;
  width: 56px; /* Circle layout */
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(43, 30, 22, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-spring), opacity var(--transition-normal);
  z-index: 800;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
}

.cart-fab.visible {
  transform: scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cart-fab:hover {
  box-shadow: 0 10px 28px rgba(43, 30, 22, 0.3);
  transform: scale(1.05);
}

.cart-fab:active {
  transform: scale(0.95);
}

.cart-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Superscript badge for selection count */
.cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-primary);
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--color-surface);
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: var(--font-body);
}

/* FAB Bouncing/Popping Keyframe Animation */
@keyframes fab-pop-right {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.fab-animated {
  animation: fab-pop-right 0.35s var(--transition-spring);
}

/* Slide-up Cart Drawer Panel */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 30, 22, 0.3);
  backdrop-filter: blur(6px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

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

.drawer-panel {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background-color: var(--color-surface);
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  box-shadow: 0 -10px 40px rgba(43, 30, 22, 0.15);
  z-index: 910;
  transition: transform var(--transition-spring);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
}

.drawer-panel.open {
  transform: translateX(-50%) translateY(0);
}

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

.drawer-title {
  font-size: 1.15rem;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.2px;
}

.btn-close-drawer {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-body {
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-item-row {
  display: flex;
  flex-direction: column; /* Allows nested customization layout */
  align-items: stretch;
  gap: 6px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-item-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.drawer-item-details {
  flex: 1;
  padding-right: 12px;
}

.drawer-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.drawer-item-price {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.drawer-qty-controls {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  background-color: var(--color-bg);
  height: 30px;
  overflow: hidden;
  flex-shrink: 0;
}

.drawer-qty-btn {
  background: none;
  border: none;
  width: 30px;
  height: 100%;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-qty-btn:active {
  background-color: var(--color-border);
}

.drawer-qty-num {
  font-size: 0.82rem;
  font-weight: 700;
  width: 22px;
  text-align: center;
}

/* Customizations Checkbox under drawer row */
.drawer-item-customization {
  display: flex;
  align-items: center;
  padding-left: 2px;
}

.drawer-item-customization span {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.drawer-total-box {
  background-color: var(--color-bg);
  border-radius: var(--border-radius-md);
  padding: 16px;
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drawer-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.drawer-total-row.final {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-text);
  border-top: 1.5px dashed var(--color-border);
  padding-top: 10px;
  margin-top: 4px;
}

/* Cart Actions Layout */
.drawer-actions-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 4px;
}

.btn-checkout-primary {
  flex: 1;
  background-color: var(--color-text);
  color: #FFFFFF;
  border: none;
  height: 48px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px rgba(43, 30, 22, 0.15);
}

.btn-checkout-primary:hover {
  background-color: #443226;
}

.btn-clear-cart {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-md);
  background-color: #FFF2F0;
  color: #D32F2F;
  border: 1.5px solid #FCDCD6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.btn-clear-cart:hover {
  background-color: #FCDCD6;
}

.trash-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dotted Receipt layout styles */
.modal-receipt-container {
  background-color: #FAF8F4;
  border: 1.5px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: 16px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02);
  text-align: left;
}

.receipt-header {
  text-align: center;
  border-bottom: 1.5px dashed var(--color-border);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.receipt-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text);
}

.receipt-subtitle {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.receipt-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.receipt-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--color-text);
}

.receipt-item-qty-name {
  display: flex;
  flex-direction: column; /* Handle nested add-ons neatly */
  gap: 2px;
  font-weight: 600;
}

.receipt-item-title-line {
  display: flex;
  gap: 8px;
}

.receipt-item-addon-line {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  padding-left: 24px;
}

.receipt-item-price {
  font-weight: 700;
  color: var(--color-text);
}

.receipt-divider {
  border-top: 1.5px dashed var(--color-border);
  margin: 12px 0;
}

.receipt-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
}

/* Centered Popup modals overlays */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 30, 22, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
  padding: 20px;
}

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

.modal-card {
  background-color: var(--color-surface);
  width: 100%;
  max-width: 380px;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.9);
  transition: transform var(--transition-spring);
  border: 1.5px solid var(--color-border);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-text-muted);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 6px;
}

.modal-header h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.modal-header p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.modal-footer-btn {
  width: 100%;
  background-color: var(--color-text);
  color: #FFFFFF;
  border: none;
  height: 44px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.modal-footer-btn:hover {
  background-color: #443226;
}

/* Custom designed delete confirm modal popup overrides */
.confirm-card {
  max-width: 320px;
  text-align: center;
  padding: 20px;
}

.confirm-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  width: 100%;
}

.btn-confirm-cancel {
  flex: 1;
  background-color: var(--color-border);
  color: var(--color-text);
  border: none;
  height: 40px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-confirm-cancel:hover {
  background-color: #E2DBD0;
}

.btn-confirm-delete {
  flex: 1;
  background-color: #D32F2F;
  color: #FFFFFF;
  border: none;
  height: 40px;
  border-radius: var(--border-radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

.btn-confirm-delete:hover {
  background-color: #B71C1C;
}

/* Empty search results message */
.empty-search {
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
}

/* Footer Section */
.footer {
  text-align: center;
  padding: 24px 20px;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-surface);
}

.footer-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.footer-text a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-normal);
}

.footer-text a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
