* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #1e293b;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    cursor: pointer;
}

.logo span {
    color: #f57c00;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
}

.search-box {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    gap: 0.5rem;
}

.search-box input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f57c00;
}

.nav-menu a.active {
    color: #f57c00;
    font-weight: 600;
}

.cart {
    background: #2e7d32;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.cart:hover {
    background: #1b5e20;
    color: white !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Deals Section */
.deals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.deal {
    padding: 2rem;
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal.green {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
}

.deal.orange {
    background: linear-gradient(135deg, #f57c00 0%, #ef6c00 100%);
}

.tag {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
    width: fit-content;
}

.deal h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.deal p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 80%;
}

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
    transition: transform 0.2s;
}

.btn:hover {
    transform: scale(1.05);
}

.green-btn {
    background: white;
    color: #2e7d32;
}

.orange-btn {
    background: white;
    color: #f57c00;
}

.bg-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 6rem !important;
    opacity: 0.2;
}

/* AI Recommendation */
.ai-box {
    background: white;
    margin: 2rem 5%;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid #f57c00;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ai-box p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.ai-box button {
    background: #f57c00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.ai-box button:hover {
    background: #ef6c00;
}

/* Categories */
.categories {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.cat:hover {
    transform: translateY(-5px);
}

.cat span:first-child {
    font-size: 2.5rem !important;
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 50%;
    color: #2e7d32;
}

/* Food Grid */
.food-grid-section {
    padding: 2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.section-title h3 {
    font-size: 1.5rem;
}

.subtitle {
    color: #64748b;
    margin-top: 0.25rem;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.food-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    cursor: pointer;
    position: relative;
}

.food-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.food-image {
    height: 180px;
    background: #e2e8f0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.food-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f57c00;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.vendor-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(46, 125, 50, 0.9);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 1;
}

.food-content {
    padding: 1rem;
}

.food-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.food-header h4 {
    font-size: 1.1rem;
}

.food-price {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}

.food-vendor {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.food-meta {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.food-rating {
    color: #f57c00;
    font-weight: 600;
}

.order-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.order-btn:hover {
    background: #1b5e20;
}

/* Vendor Page Styles */
.vendor-header {
    background: white;
    padding: 2rem 5%;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vendor-info {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.vendor-logo {
    width: 100px;
    height: 100px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.vendor-details h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vendor-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.vendor-categories {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.cat-filter {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background: white;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s;
}

.cat-filter:hover,
.cat-filter.active {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

/* Food Detail Page */
.food-detail {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.food-detail-image {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    background: #e8f5e9;
    border-radius: 20px;
}

.food-detail-info {
    padding: 2rem;
}

.food-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vendor-link {
    color: #f57c00;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.food-detail-price {
    font-size: 2rem;
    color: #2e7d32;
    font-weight: 700;
    margin: 1rem 0;
}

.food-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.order-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.add-to-cart-btn:hover {
    background: #1b5e20;
}

/* Reviews Section */
.reviews-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 5%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.average-rating {
    font-size: 3rem;
    font-weight: 700;
    color: #f57c00;
}

.review-card {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #2e7d32;
}

.reviewer-name {
    font-weight: 600;
}

.review-date {
    color: #64748b;
    font-size: 0.85rem;
}

.review-rating {
    color: #f57c00;
    margin: 0.5rem 0;
}

.review-text {
    color: #1e293b;
    line-height: 1.6;
}

.write-review {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.write-review textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin: 1rem 0;
    resize: vertical;
}

.submit-review {
    background: #f57c00;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

/* Cart Page */
.cart-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cart-items {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-item-details h4 {
    margin-bottom: 0.25rem;
}

.cart-item-vendor {
    color: #64748b;
    font-size: 0.85rem;
}

.cart-item-price {
    color: #2e7d32;
    font-weight: 600;
    margin-top: 0.5rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
}

.remove-item {
    color: #dc2626;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
}

.cart-summary {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2e7d32;
    margin: 1rem 0;
}

.checkout-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #1b5e20;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: #64748b;
    text-decoration: none;
}

/* Orders Page */
.orders-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
}

.order-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.order-tab {
    padding: 0.5rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: color 0.3s;
}

.order-tab.active {
    color: #2e7d32;
    border-bottom: 2px solid #2e7d32;
}

.order-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.order-id {
    font-weight: 600;
    color: #2e7d32;
}

.order-status {
    padding: 0.25rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-delivered {
    background: #e8f5e9;
    color: #2e7d32;
}

.status-processing {
    background: #fff3e0;
    color: #f57c00;
}

.status-cancelled {
    background: #fee2e2;
    color: #dc2626;
}

.order-items {
    margin-bottom: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.order-total {
    font-weight: 700;
    margin-top: 0.5rem;
    text-align: right;
}

.order-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.order-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
}

.order-btn:hover {
    background: #2e7d32;
    color: white;
    border-color: #2e7d32;
}

/* Checkout Page */
.checkout-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-section {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.checkout-section h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.address-card {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.address-card:hover,
.address-card.selected {
    border-color: #2e7d32;
    background: #e8f5e9;
}

.address-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.address-details {
    color: #64748b;
    font-size: 0.9rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.payment-method.selected {
    border-color: #2e7d32;
    background: #e8f5e9;
}

.payment-method input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #2e7d32;
}

.place-order-btn {
    width: 100%;
    background: #2e7d32;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.place-order-btn:hover {
    background: #1b5e20;
}

/* Profile Page */
.profile-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
}

.profile-sidebar {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: fit-content;
}

.profile-avatar {
    text-align: center;
    margin-bottom: 1.5rem;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.profile-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-email {
    color: #64748b;
    font-size: 0.85rem;
}

.profile-menu {
    list-style: none;
    margin-top: 1rem;
}

.profile-menu li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
}

.profile-menu li:hover,
.profile-menu li.active {
    background: #e8f5e9;
    color: #2e7d32;
}

.profile-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #64748b;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
}

.save-btn {
    background: #2e7d32;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}
/* WHY */
.why {
  padding: 80px 40px;
  text-align: center;
}

.why-header h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.why-subtitle {
  font-size: 15px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto 60px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  text-align: center;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-icon.green {
  background: #22c55e;
}

.why-icon.orange {
  background: #f97316;
}

.why-icon span {
  font-size: 30px;
  color: #fff !important;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  max-width: 280px;
  margin: 0 auto;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 5% 1rem;
    margin-top: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h2 {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-stores button {
    background: #334155;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.app-stores button:hover {
    background: #475569;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2e7d32;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
@media (max-width: 768px) {
  .why {
    padding: 50px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .deal h2 {
        font-size: 1.5rem;
    }

    .deal p {
        max-width: 100%;
    }

    .food-detail {
        grid-template-columns: 1fr;
    }

    .cart-page,
    .checkout-page,
    .profile-page {
        grid-template-columns: 1fr;
    }

    .vendor-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vendor-logo {
        margin: 0 auto;
    }

    .vendor-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-box {
        order: 3;
        max-width: 100%;
    }

    .location {
        font-size: 0.85rem;
    }

    .reviews-header {
        flex-direction: column;
        gap: 1rem;
    }

    .rating-summary {
        flex-direction: column;
        text-align: center;
    }
}