
  body {
  background: #f8f2e1;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #48423a;
}

.container31 {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  padding: 60px 0;
}

.sidebar31 {
  width: 250px;
}

.breadcrumb {
  font-size: 16px;
  margin-bottom: 30px;
  color: #888;
}

.breadcrumb .current {
  font-weight: 600;
  color: #48423a;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #48423a;
}

.checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
}

.checkbox input[type="checkbox"] {
  accent-color: #eccf9c;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

.main-content {
  flex-grow: 1;
  min-width: 0;
  background: #f8f2e1;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.results-count {
  font-size: 16px;
  color: #48423a;
}

.sort-group {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #48423a;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select select {
  padding: 8px 34px 8px 10px;
  background: #fff;
  border: none;
  font-size: 13px;
  font-weight: bold;
  border-radius: 6px;
  color: #48423a;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.custom-select .arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
  color: #48423a;
}

#trip-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.trip-card {
  display: flex;
  background: #e5dac7;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(60, 70, 40, 0.06);
}

.trip-img-wrap {
  width: 360px;
  height: 240px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.trip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.trip-popular {
  position: absolute;
  top: 12px;
  left: 16px;
  background: #fff;
  color:#48423a;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
  padding: 2px 16px;
  box-shadow: 0 1px 4px rgba(60,70,40,0.12);
}

.trip-details {
  flex: 1;
  padding: 24px 24px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.trip-price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(-45deg, #c54c1c 60%, #e5dac7 60%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 16px 20px 6px 12px;
  border-radius: 0 0 0 0;
  min-width: 90px;
  text-align: right;
  line-height: 0.9;
}

.trip-price-badge span {
  font-size: 13px;
  font-weight: 500;
}

.trip-price-badge .usd {
  font-size: 13px;
  font-weight: 500;
}

.trip-title {
  font-weight: 700;
  font-size: 20px;
  color: #48423a;
  margin-bottom: 5px;
}

.trip-desc {
  color: #48423a;
  font-size: 14px;
  margin-bottom: 14px;
  padding-left: 17px;
  line-height: 1.2;
}

.trip-desc li {
  margin-bottom: 6px;
}

.trip-btn {
  margin-top: auto;
  background: #48423a;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 2px;
  padding: 10px 0;
  width: 100%;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.15s;
}

.trip-btn:hover {
  background: #eccf9c;
  color: black;
}