.sns-trips-toggle-section {
  width: 100%;
}

.sns-main-toggle-wrap {
  text-align: center;
  margin-bottom: 6px;
}

.sns-main-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #783D25;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sns-main-toggle-btn:hover,
.sns-arrow:hover,
.sns-card:hover,
.sns-card-btn:hover {
  transition: all 0.3s ease;
}

.sns-main-toggle-icon {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.sns-main-toggle-btn.active .sns-main-toggle-icon {
  transform: rotate(45deg);
}

.sns-trips-collapsible-content {
  display: none;
}

.sns-trips-collapsible-content.is-open {
  display: block;
  animation: snsFadeDown 0.35s ease;
}

@keyframes snsFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sns-safari-section {
  padding: 8px 20px 30px;
  font-family: Arial, sans-serif;
}

.sns-safari-wrap {
  width: 90vw;
  margin: 0 auto;
}

.sns-scroll-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sns-scroll-head h3,
.sns-scroll-head span {
  color: #fff;
}

.sns-scroll-head h3 {
  margin: 0;
  font-size: 28px;
}

.sns-scroll-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.sns-arrow {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #783D25;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.sns-horizontal-cards {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sns-horizontal-cards::-webkit-scrollbar {
  display: none;
}

.sns-mode-slider .sns-horizontal-cards {
  overflow-x: hidden;
}

.sns-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  width: 390px;
  background: #8d4824;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  scroll-snap-align: start;
}

.sns-card-image {
  position: relative;
  padding: 14px 14px 0;
}

.sns-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
}

.sns-badges {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sns-badges span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #8f5a36;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.sns-badges .sns-badge-price {
  background: #f4b33b;
  color: #1d1f6f;
}

.sns-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 20px 22px;
}

.sns-card-body h4 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
  color: #fff;
}

.sns-card-body p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.sns-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: auto;
  text-align: center;
  text-decoration: none;
  background: #fff;
  color: #7b3d1f;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  min-width: 140px;
}

.sns-mobile-only {
  display: none;
}

.sns-mobile-stack {
  display: grid;
  gap: 18px;
}

@media (max-width: 1024px) {
  .sns-card {
    width: 340px;
  }
}

@media (max-width: 767px) {
  .sns-safari-section {
    padding: 8px 14px 24px;
  }

  .sns-safari-wrap {
    width: 100%;
  }

  .sns-desktop-tablet {
    display: none;
  }

  .sns-mobile-only {
    display: block;
  }

  .sns-mobile-stack .sns-card {
    width: 100%;
    max-width: 100%;
  }

  .sns-card-image img {
    height: 250px;
  }

  .sns-scroll-head h3 {
    font-size: 24px;
  }

  .sns-main-toggle-btn {
    width: 100%;
    max-width: 320px;
  }
}
