:root {
  --primary-color: #2e7d32;
  --primary-light: #60ad5e;
  --primary-dark: #005005;
  --secondary-color: #67a600;
  --secondary-light: #edb500;
  --secondary-dark: #c17900;
  --dark-color: #1b5e20;
  --light-color: #f1f8e9;
  --bg-color: #ffffff;
  --text-color: #333;
  --text-light: #666;
  --text-on-primary: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cal Sans', sans-serif;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  position: fixed;
}

.logo {
  font-family: 'Cal Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-color);
  z-index: 1001;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  background: var(--light-color);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-hero, .menu-hero, .contact-hero {
  min-height: 60vh;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--text-light);
}

.hero-img {
  margin-top: 3rem;
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
}

/* Buttons */
.cta-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.secondary-btn {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  margin-top: 1rem;
}

.secondary-btn:hover {
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  transform: translateY(-2px);
}

/* Sections */
section {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Intro Section */
.intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  background-color: var(--bg-color);
}

.intro-text {
  flex: 1;
  min-width: 300px;
}

.intro-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  max-width: 500px;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.intro-image img:hover {
  transform: scale(1.02);
}

/* Why Choose Us */
.why-choose-us {
  background-color: var(--light-color);
  text-align: center;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card img {
  height: 80px;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin: 1rem 0;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--text-light);
}

/* Popular Dishes */
.popular-dishes {
  background-color: var(--bg-color);
  text-align: center;
}

.dish-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.dish-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 350px;
  flex: 1;
  padding: 2rem;
  min-width: 280px;
  text-align: left;
}

.dish-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.dish-card-content {
  padding: 1.5rem;
}

.dish-card h4 {
  margin: 0.5rem 0;
  color: var(--primary-color);
}

.dish-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Farm Story */
.farm-story {
  background-color: var(--light-color);
}

.story-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.story-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.story-image img:hover {
  transform: scale(1.02);
}

/* About Page */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin: 4rem auto;
}

.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.team-section {
  text-align: center;
  margin: 6rem auto;
}

.team-section h2 {
  margin-bottom: 3rem;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.team-member {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 300px;
  flex: 1;
  min-width: 250px;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--light-color);
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-member p {
  color: var(--text-light);
}

.philosophy-section {
  text-align: center;
  margin: 6rem auto;
}

.philosophy-section h2 {
  margin-bottom: 3rem;
}

.philosophy-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.philosophy-card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 350px;
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.philosophy-card:hover {
  transform: translateY(-10px);
}

.philosophy-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.philosophy-card p {
  color: var(--text-light);
}

/* Menu Page */
.menu-section {
  background: var(--light-color);
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
}

.menu-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.nav-link {
  background: transparent;
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  background: var(--primary-color);
  color: var(--text-on-primary);
}

.search-container {
  margin-bottom: 2rem;
  text-align: center;
}

.search-container input {
  width: 100%;
  max-width: 500px;
  padding: 0.75rem 1.5rem;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
  transition: var(--transition);
}

.search-container input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.menu-item {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 350px;
  flex: 1;
  min-width: 280px;
}

.menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.menu-item-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.menu-item-title {
  color: var(--primary-color);
}

.menu-item-price {
  font-weight: 600;
  color: var(--secondary-dark);
}

.menu-item-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.category-badge {
  background: var(--light-color);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.seasonal-specials {
  text-align: center;
  margin: 6rem auto;
}

.specials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.special-card {
  background: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  max-width: 350px;
  flex: 1;
  min-width: 280px;
  text-align: left;
}

.special-card:hover {
  transform: translateY(-10px);
}

.special-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-card-content {
  padding: 1.5rem;
}

.special-card h3 {
  margin: 0.5rem 0;
  color: var(--primary-color);
}

.special-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-section {
  background: var(--light-color);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links img {
  width: 40px;
  height: 40px;
  transition: var(--transition);
}

.social-links img:hover {
  transform: translateY(-5px);
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--bg-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.map-section {
  text-align: center;
  margin: 6rem auto;
}

.map-container {
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--text-on-primary);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
  color: var(--secondary-light);
}

.footer-section p {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  opacity: 1;
  color: var(--secondary-light);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons img {
  width: 36px;
  height: 36px;
  opacity: 0.8;
  transition: var(--transition);
}

.social-icons img:hover {
  opacity: 1;
  transform: translateY(-5px);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Cart Icon and Modal */
.cart-nav {
  position: relative;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}

#cart-nav-link {
  color: #2e7d32;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(27,58,27,0.08);
  padding: 0.4rem 0.7rem;
  transition: box-shadow 0.2s;
  z-index: 1002;
}

#cart-nav-link:hover {
  box-shadow: 0 4px 16px rgba(27,58,27,0.13);
  background: #f8f9fa;
}

#cart-nav-count {
  background: #f9a825;
  color: #222;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
  padding: 0.1em 0.55em;
  margin-left: 0.3em;
  min-width: 1.5em;
  text-align: center;
  display: inline-block !important;
  position: absolute;
  top: 0.1em;
  right: -0.7em;
  box-shadow: 0 1px 4px rgba(27,58,27,0.10);
}

.order-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.order-modal.show {
  display: flex !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  section {
    padding: 4rem 2rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0px at 90% -10%);
    -webkit-clip-path: circle(0px at 90% -10%);
    transition: all 0.7s ease-out;
    pointer-events: none;
  }
  
  .nav-links.open {
    clip-path: circle(1000px at 90% -10%);
    -webkit-clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }
  
  .hamburger {
    display: block;
  }
  
  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-img {
    margin-top: 2rem;
  }
  
  .intro, .story-wrapper, .about-section, .contact-container {
    flex-direction: column;
    text-align: center;
  }
  
  .intro-text p, .story-text p, .about-content p {
    max-width: 100%;
  }
  
  .feature-card, .dish-card, .team-member, .philosophy-card, .menu-item, .special-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cta-btn, .secondary-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  section {
    padding: 3rem 1.5rem;
  }
  
  .nav-link {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Footer Styles */
.footer {
  background-color: var(--dark-color);
  color: #fff;
  position: relative;
  margin-top: 5rem;
}

.footer-wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  color: var(--dark-color);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-family: 'Cal Sans', sans-serif;
  font-size: 2rem;
  color: var(--secondary-light);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary-light);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.links-column {
  flex: 1;
  min-width: 150px;
}

.links-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-light);
  position: relative;
  padding-bottom: 0.5rem;
}

.links-column h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.links-column ul {
  list-style: none;
}

.links-column li {
  margin-bottom: 0.75rem;
}

.links-column a {
  color: #fff;
  opacity: 0.8;
  transition: var(--transition);
  font-size: 0.95rem;
}

.links-column a:hover {
  opacity: 1;
  color: var(--secondary-light);
  padding-left: 5px;
}

.contact-info i {
  width: 20px;
  margin-right: 8px;
  color: var(--secondary-color);
}

.footer-social {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-light);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: #fff;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--secondary-light);
}
.order-summary {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.order-summary.show {
  transform: translateY(0);
  opacity: 1;
}

.order-header {
  padding: 15px;
  background: var(--primary-color);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.item-count {
  font-size: 0.9rem;
}

.order-items {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.order-item:last-child {
  border-bottom: none;
}

.item-name {
  flex: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-quantity {
  flex: 1;
  text-align: center;
}

.item-price {
  flex: 1;
  text-align: right;
}

.more-items {
  text-align: center;
  padding: 5px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.order-total {
  padding: 15px;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.checkout-btn:hover {
  background: var(--primary-dark);
}

.checkout-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.view-cart-btn {
  width: 100%;
  padding: 8px;
  background: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  margin-top: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.view-cart-btn:hover {
  background: var(--light-color);
}

/* Cart Modal */
.cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h6 {
  margin: 0;
  font-size: 0.95rem;
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cart-item-total {
  font-weight: 600;
}

.cart-item-actions {
  display: flex;
  align-items: center;
}

.cart-item-actions button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.cart-item-actions .quantity {
  margin: 0 8px;
  width: 20px;
  text-align: center;
}

.cart-summary {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.summary-row.total {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
}

/* Order Type Selection */
.order-type-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.order-type-card {
  flex: 1;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.order-type-card:hover {
  border-color: var(--primary-color);
  background: rgba(46, 125, 50, 0.05);
}

.order-type-card.selected {
  border-color: var(--primary-color);
  background: rgba(46, 125, 50, 0.1);
}

.order-type-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.order-type-card h5 {
  margin: 10px 0 5px;
}

.order-type-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Table Selection */
.table-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.table-card {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.table-card:hover {
  border-color: var(--primary-color);
}

.table-card.selected {
  background: var(--primary-color);
  color: white;
}

.table-card i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 5px;
}

/* Checkout Form */
.order-info {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.order-info p {
  margin: 5px 0;
}

.payment-options {
  margin-top: 20px;
}

.payment-options h6 {
  margin-bottom: 10px;
}

.payment-options .form-check {
  margin-bottom: 10px;
}

.payment-options .form-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Confirmation Modal */
.confirmation-icon {
  text-align: center;
  margin-bottom: 20px;
}

.confirmation-icon i {
  font-size: 4rem;
  color: var(--primary-color);
}

.confirmation-modal h4 {
  text-align: center;
  margin-bottom: 10px;
}

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

.order-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.order-details p {
  margin: 5px 0;
  text-align: left;
}

/* Quantity Selector */
.quantity-selector {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.quantity-selector button {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--light-color);
  border: 1px solid #ddd;
  cursor: pointer;
}

.quantity-selector button:first-child {
  border-radius: 4px 0 0 4px;
}

.quantity-selector button:last-child {
  border-radius: 0 4px 4px 0;
}

.quantity-selector input {
  width: 40px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
}

/* Add to Cart Button */
.add-to-cart {
  width: 100%;
  padding: 8px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background: var(--primary-dark);
}

/* Menu Item Enhancements */
.menu-item {
  position: relative;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .order-summary {
    width: 250px;
  }
  
  .order-type-options {
    flex-direction: column;
  }
  
  .table-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .order-summary {
    width: 100%;
    right: 0;
    bottom: 0;
    border-radius: 10px 10px 0 0;
  }
}

/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');

/* Responsive */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
  }
  
  .links-column {
    min-width: 100%;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-legal {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

#cart-summary.order-summary {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
  width: 320px;
  max-width: 95vw;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(27,58,27,0.13);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  z-index: 1002;
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.2s;
}

#cart-summary .order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.7rem;
}

#cart-summary .order-items {
  max-height: 180px;
  overflow-y: auto;
  margin-bottom: 0.7rem;
}

#cart-summary .order-item {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.3rem;
  margin-bottom: 0.3rem;
}

#cart-summary .order-item:last-child {
  border-bottom: none;
}

#cart-summary .checkout-btn {
  width: 100%;
  background: #2e7d32;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 0;
  font-weight: 600;
  font-size: 1.08rem;
  margin-top: 0.7rem;
  transition: background 0.2s;
}

#cart-summary .checkout-btn:disabled {
  background: #bdbdbd;
  color: #fff;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  #cart-summary.order-summary {
    position: static;
    width: 100%;
    max-width: 100vw;
    margin: 1.5rem 0 0 0;
    box-shadow: 0 2px 12px rgba(27,58,27,0.08);
    border-radius: 10px;
    padding: 1rem 0.7rem 0.7rem 0.7rem;
  }
}
