/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #333;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 4rem;
  background-color: #FFAE42;
  z-index: 1000;
  border-bottom: none;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  font-size: 2.8rem;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 0.8rem;
  text-shadow: 
    2px 2px 0px #000,
    -2px -2px 0px #000,
    2px -2px 0px #000,
    -2px 2px 0px #000;
}

.logo:hover {
  transform: scale(1.05);
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

nav a {
  font-size: 2rem;
  color: #000000;
  padding: 0.3rem 0.8rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: #000000;
  border-bottom: 2px solid #000000;
}

/* Admin Dropdown */
.admin-dropdown {
  position: relative;
  display: inline-block;
}

.admin-btn {
  font-size: 2rem;
  color: #000000 !important;
  background: transparent;
  padding: 0.3rem 0.8rem;
  border-radius: 0;
  font-weight: 500;
  transition: 0.3s ease;
  cursor: pointer;
  border-bottom: 2px solid transparent !important;
}

.admin-btn:hover,
.admin-btn.active {
  color: #000000 !important;
  background: transparent;
  border-bottom: 2px solid #000000 !important;
}

.admin-dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 1rem;
  z-index: 1000;
  top: 100%;
  margin-top: 0.5rem;
  overflow: hidden;
}

.admin-dropdown-content a {
  color: #333;
  padding: 1.2rem 2rem;
  text-decoration: none;
  display: block;
  font-size: 1.6rem;
  margin-left: 0 !important;
  border-bottom: 1px solid #f0f0f0;
  transition: 0.3s ease;
}

.admin-dropdown-content a:last-child {
  border-bottom: none;
}

.admin-dropdown-content a:hover {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-bottom: 1px solid #f0f0f0 !important;
}

.admin-dropdown:hover .admin-dropdown-content {
  display: block;
}

/* SECTION GENERAL */
section {
  min-height: 100vh;
  padding: 12rem 9% 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
  color: #3c7a48;
  position: relative;
}

section h2::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #6ba368;
}

/* HOME */
.home {
  background-color: #ffffff;
  min-height: calc(100vh - 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 2rem 6rem 2rem;
}

.welcome-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  background: transparent;
  border-radius: 40px;
  padding: 6rem 6rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-title {
  font-size: 10.0rem;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 
    -1.5px -1.5px 0px #000,
    1.5px -1.5px 0px #000,
    -1.5px 1.5px 0px #000,
    1.5px 1.5px 0px #000,
    -1.5px 0px 0px #000,
    1.5px 0px 0px #000,
    0px -1.5px 0px #000,
    0px 1.5px 0px #000;
}

.hero-description {
  font-size: 3.0rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 3rem;
  text-shadow: none;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  margin-top: 2rem;
  border-radius: 4rem;
  font-size: 1.7rem;
  color: #fff;
  background-color: #226644;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 8px rgba(34,102,68,0.10);
  transition: 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: scale(1.03);
  background-color: #3c7a48;
  box-shadow: 0 0 25px #6ba368;
}

.btn-explore {
  display: inline-block;
  padding: 1.4rem 4.5rem;
  background-color: #FFAE42;
  background-image: url("../images/Menu bg container.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  font-size: 2.6rem;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  border-radius: 45px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 
    -2px -2px 0px #000,
    2px -2px 0px #000,
    -2px 2px 0px #000,
    2px 2px 0px #000,
    -2px 0px 0px #000,
    2px 0px 0px #000,
    0px -2px 0px #000,
    0px 2px 0px #000;
}

.btn-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* HOW TO ORDER TUTORIAL SECTION */
.tutorial-container {
  width: 100%;
  max-width: 1200px;
  margin: -2rem auto 0 auto;
  padding: 0 2rem 6rem 2rem;
  text-align: center;
}

.tutorial-main-title {
  font-size: 4.5rem;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 
    -1.5px -1.5px 0px #000,
    1.5px -1.5px 0px #000,
    -1.5px 1.5px 0px #000,
    1.5px 1.5px 0px #000,
    -1.5px 0px 0px #000,
    1.5px 0px 0px #000,
    0px -1.5px 0px #000,
    0px 1.5px 0px #000;
}

.tutorial-step {
  margin-bottom: 2.5rem;
}

.tutorial-step-title {
  font-size: 3.5rem;
  font-family: 'Luckiest Guy', cursive;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: 
    -1.5px -1.5px 0px #000,
    1.5px -1.5px 0px #000,
    -1.5px 1.5px 0px #000,
    1.5px 1.5px 0px #000,
    -1.5px 0px 0px #000,
    1.5px 0px 0px #000,
    0px -1.5px 0px #000,
    0px 1.5px 0px #000;
}

.tutorial-step-description {
  font-size: 2rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Poppins:wght@400;600;700&family=Luckiest+Guy&display=swap');

/* MENU */
.menu {
  padding-top: 10rem;
  background: #ffffff;
  min-height: 100vh;
}

/* Menu Hero Section */
.menu-hero {
  background: transparent;
  padding: 2rem 0 3rem 2rem;
  margin-bottom: 3rem;
}

.menu-hero-title {
  font-size: 3.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
  margin-left: 0;
  color: #000000;
  font-weight: bold;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  text-shadow: none;
}

/* New Tab-based Navigation */
.menu-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.menu-nav-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: nowrap;
}

.menu-nav-top-row {
  flex-wrap: nowrap;
  justify-content: center;
}

.menu-nav-bottom-row {
  justify-content: center;
  flex-wrap: nowrap;
}

.menu-nav-container::-webkit-scrollbar {
  display: none;
}

.menu-search-wrapper {
  flex: 0 0 auto;
  flex-shrink: 0;
  position: relative;
}

.menu-logo-label {
  font-size: 2rem;
  font-weight: bold;
  color: #000000;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  white-space: nowrap;
  padding: 0 1rem;
  flex-shrink: 0;
}

/* Search icon button - visible on all devices */
.search-icon-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 2rem;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.search-icon-btn:hover {
  border-color: #FFAE42;
  background: #f9f9f9;
}

/* Search bar expanded styles */
.search-bar-expanded {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 0.5rem;
  animation: expandSearch 0.3s ease;
  min-width: 300px;
}

@keyframes expandSearch {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.menu-search-input-expanded {
  flex: 1;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  background: #f9f9f9;
  color: #000;
}

.menu-search-input-expanded:focus {
  outline: none;
  border-color: #FFAE42;
  background: #ffffff;
}

.menu-search-input-expanded::placeholder {
  color: #999;
}

.close-search-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.8rem;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.close-search-btn:hover {
  background: #ff4444;
  color: #ffffff;
  border-color: #ff4444;
}

/* Legacy support */
.menu-search-input {
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #000;
  width: 280px;
  transition: all 0.3s ease;
}

.menu-tabs {
  display: flex;
  gap: 0.8rem;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.menu-tabs-row-1 {
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}

.menu-tabs-row-2 {
  justify-content: center;
  flex-wrap: nowrap;
}

.menu-tab {
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  border: none;
  border-radius: 0.8rem;
  background: transparent;
  color: #79797b;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-tab:hover {
  color: #5a5a5c;
}

.menu-tab.active {
  background: #FFAE42;
  color: #ffffff;
  padding: 1.2rem 3rem;
}

/* Menu Content Wrapper */
.menu-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.menu-section {
  animation: fadeIn 0.3s ease;
}

.menu-section-title {
  text-align: center;
  font-size: 3rem;
  color: #000;
  margin-bottom: 3rem;
  font-weight: 700;
  padding: 1.5rem;
}

/* Menu Items Grid - Exact Design Match */
.menu-items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: flex-start;
}

.menu-item-card {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: all 0.3s ease;
  flex: 0 1 calc(33.333% - 1.4rem);
  min-width: 280px;
  display: flex !important;
  flex-direction: row !important;
  padding: 1.2rem;
  text-align: left;
  gap: 1.2rem;
  align-items: center;
}

.menu-item-card.hidden-by-search {
  display: none !important;
}

.menu-item-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.item-image-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0.5rem;
}

.item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 1.2rem;
  font-weight: 900;
  color: #ff0000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border: 2px solid #ff0000;
  padding: 0.2rem 0.5rem;
  letter-spacing: 0.15rem;
  pointer-events: none;
  opacity: 0.7;
}

.item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.item-info {
  flex: 1;
}

.item-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.item-desc {
  font-size: 1.2rem;
  color: #666666;
  line-height: 1.4;
  margin: 0.3rem 0 0.5rem 0;
}

.item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0.5rem 0;
}

.item-cart-btn {
  background: #4a7c4e;
  color: #ffffff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.item-cart-btn:hover {
  background: #3d6941;
  transform: scale(1.02);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .menu-item-card {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .menu .heading {
    font-size: 3.5rem;
  }

  .menu-hero {
    padding: 1.5rem 0 2rem 0;
    margin-bottom: 2rem;
  }

  .menu-hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
  }

  .menu-nav-container {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    padding: 0 0.5rem;
  }

  .menu-nav-row {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .menu-nav-top-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .menu-logo-label {
    font-size: 1.4rem;
    padding: 0 0.3rem;
  }

  .menu-nav-container::-webkit-scrollbar {
    display: none;
  }

  .menu-search-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
  }

  .search-icon-btn {
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
  }

  .menu-tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .menu-tabs-row-1,
  .menu-tabs-row-2 {
    flex-wrap: nowrap;
    justify-content: center;
  }

  .menu-tab {
    flex-shrink: 0;
    padding: 1rem 2rem;
    font-size: 1.5rem;
    white-space: nowrap;
    border: 2px solid transparent;
  }

  .menu-tab.active {
    padding: 1rem 2rem;
    border: 2px solid #FFAE42;
  }

  .menu-content-wrapper {
    padding: 0 1rem;
  }

  .menu-items-grid {
    gap: 1.5rem;
    flex-direction: column;
  }

  .menu-item-card {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 0;
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    padding: 1.5rem;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .menu-section-title {
    font-size: 2.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  .item-image-wrapper {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.8rem;
  }

  .item-info {
    flex: 1;
  }

  .item-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .item-desc {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .item-price {
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 0.3rem;
  }

  .item-cart-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .sample-stamp {
    font-size: 1.5rem;
    border: 3px solid #ff0000;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 480px) {
  .menu-nav-container {
    padding: 0 0.3rem;
    gap: 0.6rem;
  }

  .menu-nav-row {
    gap: 0.3rem;
  }

  .menu-nav-top-row {
    gap: 0.3rem;
  }

  .menu-logo-label {
    font-size: 1.1rem;
    padding: 0 0.2rem;
  }

  .search-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
  }

  .menu-tab {
    padding: 0.9rem 1.8rem;
    font-size: 1.4rem;
  }

  .menu-tab.active {
    padding: 0.9rem 1.8rem;
  }

  .menu-item-card {
    min-width: 100%;
    padding: 1.2rem;
    gap: 1.2rem;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
  }
  
  .item-image-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .item-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.6rem;
  }

  .item-info {
    flex: 1;
  }

  .item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
  }

  .item-desc {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.4rem;
  }

  .item-price {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0.3rem;
  }

  .item-cart-btn {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
  }

  .sample-stamp {
    font-size: 3rem;
    padding: 0.6rem 2rem;
    border: 4px solid #ff0000;
  }
}

/* Legacy support - keep old classes for backwards compatibility */
.menu-category {
  margin-bottom: 5rem;
}

.menu-category h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 600;
  text-shadow: 
    -2px -2px 0 #000,
    2px -2px 0 #000,
    -2px 2px 0 #000,
    2px 2px 0 #000,
    0 0 8px rgba(0,0,0,0.5);
}

.menu-box {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0;
  padding: 4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.item {
  background: #ffffff;
  border-radius: 0;
  padding: 0;
  border: none;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0 !important;
}

.item h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.item p {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 1rem;
  padding: 0 1.5rem;
  line-height: 1.5;
}

.item span {
  font-weight: bold;
  font-size: 2rem;
  color: #000000;
  display: block;
  margin-bottom: 1.5rem;
}

/* ABOUT PAGE - STARBUCKS INSPIRED */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #1e4620 0%, #2d5f32 50%, #4a7c59 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://wallpapercat.com/w/full/8/f/3/584702-3840x2160-desktop-4k-cafe-wallpaper.jpg') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  color: #ffffff;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.3rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.hero-text p {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0.5rem 0;
  color: #ffffff;
}

.hero-highlight {
  font-size: 3.5rem !important;
  font-weight: 700 !important;
}

/* Story Section */
.about-story {
  background: #ffffff;
  padding: 5rem 2rem 3rem;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
}

.story-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.story-intro p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
}

.section-heading {
  font-size: 3.2rem;
  font-weight: 600;
  color: #1e3932;
  text-align: center;
  margin: 2rem 0 2.5rem;
}

.story-image-section {
  margin: 2rem 0;
  text-align: center;
}

.story-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.story-text {
  max-width: 800px;
  margin: 0 auto;
}

.story-text p {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Values Section */
.about-values {
  background: #f7f7f7;
  padding: 5rem 2rem;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.value-item {
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  text-align: center;
  transition: 0.3s ease;
  overflow: hidden;
}

.value-item:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transform: translateY(-5px);
}

.value-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.value-item h3,
.value-item p {
  padding: 0 2.5rem;
}

.value-item h3 {
  padding-top: 2rem;
}

.value-item p {
  padding-bottom: 2.5rem;
}

.value-item h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e3932;
  margin-bottom: 1.5rem;
}

.value-item p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
}

/* Team Section */
.about-team {
  background: #ffffff;
  padding: 5rem 2rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.team-intro {
  font-size: 1.7rem;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 2rem auto 5rem;
}

.team-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.team-member-card {
  background: #f7f7f7;
  padding: 2rem;
  border-radius: 0;
  transition: 0.3s ease;
  text-align: center;
}

.team-member-card:hover {
  background: #e8f5e9;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.team-member-card img {
  width: 100%;
  max-width: 200px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 2rem;
  display: block;
}

.member-info h3 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1e3932;
  margin-bottom: 1rem;
}

.member-role {
  font-size: 1.6rem;
  color: #666;
  font-weight: 400;
}

/* OLD ABOUT STYLES */
.about {
  background-size: cover;
  padding: 8rem 9%;
  text-align: center;
}

.about h2 {
  font-size: 5.5rem;
  font-weight: 800;
  color: #000000;
}

.about p {
  font-size: 2.0rem;
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.8;
  color: #000000;
}

/* MISSION & VISION */
.mission-vision {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
  flex-wrap: wrap;
  max-width: 1100px;
}

.mission-vision .card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  flex: 1 1 45%;
  text-align: center;
  transition: 0.3s ease;
  font-size: 3rem;
}

.mission-vision .card:hover {
  transform: translateY(-5px);
  background: #f1f8f4;
}

.values {
  margin: 5rem auto;
  max-width: 1000px;
}

.values h3 {
  font-size: 2.8rem;
  color: #2e7d32;
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.values-grid .value-card {
  background: #e8f5e9;
  padding: 2rem;
  border-radius: 1.2rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #2e7d32;
  transition: 0.3s ease;
}

.values-grid .value-card:hover {
  background: #c8e6c9;
  transform: translateY(-6px);
}

/* TEAM */
.team {
  margin-top: 5rem;
  text-align: center;
}

.team h3 {
  font-size: 2.8rem;
  color: #388e3c;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.member {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.2rem;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.member:hover {
  transform: translateY(-6px);
  background: #f1f8f4;
}

.member h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e7d32;
}

.member p {
  font-size: 1.4rem;
  color: #666;
}

/* NEW ABOUT US PAGE - POTATO MOJOS STYLE */
.about-hero-new {
  background-color: #ffffff;
  min-height: 100vh;
  padding: 10rem 2rem 5rem;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
}

.about-main-title {
  font-size: 6rem;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
  text-shadow: 
    -1.5px -1.5px 0 #000,
    1.5px -1.5px 0 #000,
    -1.5px 1.5px 0 #000,
    1.5px 1.5px 0 #000,
    2px 2px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 4px;
}

/* About Story Section */
.about-story-section {
  background-color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 5rem;
}

.about-story-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-image {
  flex: 0 0 500px;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-text {
  flex: 1;
  color: #000000;
}

.story-text p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
  font-weight: 400;
}

/* Vision and Mission Section */
.vision-mission-section {
  margin-bottom: 5rem;
}

.vision-mission-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  background-image: url('../images/Our Mission Our Vision Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #e8d5b7;
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.vision-card::before,
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.03) 75%);
  background-size: 50px 50px;
  background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
  opacity: 0.5;
  pointer-events: none;
}

.vm-wrapper {
  text-align: center;
}

.vm-title {
  font-size: 3.5rem;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000,
    2px 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  text-align: center;
}

.vm-content {
  position: relative;
  z-index: 1;
}

.vm-content p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #000000;
  font-weight: 500;
}

/* Core Values Section */
.core-values-section {
  margin-top: 5rem;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  background-color: transparent;
}

.value-icon {
  margin-bottom: 2rem;
}

.value-icon img {
  width: 300px;
  height: auto;
  display: inline-block;
}

.value-title {
  font-size: 2.4em;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 
    -1.5px -1.5px 0 #000,
    1.5px -1.5px 0 #000,
    -1.5px 1.5px 0 #000,
    1.5px 1.5px 0 #000,
    1.5px 1.5px 3px rgba(0, 0, 0, 0.4);
    letter-spacing: 2.5px;
}

.value-description p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-main-title {
    font-size: 4.5rem;
  }

  .about-story-content {
    flex-direction: column;
    text-align: center;
  }

  .story-image {
    flex: 0 0 auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .story-text p {
    text-align: center;
  }

  .vision-mission-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .vm-title {
    font-size: 2.8rem;
  }

  .vm-content p {
    font-size: 1.6rem;
  }

  .value-title {
    font-size: 2rem;
  }

  .value-description p {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .about-main-title {
    font-size: 3.5rem;
  }

  .about-hero-new {
    padding: 8rem 1rem 3rem;
  }

  .story-text p {
    font-size: 1.4rem;
  }

  .vm-title {
    font-size: 2.4rem;
  }

  .vm-content p {
    font-size: 1.5rem;
  }

  .value-icon img {
    width: 200px;
  }

  .value-title {
    font-size: 1.8rem;
  }

  .value-description p {
    font-size: 1.3rem;
  }
}

/* SERVICES PAGE - STARBUCKS INSPIRED */

/* Services Hero Section */
/* Services Main Section */
.services-main {
  background: url('../images/SERVICES BACKGROUND.png') center center;
  background-size: cover;
  min-height: 100vh;
  padding: 12rem 2rem 8rem;
  position: relative;
}

.services-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(230, 208, 180, 0.85);
  z-index: 0;
}

.services-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.services-main-title {
  font-size: 6rem;
  font-weight: 900;
  font-family: 'Luckiest Guy', cursive;
  text-align: center;
  color: #ffffff;
  margin-bottom: 6rem;
  text-shadow: 
    4px 4px 0px #000000,
    -2px -2px 0px #000000,
    2px -2px 0px #000000,
    -2px 2px 0px #000000;
  letter-spacing: 0.3rem;
}

.services-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card-large {
  background: #ffffff;
  border-radius: 2.5rem;
  padding: 0;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.service-card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 2.5rem 2.5rem 0 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-title {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  margin: 3rem 3rem 2rem;
  text-shadow: 
    4px 4px 0px #000000,
    -2px -2px 0px #000000,
    2px -2px 0px #000000,
    -2px 2px 0px #000000;
  letter-spacing: 0.15rem;
  line-height: 1.2;
}

.service-card-description {
  font-size: 1.9rem;
  line-height: 1.8;
  color: #000000;
  padding: 0 3.5rem 4rem;
  font-weight: 400;
  font-family: Calibri, 'Segoe UI', Tahoma, sans-serif;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .services-cards-container {
    gap: 4rem;
  }
  
  .services-main-title {
    font-size: 5rem;
  }
  
  .service-card-title {
    font-size: 3rem;
  }
  
  .service-card-description {
    font-size: 1.7rem;
  }
}

@media (max-width: 900px) {
  .services-cards-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .services-main {
    padding: 10rem 2rem 6rem;
  }
  
  .services-main-title {
    font-size: 4.5rem;
    margin-bottom: 4rem;
  }
  
  .service-card-image {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .services-main-title {
    font-size: 3.5rem;
  }
  
  .service-card-title {
    font-size: 2.5rem;
    margin: 2rem 2rem 1.5rem;
  }
  
  .service-card-description {
    font-size: 1.6rem;
    padding: 0 2.5rem 3rem;
  }
  
  .service-card-image {
    height: 250px;
  }
}

/* OLD SERVICES STYLES */
.services {
  text-align: center;
  padding: 5rem 2rem;
  background: #f9fdf9;
}

.services h2 {
  font-size: 4rem;
  font-weight: 800;
  color: #2e7d32;
}

.services-intro {
  font-size: 1.6rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #f1f8f4;
}

/* CONTACT PAGE - STARBUCKS INSPIRED */

/* Contact Hero Section */
/* CONTACT PAGE - POTATO MOJOS STYLE */
.contact-hero {
  background: #ffffff;
  min-height: 85vh;
  padding: 12rem 2rem 6rem;
  position: relative;
}

.contact-hero .hero-title {
  font-size: 7rem;
  font-weight: 900;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  text-shadow: 
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 -2px 0 #000000,
    0 2px 0 #000000;
  letter-spacing: 0.2rem;
}

.contact-hero .hero-subtitle {
  font-size: 4.5rem;
  margin-bottom: 5rem;
  font-weight: bold;
  font-family: Calibri, 'Segoe UI', sans-serif;
  color: #ffffff;
  text-align: center;
  text-shadow: 
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 -2px 0 #000000,
    0 2px 0 #000000;
}

.contact-hero .hero-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-hero .hero-potato-image {
  flex-shrink: 0;
  max-width: 450px;
}

.contact-hero .hero-potato-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-hero .hero-description {
  flex: 1;
  font-size: 2.3rem;
  line-height: 1.7;
  color: #000000;
  font-family: Calibri, 'Segoe UI', sans-serif;
  text-align: justify;
}

/* Contact Cards Section */
.contact-cards-section {
  background: #ffffff;
  padding: 0 2rem 10rem;
}

.contact-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8rem;
}

.contact-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card {
  background: url('../images/5.png') center center;
  background-size: cover;
  border-radius: 3rem;
  padding: 6rem 5rem;
  text-align: center;
  min-height: 380px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.contact-card-title {
  font-size: 4rem;
  font-weight: 900;
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  margin-bottom: 2rem;
  text-shadow: 
    -2px -2px 0 #000000,
    2px -2px 0 #000000,
    -2px 2px 0 #000000,
    2px 2px 0 #000000,
    -2px 0 0 #000000,
    2px 0 0 #000000,
    0 -2px 0 #000000,
    0 2px 0 #000000;
  letter-spacing: 0.15rem;
}

.contact-card-text {
  font-size: 2.2rem;
  line-height: 1.9;
  color: #000000;
  font-family: Calibri, 'Segoe UI', sans-serif;
  font-weight: 500;
  text-shadow: 
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px 1px 0 #ffffff,
    -1px 0 0 #ffffff,
    1px 0 0 #ffffff,
    0 -1px 0 #ffffff,
    0 1px 0 #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-cards-container {
    gap: 5rem;
  }
  
  .contact-hero .hero-title {
    font-size: 6rem;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 4rem;
  }
  
  .contact-card-title {
    font-size: 3.5rem;
  }
  
  .contact-card-text {
    font-size: 2rem;
  }
}

@media (max-width: 900px) {
  .contact-cards-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-hero {
    padding: 10rem 2rem 5rem;
    min-height: 75vh;
  }
  
  .contact-hero .hero-title {
    font-size: 5rem;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 3.5rem;
  }
  
  .contact-hero .hero-layout {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-hero .hero-potato-image {
    max-width: 350px;
  }
  
  .contact-hero .hero-description {
    font-size: 2.1rem;
  }
  
  .contact-card {
    padding: 5rem 4rem;
    min-height: 320px;
  }
  
  .contact-cards-section {
    padding: 0 2rem 8rem;
  }
}

@media (max-width: 600px) {
  .contact-hero .hero-title {
    font-size: 3.5rem;
  }
  
  .contact-hero .hero-subtitle {
    font-size: 2.8rem;
  }
  
  .contact-hero .hero-potato-image {
    max-width: 220px;
  }
  
  .contact-hero .hero-description {
    font-size: 1.9rem;
  }
  
  .contact-card-title {
    font-size: 2.8rem;
  }
  
  .contact-card-text {
    font-size: 1.7rem;
  }
  
  .contact-card {
    padding: 4rem 3rem;
    min-height: 280px;
  }
  
  .contact-cards-container {
    gap: 3rem;
  }
}

.detail-card:hover {
  background: #e8f5e9;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.detail-card h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1e3932;
  margin-bottom: 1.5rem;
}

.detail-card p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-categories {
    grid-template-columns: 1fr;
  }
  
  .contact-details {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* OLD CONTACT STYLES */
.contact {
  background: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?q=80") no-repeat center/cover;
  color: #fff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.contact form {
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(0,0,0,0.5);
  padding: 2rem;
  border-radius: 1rem;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0.5rem;
}

.contact button {
  padding: 1rem 3rem;
  font-size: 1.6rem;
  background: #3c7a48;
  color: #fff;
  border-radius: 2rem;
  transition: 0.3s;
}

.contact button:hover {
  background: #6ba368;
}

/* CUSTOMER DASHBOARD - ADVANCED DESIGN */

/* Dashboard Hero */
.customer-dashboard-hero {
  background: linear-gradient(135deg, #1e4620 0%, #2d5f32 50%, #4a7c59 100%);
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.customer-dashboard-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1559925393-8be0ec4767c8?w=1600') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.dashboard-header {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.dashboard-header h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.5px;
}

.btn-add-customer {
  background: #ffffff;
  color: #2e7d32;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-add-customer:hover {
  background: #2e7d32;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-add-customer-inline {
  background: #2e7d32;
  color: #ffffff;
  padding: 1.45rem 2.5rem;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  white-space: nowrap;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-add-customer-inline:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* Dashboard Content */
.customer-dashboard-content {
  background: #f5f5f5;
  min-height: calc(100vh - 200px);
  padding: 3rem 2rem 5rem;
}

.dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Filter Section - Advanced */
.filter-section {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.filter-form-advanced {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
  flex-wrap: wrap;
}

.filter-form-advanced input[type="text"],
.filter-form-advanced select,
.search-input-advanced,
.filter-select-advanced {
  padding: 1.45rem 2rem !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  font-family: 'Poppins', sans-serif !important;
  transition: 0.3s !important;
  background: #e8f5e9 !important;
  color: #1e3932 !important;
  font-weight: 500 !important;
  min-width: 180px !important;
  box-shadow: none !important;
  height: 48px !important;
}

.filter-form-advanced input[type="text"]:focus,
.filter-form-advanced select:focus,
.search-input-advanced:focus,
.filter-select-advanced:focus {
  outline: none !important;
  background: #c8e6c9 !important;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2) !important;
}

.filter-form-advanced input[type="text"]::placeholder,
.search-input-advanced::placeholder {
  color: #5a7d5f !important;
  opacity: 0.8 !important;
}

.btn-filter-advanced {
  background: #2e7d32;
  color: #ffffff;
  padding: 1.45rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-filter-advanced:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* Customer Table - Advanced */
.customer-table-wrapper {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  overflow-x: auto;
  overflow-y: hidden;
}

.customer-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.customer-table-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.customer-table-wrapper::-webkit-scrollbar-thumb {
  background: #c8e6c9;
  border-radius: 4px;
}

.customer-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #2e7d32;
}

.customer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}

.customer-table thead {
  background: linear-gradient(135deg, #2e7d32 0%, #388e3c 100%);
}

.customer-table th {
  color: #ffffff;
  padding: 1.8rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.5px;
  border-bottom: none;
}

.customer-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: 0.2s ease;
}

.customer-table tbody tr:hover {
  background: #f8fdf8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.customer-table td {
  padding: 1.6rem 1.5rem;
  color: #333;
}

.account-badge {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.4rem;
  display: inline-block;
}

.customer-name {
  font-weight: 600;
  color: #1e3932;
  font-size: 1.6rem;
}

.customer-email {
  color: #666;
  font-size: 1.4rem;
}

.date-cell {
  color: #888;
  font-size: 1.4rem;
}

/* Status Badges - Enhanced */
.status {
  padding: 0.6rem 1.4rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.status.vip {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #d32f2f;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.status.regular {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
}

.status.guest {
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
  color: #7b1fa2;
}

/* Pagination Wrapper */
.pagination-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .filter-section {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-form-advanced {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-add-customer-inline {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    text-align: center;
  }
  
  .dashboard-header h1 {
    font-size: 3rem;
  }
  
  .filter-section {
    padding: 1.5rem;
  }
  
  .customer-table {
    font-size: 1.3rem;
  }
  
  .customer-table th,
  .customer-table td {
    padding: 1.2rem 1rem;
  }
}

/* OLD CUSTOMER STYLES */
.filter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-form .filter-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}

.filter-form .input-field {
  padding: 0 2rem !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.6rem !important;
  font-family: 'Poppins', sans-serif !important;
  transition: 0.3s !important;
  background: #e8f5e9 !important;
  color: #1e3932 !important;
  font-weight: 500 !important;
  min-width: 180px !important;
  box-shadow: none !important;
  height: 48px !important;
  line-height: 48px !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.filter-form .input-field:focus {
  outline: none !important;
  background: #c8e6c9 !important;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2) !important;
}

.filter-form .filter-btn,
.filter-form .add-btn {
  background: #2e7d32;
  color: #ffffff;
  padding: 0 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 48px;
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
}

.filter-form .filter-btn:hover,
.filter-form .add-btn:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.customer-table-wrapper-old { overflow-x: auto; }

/* PAGINATION — FINAL & WORKING */
.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.pagination li {
  display: inline-flex;
}

.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  font-size: 1.7rem;
  border: 1.5px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(60,122,72,0.06);
  transition: 0.18s ease;
}

.pagination li a:hover,
.pagination li span:hover {
  background: #e3f6e8;
  color: #3c7a48;
  border-color: #6ba368;
}

.pagination li.active span {
  background: #6ba368;
  color: #fff;
  border-color: #3c7a48;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

footer h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

footer .footer-logo {
  font-family: 'Luckiest Guy', cursive;
  background: linear-gradient(180deg, #d4a574 0%, #c59563 50%, #b8865a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  filter: drop-shadow(1px 1px 0px #000) drop-shadow(-1px -1px 0px #000) drop-shadow(1px -1px 0px #000) drop-shadow(-1px 1px 0px #000);
}

footer .socials {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

footer .socials img {
  width: 30px;
  transition: 0.3s;
}

footer .socials img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 5px #f5e6c8);
}

/* ADMIN MENU MANAGEMENT */
.menu-admin {
  min-height: 100vh;
  padding: 10rem 2rem 5rem;
  background: #f5f5f5;
}

.admin-container {
  max-width: 1400px;
  margin: 0 auto;
}

.admin-container h2 {
  font-size: 3.5rem;
  color: #2e7d32;
  margin-bottom: 3rem;
  text-align: center;
}

.alert {
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert ul {
  margin: 0;
  padding-left: 2rem;
}

.admin-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.btn-primary {
  background: #2e7d32;
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.search-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 500px;
}

.search-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1.6rem;
}

.btn-search {
  background: #3c7a48;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-search:hover {
  background: #2e7d32;
}

.btn-secondary {
  background: #757575;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #616161;
}

.table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
}

.admin-table thead {
  background: #e8f5e9;
}

.admin-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #2e7d32;
  border-bottom: 2px solid #c8e6c9;
}

.admin-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.admin-table tbody tr:hover {
  background: #f9f9f9;
}

.item-thumb {
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.badge {
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.badge-tea {
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-coffee {
  background: #efebe9;
  color: #5d4037;
}

.badge-sandwich {
  background: #fff3e0;
  color: #e65100;
}

.badge-dessert {
  background: #fce4ec;
  color: #c2185b;
}

.badge-other {
  background: #e0e0e0;
  color: #424242;
}

.actions {
  display: flex;
  gap: 1rem;
}

.btn-edit {
  background: #1976d2;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}

.btn-edit:hover {
  background: #1565c0;
}

.btn-delete {
  background: #d32f2f;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1.4rem;
  transition: 0.3s;
}

.btn-delete:hover {
  background: #c62828;
}

/* MENU FORM */
.menu-form-section {
  width: 100%;
  background: transparent;
}

.admin-content .menu-form-section {
  padding: 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  font-size: 3rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.menu-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group small {
  font-size: 1.3rem;
  color: #757575;
}

.form-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.form-actions button,
.form-actions a {
  flex: 1;
  padding: 1.3rem;
  text-align: center;
  font-size: 1.6rem;
  border-radius: 0.8rem;
  font-weight: 600;
  transition: 0.3s;
}

.form-actions button {
  border: none;
  cursor: pointer;
}

/* ========== CART SYSTEM STYLES ========== */

/* Cart Link in Header */
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-link:hover {
  border-bottom: 2px solid #ffffff !important;
}

.cart-count {
  background: #ff6b6b;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50%;
  min-width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.5rem;
  right: -1rem;
  line-height: 1;
}

/* Add to Cart Button on Menu */
.btn-add-to-cart {
  background: #4a7c4e;
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin: 0 1.5rem 2rem 1.5rem;
  width: calc(100% - 3rem);
  transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
  background: #3d6641;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 78, 0.4);
}

.menu-box .item .price {
  display: block;
  margin: 1rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #3c7a48;
}

/* Cart Page */
.cart-page {
  padding: 10rem 9% 5rem;
  min-height: 100vh;
  background-image: url('../images/Menu Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.cart-container {
  max-width: 1400px;
  margin: 0 auto;
}

.cart-heading {
  font-size: 5rem;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cart-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
}

.cart-items {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cart-item {
  background: white;
  border-radius: 1.2rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #000000;
}

.cart-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-item-top {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.item-image-wrapper {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
  overflow: hidden;
  border-radius: 0.8rem;
}

.item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
  display: block;
}

.no-image {
  width: 100%;
  height: 100%;
  border-radius: 0.8rem;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666;
}

.item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.item-name {
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.rice-option-badge,
.fries-option-badge {
  display: inline-block;
  background-color: #FFAE42;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.3rem;
  font-weight: 600;
  white-space: nowrap;
}

.item-category {
  font-size: 1.2rem;
  color: #3c7a48;
  font-weight: 600;
  margin: 0;
}

.item-description {
  font-size: 1.2rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.item-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.cart-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.item-quantity-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quantity-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.qty-btn {
  width: 3rem;
  height: 3rem;
  background: #3c7a48;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: #2e5e38;
  transform: scale(1.05);
}

.qty-btn:active {
  transform: scale(0.95);
}

.quantity-input {
  width: 4rem;
  height: 3rem;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background: #fff;
}

.quantity-input:focus {
  outline: none;
  border-color: #3c7a48;
}

.item-subtotal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.subtotal-label {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
  margin: 0;
}

.subtotal-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3c7a48;
  margin: 0;
}

.remove-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(255, 107, 107, 0.3);
  z-index: 10;
}

.remove-btn:hover {
  background: #ff5252;
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(255, 107, 107, 0.5);
}

/* Cart Summary */
.cart-summary {
  flex: 0 1 380px;
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
  position: sticky;
  top: 10rem;
  border: 1px solid #000000;
}

.cart-summary h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3c7a48;
  padding-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.summary-row.total {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  border-top: 2px solid #ddd;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.btn-checkout,
.btn-continue,
.btn-clear {
  display: block;
  width: 100%;
  padding: 1.3rem;
  text-align: center;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-checkout {
  background: #3c7a48;
  color: white;
}

.btn-checkout:hover {
  background: #2e5e38;
  transform: translateY(-2px);
}

.btn-continue {
  background: transparent;
  color: #3c7a48;
  border: 2px solid #3c7a48;
}

.btn-continue:hover {
  background: #3c7a48;
  color: white;
}

.btn-clear {
  background: #ff6b6b;
  color: white;
}

.btn-clear:hover {
  background: #ff5252;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-cart-icon {
  font-size: 8rem;
  margin-bottom: 2rem;
}

.empty-cart h2 {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
}

.empty-cart p {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Checkout Page */
.checkout-page {
  padding: 10rem 9% 5rem;
  min-height: 100vh;
}

.checkout-heading {
  font-family: 'Luckiest Guy', cursive;
  color: #ffffff;
  text-shadow: -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
  font-size: 5.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}

.checkout-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.checkout-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 3rem;
  align-items: stretch;
  justify-content: center;
}

.checkout-form-section {
  flex: 1 1 600px;
  min-width: 320px;
  max-width: 700px;
  order: 2;
  background: white;
  border-radius: 1.2rem;
  padding: 3rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.checkout-form-section h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3c7a48;
  padding-bottom: 1rem;
}

.checkout-form .form-group {
  margin-bottom: 2rem;
}

.checkout-form label {
  display: block;
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.checkout-form input {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.checkout-form input:focus {
  border-color: #3c7a48;
  box-shadow: 0 0 0 3px rgba(60, 122, 72, 0.1);
}

/* Payment Methods */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.payment-option {
  cursor: pointer;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-card {
  background: white;
  border: 2px solid #ddd;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
  border-color: #3c7a48;
  background: rgba(60, 122, 72, 0.05);
}

.payment-card:hover {
  border-color: #3c7a48;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.payment-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.payment-icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
}

.payment-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

/* GCash Payment Details */
.gcash-payment-details {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
  border: 2px solid #007DFF;
}

.gcash-info-box {
  text-align: center;
}

.gcash-info-box h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.gcash-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #007DFF;
  margin: 1.5rem 0;
  letter-spacing: 1px;
}

.gcash-qr {
  margin-top: 2rem;
}

.gcash-qr img {
  width: 200px;
  height: 200px;
  border: 3px solid #007DFF;
  border-radius: 0.5rem;
  padding: 1rem;
  background: white;
}

.qr-note {
  font-size: 1.4rem;
  color: #666;
  margin-top: 1rem;
}

.btn-pay,
.btn-back {
  padding: 1.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 0.8rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.btn-pay {
  background: #3c7a48;
  color: white;
}

.btn-pay:hover {
  background: #2e5e38;
  transform: translateY(-2px);
}

.btn-back {
  background: transparent;
  color: #3c7a48;
  border: 2px solid #3c7a48;
}

.btn-back:hover {
  background: #3c7a48;
  color: white;
}

.simulation-note {
  text-align: center;
  font-size: 1.4rem;
  color: #ff6b6b;
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 0.8rem;
}

/* Checkout Summary */
.checkout-summary {
  flex: 0 1 400px;
  min-width: 320px;
  order: 1;
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.checkout-summary h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3c7a48;
  padding-bottom: 1rem;
}

.order-type-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.order-type-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.order-type-value {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
}

.summary-items {
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 2rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eee;
}

.summary-item-name {
  font-size: 1.5rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.summary-item-qty {
  font-size: 1.3rem;
  color: #666;
}

.summary-item-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #3c7a48;
}

.summary-total {
  border-top: 2px solid #ddd;
  padding-top: 1.5rem;
}

/* Success Page */
.success-page {
  padding: 8rem 9% 3rem;
  min-height: 100vh;
}

.success-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 1.2rem;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.success-icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  animation: scaleIn 0.5s ease;
}

.pending-icon {
  font-size: 6rem;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.success-title {
  font-size: 4rem;
  color: #000;
  margin-bottom: 1rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
}

.success-message {
  font-size: 1.8rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Queue Number Banner */
.queue-number-banner {
  background: linear-gradient(135deg, #3c7a48 0%, #2d5a36 100%);
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  text-align: center;
  box-shadow: 0 4px 12px rgba(60, 122, 72, 0.3);
  border: 2px solid #2d5a36;
}

.queue-label {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.8rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.queue-number-display {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  padding: 0.8rem 2rem;
  display: inline-block;
  margin: 0.3rem 0;
  font-family: 'Arial Black', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.3);
  min-width: 120px;
}

.queue-info {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 0.8rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.order-details {
  text-align: left;
  margin-top: 1.5rem;
}

.order-details h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
  border-bottom: 2px solid #3c7a48;
  padding-bottom: 1rem;
}

.order-details h3 {
  font-size: 2rem;
  color: #333;
  margin: 2rem 0 1.5rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
}

.order-info {
  background: #f9f9f4;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #ddd;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
}

.info-value {
  font-size: 1.8rem;
  color: #333;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 400;
}

.order-items {
  background: #f9f9f4;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-name {
  font-size: 1.8rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
}

.order-item-qty {
  font-size: 1.7rem;
  color: #333;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 400;
}

.order-item-price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #3c7a48;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #3c7a48;
  color: white;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
}

.total-label {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  color: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.total-amount {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  color: #fff;
  text-shadow: none;
}

/* Payment Instructions */
.payment-instruction {
  background: #FFAE42;
  border: 2px solid #FFAE42;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.instruction-text {
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  text-transform: uppercase;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 0.5px;
}

/* Payment Note */
.payment-note {
  background: #b8b8b8;
  border: 2px solid #b8b8b8;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: center;
}

.note-text {
  font-size: 1.9rem;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  letter-spacing: 0.5px;
}

/* Clean Payment Instructions */
.payment-instruction-clean {
  background: #f9f9f4;
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

.instruction-main {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 1rem 0;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
}

.instruction-details {
  font-size: 1.5rem;
  font-weight: 400;
  color: #555;
  margin: 0;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  line-height: 1.6;
}

.waiting-message {
  font-size: 1.8rem;
  color: #000;
  text-align: center;
  margin: 1.5rem 0;
  font-style: normal;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
}

/* GCash Payment Display */
.gcash-payment-info {
  margin: 3rem 0;
  text-align: center;
}

.gcash-payment-info h3 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 2rem;
}

.gcash-details-box {
  background: #f0f8ff;
  border: 3px solid #007DFF;
  border-radius: 1rem;
  padding: 3rem;
}

.gcash-account-name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.gcash-number-display {
  font-size: 3rem;
  font-weight: 700;
  color: #007DFF;
  margin: 2rem 0;
  letter-spacing: 2px;
}

.gcash-qr-display {
  margin-top: 2rem;
}

.gcash-qr-display img {
  width: 250px;
  height: 250px;
  border: 4px solid #007DFF;
  border-radius: 0.8rem;
  padding: 1.5rem;
  background: white;
  display: inline-block;
}

.qr-instruction {
  font-size: 1.5rem;
  color: #666;
  margin-top: 1.5rem;
}

.success-actions {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.btn-home,
.btn-menu,
.btn-order-again {
  flex: 1;
  padding: 1.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  border-radius: 0.8rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.btn-home {
  background: #FFAE42;
  color: #fff;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.btn-order-again {
  background: #3c7a48;
  color: #fff;
  font-family: 'Calibri', 'Calibri MS', sans-serif;
  font-weight: 700;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.btn-home:hover {
  background: #b89964;
  transform: translateY(-2px);
}

.btn-order-again:hover {
  background: #2e5e38;
  transform: translateY(-2px);
}

.btn-menu {
  background: transparent;
  color: #3c7a48;
  border: 2px solid #3c7a48;
}

.btn-menu:hover {
  background: #3c7a48;
  color: white;
}

/* Admin Pending Orders Page */
.admin-orders-page {
  padding: 12rem 2rem 4rem;
  min-height: 100vh;
  background: #f5f5f5;
}

.admin-container {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-orders-page .heading {
  font-size: 4rem;
  color: #333;
  text-align: center;
  margin-bottom: 4rem;
}

.no-orders {
  text-align: center;
  padding: 5rem;
  background: white;
  border-radius: 1rem;
}

.no-orders p {
  font-size: 2rem;
  color: #666;
}

.orders-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: flex-start;
}

.orders-grid .order-card {
  flex: 1 1 calc(33.333% - 2rem);
  min-width: 320px;
  max-width: calc(33.333% - 2rem);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .orders-grid .order-card {
    flex: 1 1 calc(50% - 2rem);
    max-width: calc(50% - 2rem);
  }
}

@media (max-width: 768px) {
  .orders-grid .order-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.order-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.order-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.order-header {
  border-bottom: 2px solid #3c7a48;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.order-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 1rem;
}

.order-header h3 {
  font-size: 2rem;
  color: #3c7a48;
  margin-bottom: 0;
  flex: 1;
}

.queue-badge {
  background: linear-gradient(135deg, #3c7a48 0%, #2d5a36 100%);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(60, 122, 72, 0.3);
  border: 2px solid #2d5a36;
  animation: queuePulse 2s ease-in-out infinite;
}

@keyframes queuePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.order-date {
  font-size: 1.3rem;
  color: #666;
}

.order-body {
  margin: 1.5rem 0;
}

.order-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.order-info-row:last-child {
  border-bottom: none;
}

.order-info-row.total {
  background: #f9f9f9;
  padding: 1.5rem 1rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
}

.order-info-row .label {
  font-size: 1.4rem;
  color: #666;
  font-weight: 600;
}

.order-info-row .value {
  font-size: 1.5rem;
  color: #333;
}

.order-info-row .value.amount {
  font-size: 2rem;
  font-weight: 700;
  color: #3c7a48;
}

.payment-badge {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.payment-badge.cash {
  background: #d4edda;
  color: #155724;
}

.payment-badge.gcash {
  background: #cce5ff;
  color: #004085;
}

/* Order Items in Pending Orders */
.order-items-section {
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.8rem;
  border: 1px solid #e0e0e0;
}

.items-heading {
  font-size: 1.5rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #3c7a48;
}

.items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
}

.item-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.item-name {
  font-size: 1.4rem;
  color: #333;
  font-weight: 600;
}

.item-qty {
  font-size: 1.2rem;
  color: #666;
}

.item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3c7a48;
}

.dining-badge {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  background: #fff3cd;
  color: #856404;
}

.order-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.btn-confirm {
  display: block;
  width: 100%;
  padding: 1.5rem;
  background: #3c7a48;
  color: white;
  text-align: center;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-confirm:hover {
  background: #2e5e38;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(60, 122, 72, 0.3);
}

/* Multi-step Order Action Buttons */
.btn-paid,
.btn-done {
  flex: 1;
  padding: 1.5rem;
  background: #3c7a48;
  color: white;
  text-align: center;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-paid:hover,
.btn-done:hover {
  background: #2e5e38;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(60, 122, 72, 0.3);
}

.btn-cancel {
  flex: 1;
  padding: 1.5rem;
  background: #dc3545;
  color: white;
  text-align: center;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-cancel:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Alert Messages */
.alert {
  padding: 1.5rem 2rem;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.alert-success {
  background: rgba(60, 122, 72, 0.1);
  color: #3c7a48;
  border: 1px solid #3c7a48;
}

.alert-error {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.alert ul {
  list-style: none;
  margin-top: 1rem;
}

.alert li {
  padding: 0.5rem 0;
}

/* Responsive Design for Cart and Checkout */
@media (max-width: 1200px) {
  .checkout-content {
    flex-direction: column;
    align-items: center;
  }

  .checkout-form-section {
    order: 2;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }

  .checkout-summary {
    order: 1;
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .cart-content {
    flex-direction: column;
  }

  .checkout-container {
    padding: 0 1.5rem;
  }

  .cart-summary {
    position: static;
  }

  .cart-item {
    padding: 1.5rem;
  }

  .cart-heading {
    font-size: 4.5rem;
  }

  .item-image-wrapper {
    width: 90px;
    height: 90px;
  }

  .cart-item-top {
    gap: 1.2rem;
  }
}

@media (max-width: 1024px) {
  .cart-content {
    flex-direction: column;
  }

  .cart-items {
    flex: 1 1 100%;
  }

  .cart-summary {
    flex: 1 1 100%;
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-page,
  .checkout-page,
  .success-page {
    padding: 10rem 5% 3rem;
  }

  .cart-heading {
    font-size: 4rem;
  }

  .cart-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .cart-item-top {
    gap: 1.2rem;
  }

  .item-image-wrapper {
    width: 85px;
    height: 85px;
  }

  .item-name {
    font-size: 1.6rem;
  }

  .item-category {
    font-size: 1.1rem;
  }

  .item-description {
    font-size: 1.1rem;
  }

  .item-price {
    font-size: 1.3rem;
  }

  .remove-btn {
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
  }

  .quantity-label {
    font-size: 1.1rem;
  }

  .qty-btn {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.6rem;
  }

  .quantity-input {
    width: 3.5rem;
    height: 2.8rem;
    font-size: 1.5rem;
  }

  .subtotal-label {
    font-size: 1.1rem;
  }

  .subtotal-amount {
    font-size: 1.6rem;
  }

  .success-actions {
    flex-direction: column;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .checkout-container {
    padding: 0 1rem;
  }

  .checkout-summary,
  .checkout-form-section {
    min-width: 100%;
    margin: 0;
  }

  /* Menu responsive */
  .menu-box {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .menu .heading {
    font-size: 4rem;
  }

  .menu-category h2 {
    font-size: 2.2rem;
  }

  .filter-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .search-input,
  .category-filter {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 1rem 2rem;
  }

  nav {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  nav a {
    font-size: 2rem;
    padding: 0.3rem 0.6rem;
  }

  .admin-btn {
    font-size: 2rem;
    padding: 0.4rem 1.2rem;
  }

  .menu-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem;
  }

  /* Home Section */
  .home {
    padding: 10rem 5% 5rem;
  }

  .home-content {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    max-width: 100%;
  }

  /* About Section */
  .about-story-content {
    flex-direction: column;
  }

  .story-image,
  .story-text {
    max-width: 100%;
  }

  .vision-mission-container {
    flex-direction: column;
  }

  .core-values-grid {
    grid-template-columns: 1fr;
  }

  /* Services Section */
  .services-cards-container {
    grid-template-columns: 1fr;
  }

  /* Contact Section */
  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }

  header {
    padding: 0.8rem 1rem;
  }

  .logo {
    font-size: 2.2rem;
  }

  nav {
    gap: 0.5rem;
  }

  nav a {
    font-size: 2rem;
    padding: 0.2rem 0.5rem;
  }

  .admin-btn {
    font-size: 2rem;
    padding: 0.3rem 1rem;
  }

  .cart-count {
    padding: 0.1rem 0.4rem;
    font-size: 1rem;
    min-width: 1.6rem;
    height: 1.6rem;
    top: -0.3rem;
    right: -0.8rem;
  }

  /* Home Section */
  .home {
    padding: 9rem 3% 4rem;
  }

  .heading {
    font-size: 3rem;
  }

  /* Cart Section */
  .cart-page,
  .checkout-page {
    padding: 9rem 3% 3rem;
  }

  .checkout-container {
    padding: 0 0.5rem;
  }

  .checkout-heading {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .cart-heading {
    font-size: 3.5rem;
  }

  .cart-item {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .cart-item-top {
    gap: 1rem;
  }

  .item-image-wrapper {
    width: 75px;
    height: 75px;
  }

  .item-name {
    font-size: 1.5rem;
  }

  .item-category {
    font-size: 1rem;
  }

  .item-description {
    font-size: 1rem;
  }

  .item-price {
    font-size: 1.2rem;
  }

  .remove-btn {
    top: 0.8rem;
    right: 0.8rem;
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }

  .qty-btn {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.6rem;
  }

  .quantity-input {
    width: 3.5rem;
    height: 2.6rem;
    font-size: 1.4rem;
  }

  .quantity-label {
    font-size: 1rem;
  }

  .subtotal-label {
    font-size: 1rem;
  }

  .subtotal-amount {
    font-size: 1.5rem;
  }

  /* Cart Summary */
  .cart-summary {
    padding: 2rem;
  }

  .cart-summary h2 {
    font-size: 2rem;
  }

  .btn-checkout,
  .btn-continue,
  .btn-clear {
    padding: 1.2rem;
    font-size: 1.5rem;
  }

  /* Footer */
  footer {
    padding: 3rem 1rem;
  }

  footer h2 {
    font-size: 2.5rem;
  }

  footer p {
    font-size: 1.3rem;
  }
}

/* ============================================
   NEW ADMIN PAGE WITH SIDEBAR LAYOUT
   ============================================ */

.admin-page {
  display: flex;
  min-height: 100vh;
  padding: 0;
  margin-top: 8rem;
  background: #f5f5f5;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.admin-sidebar {
  width: 250px;
  min-height: calc(100vh - 8rem);
  background: #b8935e;
  padding: 3rem 0;
  position: fixed;
  left: 0;
  top: 8rem;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.admin-title {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.admin-nav-link {
  display: block;
  padding: 1.8rem 2.5rem;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  font-weight: 500;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid #fff;
  padding-left: 3rem;
}

.admin-nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-left: 4px solid #fff;
  font-weight: 600;
}

.admin-content {
  margin-left: 250px;
  flex: 1;
  padding: 4rem;
  width: calc(100% - 250px);
}

.admin-content h2 {
  font-size: 3.5rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: left;
}

/* Menu Management Section in Admin */
.menu-management-section {
  background: transparent;
}

.menu-management-section .admin-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.menu-management-section .table-wrapper {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pending Orders Section in Admin */
.pending-orders-section {
  background: transparent;
}

.pending-orders-section h2 {
  text-align: left;
}

.pending-orders-section .orders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.pending-orders-section .order-card {
  max-width: 100%;
}

/* Responsive adjustments for admin sidebar */
@media (max-width: 1024px) {
  .admin-sidebar {
    width: 220px;
  }

  .admin-content {
    margin-left: 220px;
    width: calc(100% - 220px);
    padding: 3rem 2rem;
  }

  .admin-title {
    font-size: 2.5rem;
  }

  .admin-nav-link {
    font-size: 1.6rem;
    padding: 1.5rem 2rem;
  }

  .pending-orders-section .orders-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .admin-page {
    flex-direction: column;
  }

  .admin-sidebar {
    position: relative;
    width: 100%;
    min-height: auto;
    top: 0;
    left: 0;
    padding: 2rem 0;
  }

  .admin-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .admin-content {
    margin-left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
  }

  .admin-nav {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
  }

  .admin-nav-link {
    padding: 1.2rem 1.8rem;
    border-left: none;
    border-bottom: 3px solid transparent;
    font-size: 1.5rem;
  }

  .admin-nav-link.active,
  .admin-nav-link:hover {
    border-left: none;
    border-bottom: 3px solid #fff;
    padding-left: 1.8rem;
  }

  .pending-orders-section .orders-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .admin-content h2 {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .admin-sidebar {
    padding: 1.5rem 0;
  }

  .admin-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .admin-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .admin-nav-link {
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    border-left: 4px solid transparent;
    border-bottom: none;
  }

  .admin-nav-link.active,
  .admin-nav-link:hover {
    border-left: 4px solid #fff;
    border-bottom: none;
    padding-left: 2.5rem;
    text-align: left;
  }

  .admin-content {
    padding: 1.5rem 1rem;
  }

  .admin-content h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  /* Form Container Responsive */
  .form-container {
    padding: 2rem 1.5rem;
  }

  .form-container h2 {
    font-size: 2.2rem;
  }

  .form-group label {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1.5rem;
    padding: 1rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions button,
  .form-actions a {
    width: 100%;
  }

  /* Responsive Table Styles */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .admin-table {
    font-size: 1.3rem;
    min-width: 800px;
  }

  .admin-table th,
  .admin-table td {
    padding: 1rem 0.8rem;
  }

  .item-thumb {
    width: 50px;
    height: 50px;
  }

  .badge {
    font-size: 1.1rem;
    padding: 0.4rem 0.8rem;
  }

  .btn-edit,
  .btn-delete {
    padding: 0.7rem 1.2rem;
    font-size: 1.2rem;
  }

  .actions {
    gap: 0.8rem;
    flex-wrap: wrap;
  }
}

/* Admin Order Action Buttons */
.order-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-paid {
  background: #3c7a48;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-paid:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 122, 72, 0.3);
}

.btn-done {
  background: #3c7a48;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-done:hover {
  background: #2e7d32;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 122, 72, 0.3);
}

.btn-cancel {
  background: #dc3545;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-cancel:hover {
  background: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Login Timestamps Section */
.login-timestamps-section {
  background: transparent;
}

.login-timestamps-section h2 {
  font-size: 3.5rem;
  color: #000000;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: left;
}

.status-badge {
  padding: 0.5rem 1.2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-block;
}

.status-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-failed {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Ensure Save / floating action buttons are visible on smaller screens
   - add common save button class fallbacks used in admin pages
   - make admin-content overflow visible on small screens to avoid clipping
*/
@media (max-width: 1024px) {
  .admin-content {
    overflow: visible;
  }

  .btn-save,
  .save-btn,
  .save-stock-btn,
  .stock-save-btn,
  .btn-save-stock,
  .floating-save {
    position: fixed !important;
    bottom: 2.4rem !important;
    right: 1.2rem !important;
    z-index: 3000 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 56px !important;
    height: auto !important;
    padding: 0.9rem 1.4rem !important;
    border-radius: 0.8rem !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18) !important;
  }

  /* if a save button is anchored to the right edge of a container with negative margin,
     make sure it is not cut off by the viewport */
  .admin-page, .admin-content, .table-wrapper {
    overflow: visible !important;
  }
}

@media (max-width: 480px) {
  .btn-save,
  .save-btn,
  .save-stock-btn,
  .stock-save-btn,
  .btn-save-stock,
  .floating-save {
    right: 0.8rem !important;
    bottom: 1.6rem !important;
    padding: 0.7rem 1rem !important;
    font-size: 1.4rem !important;
  }
}
