@font-face {
  font-family: 'Poppins';
  src: url('../../plugins/Poppins/poppins-v5-latin-regular.ttf') format('truetype');
  font-weight: 400;
}

:root {
  --primary: #f48e00;
  --secondary: #f2f2f2;
  --tertiary: #333333;
  --success: #28A745;
  --primary-hover: #c68b08;
  --font-family: 'Poppins', sans-serif;
}

* {
  font-family: var(--font-family);
}

h1, h2, h3, h4, h5 {
  font-weight: 900 !important;
}

h1 {
  font-size: clamp(2.25rem, 1.7308rem + 2.3077vw, 3.75rem);
  line-height: clamp(2.5rem, 2.0673rem + 1.9231vw, 3.75rem);
}

h2 {
  font-size: clamp(2.25rem, 1.9904rem + 1.1538vw, 3rem);
  line-height: clamp(2.5rem, 2.3269rem + 0.7692vw, 3rem);
}

h3 {
  font-size: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
  line-height: clamp(2.25rem, 2.25rem + 0vw, 2.25rem);
}

h4 {
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  line-height: clamp(1.875rem, 1.875rem + 0vw, 1.875rem);
}

h5 {
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  line-height: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
}

.background-yellow {
  background-color: var(--primary);
}

.text-yellow {
  color: var(--primary);
}

.border-yellow {
  border-color: var(--primary) !important;
}

/* BUTTON AREA */
button {
  padding: 0.375rem 0.75rem;
  border-radius: 5px;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1rem;
}

.color-white {
}

.color-black {
  color: var(--primary) !important;
}

.btn-green {
  background: var(--success);
  border-radius: 25px;
  padding: 8px 18px;
  font-weight: 600;
  transition: 0.3s ease;
  color: #ffffff;
  border: none;
}

.btn-green:hover {
  background: #218838;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-yellow {
  background-color: var(--primary);
  color: var(--tertiary);
  border: 1px solid var(--primary);
}

.btn-yellow:hover {
  background-color: var(--primary-hover);
  color: var(--secondary);
  border: 1px solid var(--primary-hover);
}

.order-now-btn {
  display: inline-block;
  background-color: #ffb233;
  color: #000;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  align-self: center;
  transition: 0.3s ease;
}

.order-now-btn:hover {
  background-color: #e69a1f;
  color: #000;
}

/* =========================
   NAVBAR
========================= */

.landing-page-menu {
  background-color: var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.landing-page-menu .container {
  min-height: 86px;
  position: relative;
}

.landing-page-menu .navbar-brand img {
  display: block;
  height: 80px;
  width: auto;
}

.landing-page-menu .nav-link {
  margin-left: auto;
  color: var(--secondary) !important;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 500;
}

.landing-page-menu .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 6px 10px;
}

.landing-page-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.landing-page-menu .nav-link:hover::after {
  width: 100%;
}

.landing-page-menu .signup {
  display: block;
  padding: 0.5rem 0.8rem;
  color: var(--tertiary);
  text-decoration: none;
  background: var(--secondary);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.landing-page-menu .signup:hover {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
}

.landing-page-menu .signup:active {
  transform: scale(0.95);
}

.landing-page-menu .menu-bars {
  border: none;
  background: transparent;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  color: var(--secondary);
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
}

.landing-page-menu .staff-nav-actions {
  position: relative;
  z-index: 1005;
}

.landing-page-menu .menu-bars:hover {
  color: var(--tertiary);
  transform: scale(1.1);
}

.landing-page-menu .dropdown-menu {
  min-width: 220px;
}

.landing-page-menu .staff-profile-menu {
  position: relative;
  z-index: 1002;
}

.landing-page-menu .staff-profile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  list-style: none;
}

.landing-page-menu .staff-profile-trigger::-webkit-details-marker {
  display: none;
}

.landing-page-menu .staff-profile-trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
  border-radius: 999px;
}

.landing-page-menu .staff-profile-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: #ffffff;
  z-index: 1003;
  display: none;
}

.landing-page-menu .staff-profile-item,
.landing-page-menu .staff-profile-link {
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.95rem;
}

.landing-page-menu .staff-profile-link {
  color: inherit;
  text-decoration: none;
}

.landing-page-menu .staff-profile-link:hover {
  background: rgba(15, 23, 42, 0.04);
}

.landing-page-menu .staff-profile-menu[open] .staff-profile-panel {
  display: block;
}

.landing-page-menu .dropdown-item {
  font-size: 0.95rem;
}

@media (min-width: 992px) {
  .landing-page-menu .navbar-collapse {
    justify-content: flex-end;
    padding-right: 84px;
  }

  .landing-page-menu .navbar-nav {
    align-items: center;
  }

  .landing-page-menu .staff-profile-menu {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1006;
    pointer-events: auto;
  }

  .landing-page-menu .staff-profile-panel {
    z-index: 1007;
  }
}

.landing-page-wrapper {
  min-height: calc(100vh - 86px);
}

.landing-page-wrapper .landing-form {
  border: 2px solid var(--primary);
  border-radius: 8px;
  box-shadow: 3px 3px 4px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
  .container {
    max-width: 100%;
  }
}

/* MOBILE NAVBAR FIX */
@media (max-width: 767.98px) {
  .landing-page-menu .container {
    min-height: 76px;
  }

  .landing-page-menu .navbar-brand img {
    height: 56px;
  }

  .landing-page-menu .navbar-collapse {
    background: var(--primary);
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    width: 100%;
    flex-basis: 100%;
  }

  .landing-page-menu .navbar-nav {
    align-items: flex-end;
    gap: 4px;
  }

  .landing-page-menu .nav-link {
    display: block;
    width: 100%;
    text-align: right;
    padding: 10px 12px;
    border-radius: 8px;
    margin-left: 0;
  }

  .landing-page-menu .nav-link:hover {
    padding: 10px 12px;
  }

  .landing-page-menu .nav-link::after {
    display: none;
  }

  .landing-page-wrapper {
    min-height: calc(100vh - 76px);
  }
}

/* =========================
   RESPONSIVE TABLES
========================= */

@media (max-width: 1348px) {
  .loader-container {
    top: 70px;
    left: 0;
  }

  table {
    height: auto;
  }

  table thead {
    display: none;
  }

  table,
  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 15px;
  }

  table tbody tr td {
    display: flex;
    justify-content: space-between;
    text-align: right;
    padding-left: 50%;
    position: relative;
    border: 1px solid #dee2e6 !important;
  }

  table td:before {
    content: attr(data-label);
    width: 50%;
    padding-left: 15px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
  }
}

/* Page hero title */
.hero-title {
  font-weight: 700;
  text-align: center;
  color: #000000;
  line-height: 1.2;
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.4rem;
  }
}

/* Intro section wrapper */
.intro-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  width: 100%;
  margin-bottom: 2rem;
}

/* Hero banner image wrapper to keep it nice on mobile */
.hero-section {
  padding: 50px 20px 30px;
}

.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-banner-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto 25px;
  border: 4px solid #ffc107;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.hero-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.hero-description {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* Paragraph under hero */
.intro-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #222;
  margin: 0;
}

@media (max-width: 576px) {
  .intro-text {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Divider */
.section-divider {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 2rem 0 1rem;
}

@media (max-width: 576px) {
  .section-divider {
    margin: 1.5rem 0 1rem;
  }
}

/* BEST SELLER heading */
.section-headline {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 576px) {
  .section-headline {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* Card styling for each bestseller */
.best-card {
  border: 1px solid #ffc107;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  text-decoration: none;
  color: #000;
  transition: box-shadow 0.15s ease;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.best-card:hover {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
}

/* Product image circle */
.bestcard-img-wrapper {
  width: 200px;
  height: 200px;
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  border: 5px solid #ffc107;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bestcard-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product text */
.bestcard-info h5 {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.25rem;
  color: #000;
}

.bestcard-info p {
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  color: #444;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .best-card {
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }

  .bestcard-img-wrapper {
    width: 160px;
    height: 160px;
    border-width: 4px;
  }

  .bestcard-info h5 {
    font-size: 0.95rem;
  }

  .bestcard-info p {
    font-size: 0.8rem;
  }
}

/* =========================
   MENU PAGE
========================= */

.menu-card {
  border: 1px solid #ffc107;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: relative;
}

.product-img-wrapper {
  width: 220px;
  height: 220px;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
  display: block;
  border: 5px solid #ffc107;
}

.product-unavailable-badge {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 0.4rem 0.6rem;
  border-radius: 0.4rem;
  text-align: center;
  white-space: nowrap;
}

.product-info h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  text-align: center;
}

.product-price {
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
  color: #444;
  line-height: 1.3;
}

.product-desc {
  display: none;
  margin-top: 0.25rem;
}

.product-cta .btn-green,
.product-cta .btn.btn-green {
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0.4rem;
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

.product-cta .btn-secondary[disabled],
.product-cta button[disabled] {
  font-size: 0.8rem;
  border-radius: 0.4rem;
  padding: 0.5rem 0.75rem;
  cursor: not-allowed;
  opacity: 0.7;
}

.availability-chip {
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 0.4rem;
  padding: 0.5rem 0.75rem;
  line-height: 1.2;
  display: inline-block;
  white-space: nowrap;
}

.menu-section-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.menu-divider {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 2rem 0 1rem;
}

.page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.page-title-rule {
  width: 100%;
  max-width: 400px;
  height: 1px;
  background-color: #ccc;
  margin: 0.75rem auto 0;
}

.menu-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.category-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.filter-label {
  font-size: 0.8rem;
  color: #666;
  margin-right: 0.25rem;
}

.category-filter.btn {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}

.category-filter.btn.active {
  background-color: #111;
  border-color: #111;
  color: #fff;
}

.view-toggle-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.4rem;
}

.view-toggle-label {
  font-size: 0.8rem;
  color: #666;
}

.view-toggle.btn {
  font-size: 0.75rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
}

.view-toggle.btn.active {
  background-color: #f2b233;
  border-color: #f2b233;
  color: #000;
}

/* ================= AUTH PAGES (BASE) ================= */

.auth-section {
  min-height: calc(100vh - 90px);
  padding: 40px 0;
  display: flex;
  align-items: center;
}

.auth-section .row {
  border-radius: 24px;
  overflow: hidden;
}

.auth-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.auth-visual-panel {
  background: linear-gradient(135deg, #fff7e8, #fff1cc);
  border: 1px solid #f3d27a;
  border-radius: 24px 0 0 24px;
  padding: 48px;
}

.auth-form-panel {
  background: #fffdf7;
  border: 1px solid #f3d27a;
  border-left: none;
  border-radius: 0 24px 24px 0;
  padding: 48px;
  display: flex;
  align-items: center;
}

.auth-brand-logo {
  max-width: 260px;
  height: auto;
  display: block;
  margin-bottom: 24px;
}

.auth-brand-title {
  font-size: 2rem;
  font-weight: 700;
  color: #8a4b08;
  margin-bottom: 10px;
}

.auth-brand-subtitle {
  font-size: 1rem;
  color: #6c6c6c;
  max-width: 360px;
  line-height: 1.7;
}

.auth-form-wrap {
  width: 100%;
  margin: 0 auto;
}

.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 8px;
}

.auth-subtitle {
  color: #6c6c6c;
  margin-bottom: 28px;
}

.auth-input {
  height: 54px;
  border-radius: 14px;
  border: 1px solid #ddd;
  box-shadow: none;
}

.auth-input:focus {
  border-color: #dca612;
  box-shadow: 0 0 0 0.15rem rgba(220, 166, 18, 0.15);
}

.auth-btn {
  height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  width: 100%;
  border: none;
  transition: 0.2s ease;
}

.auth-btn:hover {
  background: #de8c00;
}

.password-toggle-text {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0.95rem;
  color: #666;
  user-select: none;
}

.auth-links {
  font-size: 0.95rem;
}

.auth-links a {
  text-decoration: none;
}

/* ================= LOGIN / FORGOT PASSWORD ================= */

.auth-login .auth-visual-panel,
.auth-login .auth-form-panel {
  min-height: 620px;
}

.auth-login .auth-form-wrap {
  max-width: 420px;
}

/* ================= SIGNUP ================= */

.auth-signup .auth-visual-panel,
.auth-signup .auth-form-panel {
  min-height: 680px;
}

.auth-signup .auth-form-wrap {
  max-width: 460px;
}

/* ================= MOBILE ================= */

@media (max-width: 991.98px) {
  .auth-section {
    padding: 24px 0;
  }

  .auth-visual-panel {
    display: none !important;
  }

  .auth-form-panel {
    border-left: 1px solid #f3d27a;
    border-radius: 24px;
    min-height: auto !important;
    padding: 32px 22px;
  }

  .auth-title {
    font-size: 1.7rem;
  }
}

/* View modes */
.menu-view.cards-view .product-col {
}

.menu-view.details-view .product-col {
  flex: 0 0 100%;
  max-width: 100%;
}

.menu-view.details-view .menu-card {
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  column-gap: 1.25rem;
}

.menu-view.details-view .product-img-wrapper {
  width: 120px;
  height: 120px;
}

.menu-view.details-view .product-info {
  flex: 1;
}

.menu-view.details-view .product-info h5 {
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.menu-view.details-view .product-price {
  text-align: left;
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.3rem;
}

.menu-view.details-view .product-desc {
  display: -webkit-box;
  text-align: left;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-view.details-view .product-cta {
  margin-left: auto;
  text-align: right;
}

.menu-view.compact-view .product-col {
  flex: 0 0 100%;
  max-width: 100%;
}

.menu-view.compact-view .menu-card {
  flex-direction: row;
  align-items: center;
  padding: 0.75rem 1rem;
  box-shadow: none;
  border-radius: 0;
  border-left: 4px solid #ffc107;
  border-right: 0;
  border-top: 0;
  border-bottom: 1px solid #eee;
  row-gap: 0;
}

.menu-view.compact-view .product-img-wrapper {
  display: none;
}

.menu-view.compact-view .product-info {
  flex: 1;
}

.menu-view.compact-view .product-info h5 {
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.menu-view.compact-view .product-price {
  text-align: left;
  font-size: 0.8rem;
  color: #666;
}

.menu-view.compact-view .product-cta {
  margin-left: 1rem;
}

.menu-view.compact-view .product-cta .btn-green,
.menu-view.compact-view .product-cta .btn.btn-green {
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.6rem;
  }

  .menu-section-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .menu-divider {
    margin: 1.5rem 0 1rem;
  }

  .menu-card {
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-img-wrapper {
    width: 160px;
    height: 160px;
  }

  .product-info h5 {
    font-size: 0.95rem;
  }

  .product-price {
    font-size: 0.8rem;
  }

  .product-unavailable-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.35rem;
  }

  .availability-chip {
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
  }

  .product-cta .btn-green,
  .product-cta .btn.btn-green,
  .product-cta button[disabled],
  .product-cta .btn-secondary[disabled] {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .menu-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .category-filter-wrap {
    justify-content: center;
  }

  .view-toggle-wrap {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .view-toggle.btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.7rem;
  }

  .menu-view.details-view .menu-card {
    flex-direction: row;
    align-items: flex-start;
    padding: 1rem;
    column-gap: 1rem;
    max-width: 100%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.04);
  }

  .menu-view.details-view .product-img-wrapper {
    width: 70px;
    height: 70px;
  }

  .menu-view.details-view .product-img {
    border-width: 3px;
  }

  .menu-view.details-view .product-info h5 {
    font-size: 0.95rem;
  }

  .menu-view.details-view .product-price {
    font-size: 0.8rem;
  }

  .menu-view.details-view .product-desc {
    display: -webkit-box;
    text-align: left;
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .product-img-wrapper {
    width: 220px;
    height: 220px;
  }
}

@media (min-width: 1200px) {
  .product-img-wrapper {
    width: 240px;
    height: 240px;
  }
}

/* =========================
   STORE HOURS PAGE
========================= */

.hours-wrap {
  background: #0b0b0b08;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.hours-title {
  letter-spacing: 0.5px;
}

.hours-table.table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 10px;
}

.hours-table thead th {
  background: #111827;
  color: #fff;
  border: 0 !important;
}

.hours-table tbody tr {
  transition: background 0.2s ease, transform 0.05s ease;
}

.hours-table tbody tr:hover {
  background: #f8f9fa;
}

.hours-table td,
.hours-table th {
  border-color: #e9ecef !important;
}

.hours-table .badge {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hours-table tr.is-today {
  outline: 2px solid #ffd166;
  outline-offset: -2px;
  background: #fff9e6;
}

@media (max-width: 576px) {
  .table-responsive {
    overflow: visible;
  }

  .hours-table thead {
    display: none;
  }

  .hours-table,
  .hours-table tbody,
  .hours-table tr,
  .hours-table td {
    display: block;
    width: 100%;
  }

  .hours-table tbody tr {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  }

  .hours-table tbody tr.is-today {
    background: #fff9e6;
    border-color: #ffd166;
  }

  .hours-table tbody tr:hover {
    background: #fff;
  }

  .hours-table td {
    border: 0 !important;
    padding: 6px 0 !important;
  }

  .hours-table td:first-child {
    font-weight: 700;
    font-size: 1.05rem;
    padding-bottom: 6px !important;
  }

  .hours-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: #6c757d;
  }

  .hours-table td.text-center {
    text-align: left !important;
  }
}

/* =========================
   STORE ADDRESS PAGE
========================= */

.map-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   HOW TO ORDER PAGE
========================= */

.how-order-step-circle {
  height: 120px;
  width: 120px;
}

/*============
  flash notif
===========*/

.flash-toast-wrap {
  position: fixed;
  top: 88px;
  right: 20px;
  z-index: 9999;
  width: min(380px, calc(100vw - 32px));
}

.flash-toast {
  border: 0;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.flash-toast.alert-success {
  background: rgba(46, 159, 107, 0.95);
  color: #fff;
}

.flash-toast.alert-danger {
  background: rgba(220, 53, 69, 0.95);
  color: #fff;
}

.flash-toast.alert-warning {
  background: rgba(255, 193, 7, 0.95);
  color: #2f2a26;
}

.flash-toast.alert-info {
  background: rgba(13, 202, 240, 0.95);
  color: #fff;
}

.flash-toast .btn-close {
  position: absolute;
  top: 12px;
  right: 12px;
  filter: invert(1);
}

.flash-toast.alert-warning .btn-close {
  filter: none;
}

@media (max-width: 576px) {
  .flash-toast-wrap {
    top: 76px;
    right: 12px;
    left: 12px;
    width: auto;
  }
}
