/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
}

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

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.navbar.scrolled {
  border-bottom-color: #e5e5e5;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1a1a1a;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  padding: 10px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid #1a1a1a;
  font-family: 'Inter', sans-serif;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
}

.btn-outline:hover {
  background: #f5f5f5;
}

.btn-filled {
  background: #1a1a1a;
  color: #fff;
}

.btn-filled:hover {
  background: #333;
}

.btn-primary {
  background: #e85d04;
  color: #fff;
  border-color: #e85d04;
}

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

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

.btn-signup {
  padding: 10px 24px;
  border: 1.5px solid #1a1a1a;
  border-radius: 24px;
  background: transparent;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-signup:hover {
  background: #f5f5f5;
}

.btn-login {
  padding: 10px 24px;
  border: 1.5px solid #1a1a1a;
  border-radius: 24px;
  background: #1a1a1a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-login:hover {
  background: #333;
}

/* User menu (shown when logged in) */
.user-menu {
  display: none;
  align-items: center;
  gap: 12px;
}

.user-menu.active {
  display: flex;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e85d04;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  margin: 0 48px;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('/images/main.jpg') bottom/cover no-repeat;
  border-radius: 24px;
  padding: 64px 48px 48px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.hero p {
  font-size: 16px;
  color: #e0e0e0;
  margin-bottom: 36px;
}

/* ===== SEARCH BAR ===== */
.search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.search-field {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid #e5e5e5;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  text-align: left;
}

.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 13px;
  color: #999;
  font-family: 'Inter', sans-serif;
  width: 100%;
  background: transparent;
}

.search-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 12px;
  transition: all 0.2s;
}

.search-btn:hover {
  background: #1a1a1a;
}

.search-btn:hover .arrow-icon {
  stroke: #fff;
}

.arrow-icon {
  stroke: #1a1a1a;
  stroke-width: 2;
  fill: none;
}

/* ===== SECTIONS ===== */
.section {
  padding: 48px 48px 0;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
}

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

.section-header .section-title {
  margin-bottom: 0;
}

/* ===== CATEGORY / DESTINATIONS GRID ===== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 160px 120px;
  gap: 16px;
}

.dest-card {
  background: #d9d9d9;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.dest-card:hover {
  transform: scale(1.02);
}

.dest-card.tall {
  grid-row: span 2;
}

.dest-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}

.dest-label.top {
  bottom: auto;
  top: 12px;
  right: 12px;
  left: auto;
}

/* ===== CATEGORY COLOR GRADIENTS ===== */
.deal-img[data-category="Restaurants"],
.detail-img-placeholder[data-category="Restaurants"] {
  background: linear-gradient(135deg, #ff8c42 0%, #e85d04 100%);
}
.deal-img[data-category="Coffee"],
.detail-img-placeholder[data-category="Coffee"] {
  background: linear-gradient(135deg, #a67c52 0%, #6f4e37 100%);
}
.deal-img[data-category="Desserts"],
.detail-img-placeholder[data-category="Desserts"] {
  background: linear-gradient(135deg, #f9a8d4 0%, #db2777 100%);
}
.deal-img[data-category="Retail"],
.detail-img-placeholder[data-category="Retail"] {
  background: linear-gradient(135deg, #c4b5fd 0%, #7c3aed 100%);
}
.deal-img[data-category="Entertainment"],
.detail-img-placeholder[data-category="Entertainment"] {
  background: linear-gradient(135deg, #67e8f9 0%, #0284c7 100%);
}

.deal-img-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  z-index: 1;
}

.deal-img .deal-rating,
.deal-img .deal-fav,
.deal-img .deal-initial,
.detail-img-placeholder .deal-rating,
.detail-img-placeholder .deal-initial {
  z-index: 2;
}

.deal-initial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 52px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ===== FREEBIE / DEAL CARDS ===== */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.deal-card {
  cursor: pointer;
  transition: transform 0.2s;
}

.deal-card:hover {
  transform: translateY(-4px);
}

.deal-img {
  width: 100%;
  height: 180px;
  background: #d9d9d9;
  border-radius: 16px;
  position: relative;
  margin-bottom: 12px;
}

.deal-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
}

.deal-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.deal-fav:hover {
  background: #fff;
  transform: scale(1.1);
}

.deal-fav.saved svg {
  fill: #e85d04;
  stroke: #e85d04;
}

.deal-fav svg {
  width: 14px;
  height: 14px;
}

.deal-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.deal-location {
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.deal-freebie {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-freebie span {
  font-size: 14px;
  font-weight: 700;
  color: #e85d04;
}

.deal-freebie .arrow {
  font-size: 16px;
  color: #1a1a1a;
}

.deal-category-tag {
  display: inline-block;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #666;
  margin-bottom: 6px;
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
}

.modal h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal p {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #f0f0f0;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #1a1a1a;
}

.modal .btn {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 15px;
}

.modal-switch {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

.modal-switch a {
  color: #e85d04;
  font-weight: 600;
  cursor: pointer;
}

.modal-switch a:hover {
  text-decoration: underline;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: slideIn 0.3s ease, fadeOut 0.3s ease 2.7s;
  max-width: 320px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

/* ===== FOOTER ===== */
.footer {
  margin-top: 64px;
  background: #1a1a1a;
  color: #fff;
  padding: 56px 48px 32px;
  border-radius: 24px 24px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  font-size: 22px;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

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

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  color: #999;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: #666;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid #444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.footer-socials a:hover {
  border-color: #fff;
  background: #fff;
}

.footer-socials a:hover svg {
  fill: #1a1a1a;
}

.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: #999;
}

/* ===== PAGE-SPECIFIC: DEALS ===== */
.page-header {
  padding: 32px 48px 0;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header p {
  color: #666;
  font-size: 15px;
}

.filters-bar {
  display: flex;
  gap: 10px;
  padding: 24px 48px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 18px;
  border: 1.5px solid #e0e0e0;
  border-radius: 24px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  color: #555;
}

.filter-chip:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

.filter-chip.active {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #fff;
}

.deals-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 48px;
}

/* ===== PAGE-SPECIFIC: MY LIST ===== */
.list-empty {
  text-align: center;
  padding: 80px 24px;
  color: #999;
}

.list-empty h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #555;
}

.list-empty p {
  margin-bottom: 24px;
}

.list-items {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f8f8f8;
  border-radius: 16px;
  transition: all 0.2s;
}

.list-item:hover {
  background: #f0f0f0;
}

.list-item-img {
  width: 64px;
  height: 64px;
  background: #d9d9d9;
  border-radius: 12px;
  flex-shrink: 0;
}

.list-item-info {
  flex: 1;
}

.list-item-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.list-item-info .location {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
}

.list-item-info .freebie {
  font-size: 13px;
  font-weight: 700;
  color: #e85d04;
}

.list-item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.list-item-check {
  width: 24px;
  height: 24px;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  flex-shrink: 0;
}

.list-item-check:hover {
  border-color: #e85d04;
}

.list-item-check.checked {
  background: #e85d04;
  border-color: #e85d04;
}

.list-item-check.checked::after {
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.list-item.redeemed {
  opacity: 0.5;
}

.list-item.redeemed .deal-name {
  text-decoration: line-through;
}

.list-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.list-item-remove:hover {
  color: #e85d04;
}

/* ===== PAGE-SPECIFIC: PLANNER ===== */
.planner-setup {
  padding: 0 48px;
  max-width: 600px;
}

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

.planner-setup .form-group input,
.planner-setup .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.planner-setup .form-group input:focus,
.planner-setup .form-group select:focus {
  border-color: #1a1a1a;
}

.timeline {
  padding: 0 48px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 72px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.timeline-time {
  width: 50px;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  text-align: right;
  padding-top: 4px;
  flex-shrink: 0;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: #e85d04;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e85d04;
}

.timeline-content {
  flex: 1;
  background: #f8f8f8;
  border-radius: 16px;
  padding: 16px 20px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.timeline-content .freebie-desc {
  font-size: 13px;
  color: #e85d04;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-content .address {
  font-size: 12px;
  color: #888;
}

.timeline-content .note {
  font-size: 12px;
  color: #666;
  font-style: italic;
  margin-top: 6px;
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 12px 24px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}

.route-link:hover {
  background: #333;
}

/* ===== PAGE-SPECIFIC: DEAL DETAIL ===== */
.detail-back {
  display: inline-block;
  padding: 24px 48px 0;
  font-size: 14px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.detail-back:hover {
  color: #1a1a1a;
}

.detail-not-found {
  text-align: center;
  padding: 100px 24px;
}

.detail-not-found h2 {
  font-size: 24px;
  margin-bottom: 8px;
}

.detail-not-found p {
  color: #888;
  margin-bottom: 24px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 24px 48px 0;
}

.detail-img-placeholder {
  width: 100%;
  height: 360px;
  background: #d9d9d9;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.detail-img-placeholder .deal-img-photo {
  border-radius: 20px;
}

.detail-img-placeholder .deal-rating {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
}

.detail-info {
  padding-top: 8px;
}

.detail-name {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 8px 0 4px;
}

.detail-location {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.detail-freebie-badge {
  display: inline-block;
  background: #fff7ed;
  color: #e85d04;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 700;
  border: 1.5px solid #fed7aa;
  margin-bottom: 16px;
}

.detail-description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.detail-meta-item {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 12px 16px;
}

.meta-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
}

.detail-actions {
  display: flex;
  gap: 12px;
}

.detail-section {
  padding: 40px 48px 0;
}

.detail-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #e85d04;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.step-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  padding-top: 4px;
}

.fine-print {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .deals-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 24px 0;
  }
  .detail-img-placeholder {
    height: 220px;
  }
  .detail-name {
    font-size: 24px;
  }
  .detail-back {
    padding: 16px 24px 0;
  }
  .detail-section {
    padding: 32px 24px 0;
  }
  .detail-actions {
    flex-direction: column;
  }
  .navbar {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    margin: 0 24px;
    padding: 40px 24px 32px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .search-bar {
    flex-direction: column;
    border-radius: 16px;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
  }
  .search-btn {
    margin: 12px;
  }
  .section {
    padding: 32px 24px 0;
  }
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 140px 100px 140px 100px;
  }
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deals-page-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 24px;
  }
  .filters-bar {
    padding: 24px;
  }
  .page-header {
    padding: 24px 24px 0;
  }
  .list-items {
    padding: 0 24px;
  }
  .timeline {
    padding: 0 24px;
  }
  .timeline::before {
    left: 48px;
  }
  .planner-setup {
    padding: 0 24px;
  }
  .footer {
    padding: 40px 24px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .deals-grid,
  .deals-page-grid {
    grid-template-columns: 1fr;
  }
}
