@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --sand: #f6efe8;
  --cream: #fff6eb;
  --teal: #0f4c5c;
  --deep: #0b2f36;
  --coral: #f47c5b;
  --olive: #7a9d54;
  --sun: #f7c863;
  --ink: #1b1f23;
  --mist: #e5ecec;
  --card: rgba(255, 255, 255, 0.8);
  --stroke: rgba(15, 76, 92, 0.15);
  --shadow: 0 24px 60px rgba(15, 76, 92, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f8f3ee 0%, #e7f2f3 55%, #f6efe8 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.25;
  z-index: -1;
}

body::before {
  background: radial-gradient(circle, rgba(244, 124, 91, 0.6) 0%, rgba(244, 124, 91, 0) 65%);
  top: -120px;
  right: -120px;
}

body::after {
  background: radial-gradient(circle, rgba(122, 157, 84, 0.45) 0%, rgba(122, 157, 84, 0) 65%);
  bottom: -160px;
  left: -140px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
}

a {
  text-decoration: none;
}

.navbar {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(15, 76, 92, 0.1);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--deep);
}

.brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--coral);
}

.btn-primary {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: #0c3f4a;
  border-color: #0c3f4a;
}

.btn-outline-primary {
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline-primary:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.btn-accent {
  background: var(--coral);
  color: #ffffff;
  border: none;
}

.btn-accent:hover {
  background: #e46c4b;
  color: #ffffff;
}

.card-glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  border-radius: 20px;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 76, 92, 0.1);
  color: var(--teal);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.icon-chip {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(15, 76, 92, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.feature-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 76, 92, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 1.4rem;
  height: 100%;
}

.category-pill {
  border-radius: 999px;
  border: 1px solid rgba(15, 76, 92, 0.2);
  padding: 0.45rem 1rem;
  font-weight: 600;
  color: var(--teal);
  background: #ffffff;
}

.category-pill.active,
.category-pill:hover {
  background: var(--teal);
  color: #ffffff;
}

.category-scroll {
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.category-scroll .category-pill {
  white-space: nowrap;
}

.menu-card {
  border-radius: 18px;
  border: 1px solid rgba(15, 76, 92, 0.12);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  height: 100%;
}

.menu-card img.menu-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.menu-thumb {
  height: 150px;
  background: linear-gradient(130deg, rgba(244, 124, 91, 0.35), rgba(15, 76, 92, 0.25));
  display: grid;
  place-items: center;
  color: var(--deep);
  font-weight: 700;
  font-size: 1.2rem;
}

.price-tag {
  background: rgba(244, 124, 91, 0.15);
  color: #b14c34;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 700;
}

.product-image {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(15, 76, 92, 0.12);
}

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

.cart-item + .cart-item {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(15, 76, 92, 0.1);
}

.admin-shell {
  min-height: calc(100vh - 72px);
}

.admin-sidebar {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(15, 76, 92, 0.12);
  padding: 1.5rem;
  height: 100%;
}

.admin-sidebar .nav-link {
  color: var(--deep);
  font-weight: 600;
  border-radius: 12px;
  padding: 0.65rem 0.9rem;
}

.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link:hover {
  background: rgba(15, 76, 92, 0.12);
  color: var(--teal);
}

.metric-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(15, 76, 92, 0.12);
  padding: 1.2rem;
  height: 100%;
}

.table thead th {
  background: rgba(15, 76, 92, 0.08);
  border-bottom: 0;
}

.sticky-card {
  position: sticky;
  top: 1.5rem;
}

.footer {
  border-top: 1px solid rgba(15, 76, 92, 0.08);
  padding: 2rem 0 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 3rem;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 1.6rem;
  }

  .menu-thumb {
    height: 120px;
  }
}
