/* AUTH MODAL (LOGIN/SIGNUP) */
.auth-modal {
  max-width: 350px;
  margin: 60px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 30px 25px 20px 25px;
  position: relative;
  min-width: 0;
}
.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
}
.auth-tabs .tab-btn {
  flex: 1;
  border: none;
  background: #f5f5f5;
  color: var(--text-color);
  font-weight: 600;
  padding: 12px 0;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background 0.2s;
}
.auth-tabs .tab-btn.active {
  background: var(--primary-color);
  color: #fff;
}
.auth-modal h2 {
  text-align: center;
  margin-bottom: 18px;
  color: var(--primary-color);
}
.auth-modal .form-group {
  margin-bottom: 15px;
}
.auth-modal label {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
  display: block;
}
.auth-modal input[type="text"],
.auth-modal input[type="email"],
.auth-modal input[type="password"],
.auth-modal input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  margin-top: 2px;
}
.auth-modal .btn {
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .auth-modal {
    padding: 18px 5px 10px 5px;
    max-width: 98vw;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b35;
  --secondary-color: #f7931e;
  --dark-color: #1a1a1a;
  --light-color: #f5f5f5;
  --text-color: #333;
  --border-color: #ddd;
  --success-color: #4caf50;
  --danger-color: #e74c3c;
  --info-color: #3498db;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: #fafafa;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

/* NAVBAR */
.navbar {
  background-color: white;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  max-width: 1200px;
  margin:auto;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width:290px;
}

.logo-icon {
  font-size: 32px;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
}

.tagline {
  font-size: 11px;
  color: #666;
  margin-left: 1px;
  display:flex;
}

.nav-menu {
  display: flex;
  gap: 20px;
  padding-left: 10%;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-size: medium;
}

.nav-link:hover {
  color: var(--primary-color);
}

.cart-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 16px 16px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.cart-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.cart-count {
  background-color: white;
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 12px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  display: flex;  /*edited*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://tripxl.com/blog/wp-content/uploads/2024/11/R.S.-Puram-Market.jpg') ;
  opacity: 0.9;
  height:auto;
  width: auto;
  background-color: #adaaaa;
}

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

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

.btn-primary {
  background-color: #ff6b35;
  color:white;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-success {
  background-color: var(--success-color);
  color: white;
}

.btn-success:hover {
  background-color: #45a049;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary-outline {
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: transparent;
}

.search-box {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
  background: white;
  padding: 5px;
  border-radius: 30px;
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.search-btn {
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: var(--secondary-color);
}

/* ABOUT SECTION */
.about-section {
  background-color: white;
  padding: 60px 20px;
  margin: 40px 0;
}

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

.about-section h2 {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--dark-color);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.mission-card {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary-color);
}

.mission-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}

.mission-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 13px;
  color: #666;
}

/* FILTER SECTION */
.filter-section {
  background-color: white;
  padding: 25px;
  margin: 30px 0;
  box-shadow: var(--shadow);
}

.filter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-color);
}

.filter-group select {
  padding: 10px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.filter-group select:hover,
.filter-group select:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* HOTELS SECTION */
.hotels-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.hotels-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.section-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 15px;
}

.hotels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
} 

.hotel-card {
  background: rgb(251, 251, 251);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}

.hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.hotel-image {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  overflow: hidden;
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hotel-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.modal-hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-info {
  padding: 18px;
}

.hotel-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--dark-color);
}

.hotel-location {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.hotel-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.stars {
  color: #ffc107;
  font-size: 14px;
}

.rating-text {
  font-size: 12px;
  color: #666;
}

.hotel-details {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
}

.hotel-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
}

.hotel-actions {
  display: flex;
  gap: 10px;
}

.hotel-actions button {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
  font-size: 13px;
}

.view-menu-btn {
  background-color: var(--primary-color);
  color: white;
}

.view-menu-btn:hover {
  background-color: var(--secondary-color);
}

.book-table-btn {
  background-color: var(--info-color);
  color: white;
}

.book-table-btn:hover {
  background-color: #2980b9;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s;
  overflow-y: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #999;
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--text-color);
}

.modal-header {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
}

.hotel-header-info h2 {
  color: var(--dark-color);
  margin-bottom: 5px;
  font-size: 24px;
}

.hotel-header-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.hotel-rating-detail {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
}

.hotel-rating-detail span {
  background: var(--light-color);
  padding: 6px 12px;
  border-radius: 6px;
}

/* MENU TABS */
.menu-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-weight: 600;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
  white-space: nowrap;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.tab-btn:hover {
  color: var(--primary-color);
}

/* MENU GRID */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 15px;
}

.menu-item {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}

.menu-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-item-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--dark-color);
  font-size: 15px;
}

.menu-item-desc {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.menu-item-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
}

.add-to-cart-btn {
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.add-to-cart-btn:hover {
  background-color: var(--secondary-color);
}

/* CART SIDEBAR */
.cart-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 400px;
  height: 100vh;
  background-color: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 150;
  transition: right 0.3s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cart-sidebar.active {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid var(--border-color);
  background-color: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.close-cart {
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.3s;
}

.close-cart:hover {
  transform: scale(1.2);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.muted {
  color: #999;
  text-align: center;
  padding: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--light-color);
}

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

.cart-item-name {
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.cart-item-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 14px;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  padding: 4px 8px;
  border-radius: 4px;
  margin: 0 10px;
}

.quantity-control button {
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  font-weight: bold;
}

.quantity-control button:hover {
  background: var(--secondary-color);
}

.remove-item-btn {
  background-color: var(--danger-color);
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s;
}

.remove-item-btn:hover {
  background-color: #c0392b;
}

.cart-footer {
  padding: 20px;
  border-top: 2px solid var(--border-color);
  background-color: var(--light-color);
}

.cart-summary {
  margin-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-row.total {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color);
  border-top: 1px solid var(--border-color);
  padding-top: 8px;
}

.checkout-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--success-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.checkout-btn:hover {
  background-color: #45a049;
}

.clear-cart-btn {
  width: 100%;
  padding: 10px;
  background-color: #ff9800;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.clear-cart-btn:hover {
  background-color: #e68900;
}

/* CHECKOUT MODAL */
.checkout-modal {
  max-width: 500px;
  width: 90%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(255, 107, 53, 0.2);
}

.checkout-total {
  background-color: var(--light-color);
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

.place-order-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--success-color);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
}

.place-order-btn:hover {
  background-color: #45a049;
}

/* DONATION SECTION */
.donate-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.1));
  padding: 60px 20px;
  margin: 40px 0;
}

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

.donate-header {
  text-align: center;
  margin-bottom: 40px;
}

.donate-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.donate-header p {
  font-size: 16px;
  color: #666;
}

.donate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  margin-bottom: 15px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 10px;
}

.info-card h4 {
  color: var(--primary-color);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: #666;
}

.donate-form {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.donate-form h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.donation-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.donation-item-btn {
  padding: 10px;
  border: 2px solid var(--border-color);
  background: white;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-size: 13px;
}

.donation-item-btn:hover {
  border-color: var(--primary-color);
}

.donation-item-btn.selected {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.donation-summary {
  background: var(--light-color);
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.donation-summary p {
  margin-bottom: 8px;
  font-size: 14px;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button-group .btn {
  flex: 1;
}

/* CONFIRMATION MODAL */
.confirmation-modal {
  text-align: center;
  max-width: 500px;
}

.confirmation-icon {
  font-size: 80px;
  margin-bottom: 20px;
  animation: pulse 0.6s;
}

@keyframes pulse {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.confirmation-modal h2 {
  color: var(--success-color);
  margin-bottom: 10px;
  font-size: 24px;
}

.order-details {
  background-color: var(--light-color);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

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

.donation-message-box {
  background: white;
  border: 2px solid var(--primary-color);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: left;
  max-height: 300px;
  overflow-y: auto;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ORDERS SECTION */
.orders-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.orders-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.orders-list {
  display: grid;
  gap: 20px;
}

.order-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.order-id {
  font-weight: bold;
  color: var(--dark-color);
  font-size: 15px;
}

.order-status {
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
}

.order-status.pending {
  background-color: #fff3cd;
  color: #856404;
}

.order-status.completed {
  background-color: #d4edda;
  color: #155724;
}

.order-items {
  margin-bottom: 15px;
}

.order-item {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 13px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
}

.order-total {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 16px;
}

/* TRACK ORDER SECTION */
.track-section {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
  padding: 60px 20px;
  margin: 40px 0;
}

.track-container {
  max-width: 1000px;
  margin: 0 auto;
}

.track-section h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 10px;
  text-align: center;
}

.track-search {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.track-search input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.track-search input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.track-result {
  margin: 30px 0;
}

.track-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.track-order-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.track-order-id {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.track-hotel-name {
  font-size: 13px;
  opacity: 0.85;
}

.track-status-badge {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.track-status-badge .status-label {
  font-size: 11px;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.track-status-badge .status-value {
  font-size: 16px;
  font-weight: bold;
}

.track-time {
  text-align: right;
  font-size: 12px;
  opacity: 0.9;
}

.track-time-label {
  display: block;
  opacity: 0.7;
  margin-bottom: 3px;
}

.track-body {
  padding: 30px;
}

.track-progress {
  margin-bottom: 30px;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: -1;
}

.progress-step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  transition: all 0.3s;
  position: relative;
}

.progress-step.completed .step-circle {
  background: var(--success-color);
  border-color: var(--success-color);
  color: white;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.progress-step.active .step-circle {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
}

.progress-step.pending .step-circle {
  background: white;
  border-color: var(--border-color);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.step-time {
  font-size: 11px;
  color: #999;
}

.track-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.detail-group h4 {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-label {
  color: #666;
}

.detail-value {
  font-weight: 600;
  color: var(--dark-color);
}

.track-items {
  background: var(--light-color);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.track-items h4 {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.track-item-list {
  display: grid;
  gap: 10px;
}

.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  font-size: 14px;
}

.track-item-name {
  font-weight: 600;
  color: var(--dark-color);
}

.track-item-qty {
  color: #666;
  font-size: 13px;
}

.track-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.track-footer {
  background: var(--light-color);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-footer-left {
  font-size: 14px;
}

.track-total {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.track-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.track-actions button {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.track-actions button:hover {
  background: var(--primary-color);
  color: white;
}

.active-orders-list {
  margin-top: 40px;
}

.active-orders-list h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.active-order-card {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active-order-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.active-order-info {
  flex: 1;
}

.active-order-id {
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.active-order-hotel {
  font-size: 13px;
  color: #666;
}

.active-order-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49%, 100% {
    opacity: 1;
  }
  50%, 99% {
    opacity: 0.5;
  }
}

.no-orders-message {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.no-orders-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

/* Add these styles to your existing CSS */

/* TRACK ORDER SECTION */
.track-section {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
  padding: 60px 20px;
  margin: 40px 0;
}

.track-container {
  max-width: 1000px;
  margin: 0 auto;
}

.track-section h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 10px;
  text-align: center;
}

.track-search {
  display: flex;
  gap: 10px;
  margin: 30px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.track-search input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.track-search input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.track-result {
  margin: 30px 0;
}

.track-card {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: slideIn 0.4s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.track-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.track-order-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.track-order-id {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.track-hotel-name {
  font-size: 13px;
  opacity: 0.85;
}

.track-status-badge {
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.track-status-badge .status-label {
  font-size: 11px;
  opacity: 0.8;
  display: block;
  margin-bottom: 5px;
}

.track-status-badge .status-value {
  font-size: 16px;
  font-weight: bold;
}

.track-time {
  text-align: right;
  font-size: 12px;
  opacity: 0.9;
}

.track-time-label {
  display: block;
  opacity: 0.7;
  margin-bottom: 3px;
}

.track-body {
  padding: 30px;
}

.track-progress {
  margin-bottom: 30px;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  position: relative;
}

.progress-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-color);
  z-index: -1;
}

.progress-step {
  text-align: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
  transition: all 0.3s;
  position: relative;
}

.progress-step.completed .step-circle {
  background: var(--success-color);
  border-color: var(--success-color);
  color: white;
  box-shadow: 0 0 15px rgba(76, 175, 80, 0.3);
}

.progress-step.active .step-circle {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  }
}

.progress-step.pending .step-circle {
  background: white;
  border-color: var(--border-color);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.step-time {
  font-size: 11px;
  color: #999;
}

.track-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.detail-group h4 {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.detail-label {
  color: #666;
}

.detail-value {
  font-weight: 600;
  color: var(--dark-color);
}

.track-items {
  background: var(--light-color);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.track-items h4 {
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.track-item-list {
  display: grid;
  gap: 10px;
}

.track-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
  font-size: 14px;
}

.track-item-name {
  font-weight: 600;
  color: var(--dark-color);
}

.track-item-qty {
  color: #666;
  font-size: 13px;
}

.track-item-price {
  font-weight: 600;
  color: var(--primary-color);
}

.track-footer {
  background: var(--light-color);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.track-footer-left {
  font-size: 14px;
}

.track-total {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.track-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.track-actions button {
  flex: 1;
  padding: 10px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.track-actions button:hover {
  background: var(--primary-color);
  color: white;
}

.active-orders-list {
  margin-top: 40px;
}

.active-orders-list h3 {
  color: var(--dark-color);
  margin-bottom: 20px;
  font-size: 18px;
}

.active-order-card {
  background: white;
  padding: 15px 20px;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.active-order-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.active-order-info {
  flex: 1;
}

.active-order-id {
  font-weight: bold;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.active-order-hotel {
  font-size: 13px;
  color: #666;
}

.active-order-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 49%, 100% {
    opacity: 1;
  }
  50%, 99% {
    opacity: 0.5;
  }
}

.no-orders-message {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.no-orders-icon {
  font-size: 60px;
  margin-bottom: 15px;
}

/* Confirmation Actions */
.confirmation-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.confirmation-actions .btn {
  flex: 1;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: white;
  padding: 50px 20px 30px;
  margin-top: 80px;
  border-top: 3px solid var(--primary-color);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  margin-bottom: 18px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #bbb;
  margin-bottom: 8px;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li {
  margin: 0;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-section ul li a:before {
  content: '→';
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  padding-left: 8px;
}

.footer-section ul li a:hover:before {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  font-size: 13px;
  color: #888;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* RESPONSIVE DESIGN - TABLET (768px and below) */
@media (max-width: 768px) {
  /* NAVBAR */
  .nav-container {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 15px;
  }

  .logo-text {
    font-size: 18px;
  }

  .tagline {
    display: none;
  }

  .nav-menu {
    display: none;
  }

  .cart-btn {
    padding: 8px 15px;
    font-size: 13px;
  }

  /* HERO */
  .hero {
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .search-box {
    flex-direction: column;
    max-width: 100%;
  }

  .search-box input,
  .search-btn {
    width: 100%;
  }

  /* ABOUT */
  .about-content {
    grid-template-columns: 1fr;
  }

  .mission-cards {
    grid-template-columns: 1fr;
  }

  .about-section h2 {
    font-size: 28px;
  }

  /* FILTER */
  .filter-container {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filter-group select {
    width: 100%;
  }

  /* HOTELS GRID */
  .hotels-section h2 {
    font-size: 24px;
  }

  .hotels-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hotel-card {
    max-width: 100%;
  }

  .hotel-image {
    height: 150px;
    font-size: 50px;
  }

  /* MODAL */
  .modal-content {
    width: 95%;
    max-height: 90vh;
    padding: 20px;
  }

  .close-btn {
    right: 15px;
    top: 15px;
    font-size: 24px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .menu-item {
    padding: 12px;
  }

  .menu-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  /* CART SIDEBAR */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-header {
    padding: 15px;
  }

  .cart-header h3 {
    font-size: 16px;
  }

  .cart-items {
    max-height: 300px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* CHECKOUT */
  .checkout-modal {
    max-width: 95%;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 16px;
  }

  /* DONATE SECTION */
  .donate-section {
    padding: 40px 20px;
  }

  .donate-header h2 {
    font-size: 28px;
  }

  .donate-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .donate-form {
    padding: 20px;
  }

  .donate-form h3 {
    font-size: 18px;
  }

  .donation-items {
    grid-template-columns: 1fr;
  }

  .donation-item-btn {
    padding: 12px;
    font-size: 12px;
  }

  .button-group {
    flex-direction: column;
  }

  .button-group .btn {
    width: 100%;
  }

  /* TRACK ORDER */
  .track-section {
    padding: 40px 20px;
  }

  .track-section h2 {
    font-size: 28px;
  }

  .track-search {
    flex-direction: column;
    gap: 10px;
  }

  .track-search input,
  .track-search button {
    width: 100%;
  }

  .track-header {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .track-status-badge,
  .track-time {
    text-align: center;
  }

  .progress-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .progress-steps::before {
    content: none;
  }

  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .step-label {
    font-size: 12px;
  }

  .step-time {
    font-size: 10px;
  }

  .track-details {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .track-body {
    padding: 20px;
  }

  .track-footer {
    flex-direction: column;
    gap: 15px;
  }

  .track-actions {
    flex-direction: column;
  }

  .track-actions button {
    width: 100%;
  }

  .active-order-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .active-order-status {
    margin-top: 10px;
    width: 100%;
  }

  /* ORDERS SECTION */
  .orders-section h2 {
    font-size: 24px;
  }

  .order-card {
    padding: 15px;
  }

  /* FOOTER */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .footer-section h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-section p {
    font-size: 12px;
  }

  .footer-section ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    font-size: 11px;
    padding: 20px 15px;
  }
}

/* RESPONSIVE DESIGN - MOBILE (480px and below) */
@media (max-width: 480px) {
  /* GLOBAL */
  body {
    font-size: 14px;
  }

  /* NAVBAR */
  .nav-container {
    height: auto;
    padding: 8px 12px;
  }

  .logo {
    gap: 8px;
  }

  .logo-icon {
    font-size: 24px;
  }

  .logo-text {
    font-size: 16px;
  }

  .cart-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .cart-count {
    padding: 1px 5px;
    font-size: 10px;
  }

  /* HERO */
  .hero {
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .cta-buttons {
    gap: 8px;
    margin-bottom: 20px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .search-box {
    gap: 6px;
    padding: 4px;
  }

  .search-box input {
    padding: 10px 12px;
    font-size: 12px;
  }

  .search-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  /* ABOUT */
  .about-section {
    padding: 40px 15px;
    margin: 20px 0;
  }

  .about-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .about-text h3,
  .about-mission h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .about-text p {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .mission-card {
    padding: 15px;
  }

  .mission-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .mission-card h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .mission-card p {
    font-size: 11px;
  }

  /* FILTER */
  .filter-section {
    padding: 15px;
    margin: 15px 0;
  }

  .filter-container {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
  }

  .filter-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .filter-group select {
    padding: 8px 10px;
    font-size: 12px;
  }

  /* HOTELS */
  .hotels-section {
    margin: 30px 15px;
    padding: 0;
  }

  .hotels-section h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .section-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .hotels-grid {
    gap: 12px;
  }

  .hotel-image {
    height: 120px;
    font-size: 40px;
  }

  .hotel-info {
    padding: 12px;
  }

  .hotel-name {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .hotel-location {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .hotel-rating {
    font-size: 11px;
    gap: 6px;
    margin-bottom: 6px;
  }

  .stars {
    font-size: 11px;
  }

  .hotel-details {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .hotel-price {
    font-size: 12px;
  }

  .hotel-actions {
    gap: 6px;
  }

  .hotel-actions button {
    padding: 6px;
    font-size: 11px;
  }

  /* MODAL */
  .modal-content {
    width: 100%;
    max-height: 95vh;
    padding: 15px;
    border-radius: 8px;
  }

  .modal-header {
    margin-bottom: 15px;
    padding-bottom: 12px;
  }

  .hotel-header-info h2 {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .hotel-header-info p {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .hotel-rating-detail {
    gap: 8px;
  }

  .hotel-rating-detail span {
    padding: 4px 8px;
    font-size: 11px;
  }

  .menu-tabs {
    gap: 5px;
    margin-bottom: 12px;
  }

  .tab-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .menu-grid {
    gap: 10px;
  }

  .menu-item {
    padding: 10px;
  }

  .menu-item-name {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .menu-item-desc {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .menu-item-price {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .add-to-cart-btn {
    padding: 6px;
    font-size: 11px;
  }

  /* CART */
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .cart-header {
    padding: 12px;
    height: auto;
  }

  .cart-header h3 {
    font-size: 14px;
  }

  .close-cart {
    font-size: 20px;
  }

  .cart-items {
    padding: 10px;
    max-height: 250px;
  }

  .cart-item {
    padding: 8px;
    margin-bottom: 8px;
    font-size: 12px;
  }

  .cart-item-name {
    font-size: 12px;
  }

  .cart-item-price {
    font-size: 12px;
  }

  .quantity-control {
    gap: 5px;
    padding: 3px 5px;
  }

  .quantity-control button {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .remove-item-btn {
    padding: 4px 8px;
    font-size: 10px;
  }

  .cart-footer {
    padding: 12px;
  }

  .cart-summary {
    margin-bottom: 10px;
  }

  .summary-row {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .checkout-btn,
  .clear-cart-btn {
    padding: 10px;
    font-size: 12px;
  }

  /* CHECKOUT */
  .checkout-modal {
    max-width: 100%;
  }

  .checkout-modal h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
  }

  .checkout-total {
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
  }

  .place-order-btn {
    padding: 10px;
    font-size: 13px;
  }

  /* CONFIRMATION */
  .confirmation-modal {
    max-width: 100%;
  }

  .confirmation-icon {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .confirmation-modal h2 {
    font-size: 18px;
  }

  .order-details {
    padding: 12px;
    margin: 12px 0;
    font-size: 12px;
  }

  .order-detail-row {
    margin-bottom: 8px;
    padding: 6px 0;
    font-size: 12px;
  }

  .confirmation-actions {
    flex-direction: column;
  }

  .confirmation-actions .btn {
    width: 100%;
    font-size: 12px;
  }

  /* DONATE */
  .donate-section {
    padding: 30px 15px;
    margin: 30px 0;
  }

  .donate-header h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .donate-header p {
    font-size: 12px;
  }

  .donate-content {
    gap: 20px;
  }

  .info-card {
    padding: 15px;
    margin-bottom: 12px;
  }

  .info-icon {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .info-card h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .info-card p {
    font-size: 11px;
  }

  .donate-form {
    padding: 15px;
  }

  .donate-form h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .donation-items {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .donation-item-btn {
    padding: 10px;
    font-size: 11px;
  }

  .donation-summary {
    padding: 10px;
    font-size: 12px;
  }

  .donation-summary p {
    margin-bottom: 6px;
  }

  .donate-form button {
    font-size: 12px;
  }

  /* TRACK */
  .track-section {
    padding: 30px 15px;
  }

  .track-section h2 {
    font-size: 20px;
  }

  .track-search {
    gap: 8px;
    margin: 20px 0;
  }

  .track-search input,
  .track-search button {
    padding: 10px;
    font-size: 12px;
  }

  .track-card {
    border-radius: 10px;
  }

  .track-header {
    padding: 15px;
    gap: 12px;
  }

  .track-order-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .track-order-id,
  .track-hotel-name {
    font-size: 11px;
  }

  .track-status-badge {
    padding: 10px 15px;
  }

  .track-status-badge .status-label {
    font-size: 10px;
  }

  .track-status-badge .status-value {
    font-size: 14px;
  }

  .track-time {
    font-size: 10px;
  }

  .track-body {
    padding: 15px;
  }

  .track-progress {
    margin-bottom: 20px;
  }

  .progress-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 16px;
    margin: 0 auto 8px;
  }

  .step-label {
    font-size: 11px;
  }

  .step-time {
    font-size: 9px;
  }

  .track-details {
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .detail-group h4 {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .detail-row {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .track-items {
    padding: 10px;
    margin-bottom: 12px;
  }

  .track-items h4 {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .track-item {
    padding: 8px;
    font-size: 12px;
  }

  .track-item-name {
    font-size: 12px;
  }

  .track-item-qty,
  .track-item-price {
    font-size: 11px;
  }

  .track-footer {
    padding: 12px;
    font-size: 11px;
    flex-direction: column;
    gap: 10px;
  }

  .track-total {
    font-size: 15px;
  }

  .track-actions {
    flex-direction: column;
    gap: 8px;
  }

  .track-actions button {
    padding: 10px;
    font-size: 11px;
  }

  .active-orders-list h3 {
    font-size: 16px;
  }

  .active-order-card {
    padding: 12px;
    margin-bottom: 10px;
  }

  .active-order-id {
    font-size: 13px;
  }

  .active-order-hotel {
    font-size: 10px;
  }

  /* ORDERS */
  .orders-section {
    margin: 30px 15px;
    padding: 0;
  }

  .orders-section h2 {
    font-size: 20px;
  }

  .order-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .order-header {
    margin-bottom: 10px;
    padding-bottom: 8px;
    gap: 10px;
  }

  .order-id {
    font-size: 12px;
  }

  .order-status {
    padding: 4px 10px;
    font-size: 10px;
  }

  .order-items {
    margin-bottom: 10px;
  }

  .order-item {
    padding: 6px 0;
    font-size: 11px;
  }

  .order-footer {
    font-size: 11px;
    gap: 10px;
  }

  .order-total {
    font-size: 14px;
  }

  .no-orders-message {
    padding: 30px 15px;
  }

  .no-orders-icon {
    font-size: 50px;
    margin-bottom: 12px;
  }

  /* FOOTER */
  .footer {
    padding: 30px 15px 20px;
    margin-top: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 25px;
    padding: 0;
  }

  .footer-section h4 {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer-section p {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .footer-section ul li a {
    font-size: 11px;
  }

  .footer-bottom {
    font-size: 10px;
    padding: 15px 10px;
    margin: 0 auto;
  }

  /* GENERAL */
  .modal {
    padding: 10px;
  }

  .btn {
    border-radius: 6px;
  }

  .btn-primary,
  .btn-secondary {
    font-size: 12px;
  }
}

/* ====== REVIEWS STYLES ====== */
.reviews-section {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.reviews-section h3 {
  color: var(--text-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.review-item {
  background: white;
  padding: 15px;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.review-header strong {
  color: var(--text-color);
  font-size: 14px;
}

.review-rating {
  font-size: 14px;
  color: var(--secondary-color);
}

.review-comment {
  color: #666;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.review-date {
  color: #999;
  font-size: 11px;
}

/* ====== NEW ENHANCEMENT STYLES ====== */

/* NAVBAR ENHANCEMENTS */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.loyalty-display {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 8px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
}

.notification-btn {
  position: relative;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
}

.notification-btn:hover {
  transform: scale(1.1);
}

.notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger-color);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* FAVORITES & QUICK REORDER */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 18px;
}

.fav-btn:hover {
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.fav-btn.favorited {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.quick-reorder-section {
  background: linear-gradient(135deg, #fff5f5, #fffafa);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: var(--shadow);
}

.quick-reorder-section h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 18px;
}

.quick-reorder-list {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 0;
}

.quick-reorder-item {
  background: white;
  border-radius: 8px;
  padding: 15px;
  min-width: 250px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.reorder-info {
  flex: 1;
}

.reorder-hotel {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.reorder-items {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.reorder-date {
  font-size: 11px;
  color: #999;
}

.btn-reorder {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
  white-space: nowrap;
}

.btn-reorder:hover {
  background: #ff5a24;
}

/* PROMO CODE SECTION */
.promo-section {
  background: #f0f8ff;
  border: 2px dashed var(--info-color);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
}

.promo-section label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--info-color);
}

.promo-input-group {
  display: flex;
  gap: 10px;
}

.btn-apply-promo {
  flex: 1;
  background: var(--info-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-apply-promo:hover {
  background: #2a7bc0;
}

.btn-remove-promo {
  background: var(--danger-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-remove-promo:hover {
  background: #c0392b;
}

.applied-promo {
  background: #e8f5e9;
  border: 1px solid var(--success-color);
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  color: var(--success-color);
  font-weight: 600;
}

/* CHECKOUT TOTAL ENHANCEMENTS */
.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

.total-row.total {
  border-bottom: none;
  border-top: 2px solid var(--primary-color);
  padding-top: 12px;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
}

#promoDiscountRow {
  color: var(--success-color);
}

#promoDiscountRow span:last-child {
  color: var(--success-color);
  font-weight: 600;
}

/* HOTEL CARD ENHANCEMENTS */
.hotel-card {
  position: relative;
}

.hotel-card .fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}


@media (max-width: 768px) {
  .nav-right {
    flex-direction: column;
    gap: 10px;
  }

  .quick-reorder-list {
    flex-wrap: wrap;
  }

  .quick-reorder-item {
    min-width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-reorder {
    width: 100%;
  }

  .promo-input-group {
    flex-direction: column;
  }

  .btn-apply-promo,
  .btn-remove-promo {
    width: 100%;
  }
}
