:root {
  --color-primary: #9b8556;
  --color-primary-hover: #8a7449;
  --color-dark: #1a1a1a;
  --color-text: #4a4a4a;
  --color-border: #e8e0d5;
  --bg-gradient-start: #f5f1e8;
  --bg-gradient-end: #e8e0d5;
  --bg-white: white;
  --bg-slider-track: #e8dcc8;
  --bg-footer: #2a2a2a;
  --bg-footer-darker: #3a3a3a;
  /* --bg-card: linear-gradient(135deg, #f8f6f1 0%, #efe8da 100%); */
  --bg-card:linear-gradient(135deg, #fcfaf6 0%, #f6f1e6 60%, #efe8da 100%);

  --text-footer-light: #e0e0e0;
  --text-footer-muted: #b0b0b0;
  --text-footer-heading: #f5f1e8;

  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-xsmall: 13px;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(
    135deg,
    var(--bg-gradient-start) 0%,
    var(--bg-gradient-end) 100%
  );
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 0 20px 60px; */
  min-height: 45vh;
}
.hero-content {
  flex: 1;
}
.hero p {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 5px;
  line-height: 1.6;
}
.hero-image {
  flex: 0 0 300px;
}
.perfume-bottle img {
  width: 350px;
  height: 350px;
}
h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 20px 0;
  color: var(--color-dark);
  line-height: 1.2;
}
h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 10px 0;
  color: var(--color-dark);
}

h3 {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--color-dark);
}
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  margin: 25px 0 15px 0;
  transition: background 0.3s;
}
.cta-button:hover {
  background: var(--color-primary-hover);
}
.time-note {
  font-size: 14px;
  color: #666;
}
.page-wrapper {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}
.steps-container {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  position: relative;
  overflow: hidden;

  overflow-y: auto;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 50px;
  margin: 20px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* display: flex;
    justify-content: space-evenly; */
  max-width: 1200px;
  /* margin-left: auto;
    margin-right: auto;
    width: 100%; */
}
.steps-container:has(#step5.active) {
  flex: unset;
}
.step {
  display: none;
  flex: 1;
  animation: fadeIn 0.3s ease;
  grid-column: 1;
}
.step.active {
  display: flex;
  flex-direction: column;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-content {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-white);
  border-radius: 16px;
  /* padding: 50px; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.subtitle {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 30px;
}
.step-label {
  display: inline-block;
  padding: 6px 16px;
  background: #f0e8d8;
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
}
.gender-options {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}
.gender-option {
  flex: 1;
  position: relative;
}
.gender-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.gender-label {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
  padding: 20px;
  background: var(--bg-white);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.3s ease;
}
.gender-label .checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: transparent;
  transition: all 0.3s ease;
}
.gender-option input:checked + .gender-label {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(155, 133, 86, 0.2);
}
.gender-option input:checked + .gender-label .checkmark {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.slider-group {
  margin-bottom: 35px;
}
.slider-labels {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: #333;
}
.slider-labels span {
  width: 130px;
  font-weight: 500;
}
.slider-labels span:first-child {
  text-align: right;
}
.slider-labels span:last-child {
  text-align: left;
}
.slider-container {
  position: relative;
  width: 280px;
  height: 6px;
  background: var(--bg-slider-track);
  border-radius: 999px;
}
.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-primary);
  border-radius: 999px;
  pointer-events: none;
}
.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: transparent;
  outline: none;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.result-card {
  text-align: center;
}
.result-card h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-dark);
}
.result-card .result-subtext {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 10px;
}
.trait-list {
  list-style: none;
  margin: 30px auto;
  text-align: left;
  max-width: 400px;
}
.trait-list li {
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  color: var(--color-text);
  margin-bottom: 12px;
  font-weight: 500;
}
.trait-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.progress-footer {
  flex-shrink: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.progress-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px 10px;
}
.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}
.progress-text .step-indicator {
  color: var(--color-text);
  font-weight: 500;
}
.progress-text .step-indicator span {
  color: var(--color-dark);
  font-weight: 600;
}
.progress-text .percentage {
  color: var(--color-primary);
  font-weight: 600;
}
.progress-bar-container {
  height: 4px;
  background: #e8e0d5;
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-hover)
  );
  border-radius: 999px;
  transition: width 0.4s ease;
}
.navigation {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  gap: 15px;
}
.btn {
  padding: 16px 30px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 8px;
}
.btn-back {
  background: #f5f1e8;
  color: var(--color-text);
}
.btn-back:hover {
  background: #e8e0d5;
}
.btn-next {
  flex: 1;
  background: var(--color-primary);
  color: white;
  justify-content: center;
}
.btn-next:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(155, 133, 86, 0.3);
}
.btn-next:disabled {
  background: #d4d4d4;
  cursor: not-allowed;
  transform: none;
}
.btn-primary {
  background: var(--color-primary);
  color: white;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
}
.btn-secondary {
  background: #f5f1e8;
  color: var(--color-text);
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
.btn-secondary:hover {
  background: #e8e0d5;
}

/* Summary Sidebar */
.summary-sidebar {
  grid-column: 2;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.summary-sidebar h3 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 25px;
}
.summary-step {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(155, 133, 86, 0.2);
}
.summary-step:last-child {
  border-bottom: none;
  margin: 0;
  padding: 0;
}
.summary-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.summary-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: #e8dcc8;
  color: var(--color-text);
}
.summary-step-number.completed {
  background: var(--color-primary);
  color: white;
}
.summary-step-number.active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 0 0 3px rgba(155, 133, 86, 0.2);
}
.summary-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}
.summary-step-content {
  margin-left: 38px;
  font-size: 13px;
  color: var(--color-text);
}
.summary-step-content.empty {
  color: #999;
  font-style: italic;
}

/* Order Section */
.order-section {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.6s ease;
  max-width: 1200px;
}
.order-section.show {
  max-height: 3000px;
  opacity: 1;
  padding: 50px;
  margin: 30px 0;
}
.order-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
  color: var(--color-dark);
}
.order-details {
  display: grid;
  /* grid-template-columns: 1fr 1px 450px; */
  grid-template-columns: 1fr 1px 1fr;
  gap: 40px;
  align-items: stretch;
}
.vertical-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.05)
  );
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  background: #fafaf8;
  font-family: "Poppins", sans-serif;
}

/* Remove Chrome Autofill Yellow Background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: flex;
  gap: 20px;
}
.form-row .form-group {
  flex: 1;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.order-summary h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  color: var(--color-dark);
}
.summary-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.summary-item img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.summary-item-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.summary-item-info h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 5px;
}
.summary-item-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}
.summary-item-info .price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-top: 10px;
}
.quantity-control {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 4px 8px;
  margin: auto 0;
}
.qty-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border-radius: 4px;
}
.qty-btn:hover {
  background: #f5f1e8;
}
.qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.qty-value {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  min-width: 20px;
  text-align: center;
}
.price-breakdown {
  margin: 25px 0;
}
.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--color-text);
  font-weight: 500;
}
.price-row.total {
  font-size: 20px;
  font-weight: 600;
  padding-top: 15px;
  border-top: 2px solid #e0e0e0;
  margin-top: 15px;
  color: var(--color-primary);
}
.buy-button {
  width: 100%;
  padding: 16px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "Poppins", sans-serif;
}
.buy-button:hover {
  background: var(--color-primary-hover);
}
.checkout-info {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 15px;
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 12px 20px;
  color: var(--color-text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.or-divider span {
  padding: 0 12px;
  white-space: nowrap;
}

/* Recommendations Section */
.recommendations {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 50px;
  margin: 40px auto 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, padding 0.6s ease,
    margin 0.6s ease;
  max-width: 1200px;
}
.recommendations.show {
  max-height: 3000px;
  opacity: 1;
}
.recommendations h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 35px;
  color: var(--color-dark);
}
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 0;
}
.perfume-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 30px 25px;
  border: 2px solid var(--color-border);
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
}
.perfume-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(155, 133, 86, 0.2);
  border-color: var(--color-primary);
}
.perfume-card.selected {
  border: 2px solid var(--color-primary);
  box-shadow: 0 6px 16px rgba(155, 133, 86, 0.25);
  background: linear-gradient(135deg, #faf8f3 0%, #f3ede0 100%);
}
.perfume-card h4 {
  font-size: 20px;
  color: var(--color-dark);
  margin: 7px 0;
  font-weight: 500;
}
.perfume-card .traits {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
  font-style: italic;
}
.hidden-perfumes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    margin-top 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}
.hidden-perfumes.show {
  max-height: 3000px;
  opacity: 1;
  margin-top: 25px;
}
.view-more-container {
  margin-top: 40px;
  text-align: center;
}
.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  background: transparent;
  color: var(--color-primary);
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.view-more-btn .line {
  width: 60px;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}
.view-more-btn .text {
  white-space: nowrap;
}
.view-more-btn:hover .line {
  width: 80px;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.reserve-action {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: var(--bg-card);;
  border: 1px solid var(--color-border);
  padding: 40px 30px;
  border-radius: 16px;
  gap: 20px;
}

@media (max-width: 1024px) {
  .steps-container {
    grid-template-columns: 1fr;
    margin: 50px 20px 20px;
  }
  .summary-sidebar {
    display: none;
  }
  .step-content {
    max-width: 100%;
  }
  .order-section.show {
    padding: 30px 20px;
    margin: 20px;
  }
  .order-details {
    grid-template-columns: 1fr;
  }
  .vertical-divider {
    display: none;
  }

  .quantity-control {
    margin: 10px 0 0;
  }
}

@media (max-width: 768px) {
  .form-row {
    display: block;
    gap: 20px;
  } 

  .summary-item {
    padding: 20px 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-bottom: 40px;
    height: 100vh;
  }
  .steps-container {
    margin: 50px 20px 20px;
    padding: 0;
    height: 95vh;
    grid-template-columns: 1fr;
  }
  .summary-sidebar {
    display: none;
  }
  .summary-item-info {
    flex-direction: column;
  }
  .step-content {
    padding: 30px 20px;
    max-width: 100%;
    justify-content: space-evenly;
  }
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 25px;
    font-weight: 600;
  }
  h3 {
    font-size: 22px;
  }
  .hero p {
    font-size: 14px;
  }

  .cta-button {
    font-size: 16px;
  }
  .slider-group {
    margin-bottom: 40px;
  }
  .slider-labels {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    flex-wrap: nowrap;
  }
  .slider-labels span {
    width: auto;
    font-size: 13px;
    flex: 0 0 auto;
  }
  .slider-labels span:first-child {
    text-align: left;
  }
  .slider-labels span:last-child {
    text-align: right;
  }
  .slider-container {
    width: 100%;
    order: 2;
    margin-top: 10px;
    position: absolute;
    top: 100%;
    left: 0;
  }
  .gender-options {
    flex-direction: column;
  }
  .page-wrapper {
    min-height: 100vh;
  }
  .progress-footer {
    border-radius: 0;
  }
  .order-section.show {
    padding: 30px 20px;
    margin: 20px;
  }
  .order-details {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .vertical-divider {
    display: none;
  }
  .summary-item-info {
    flex-direction: column;
  }
  .quantity-control {
    margin: 10px 0 0;
  }
  .or-divider {
    margin: 12px 0;
  }

  .result-card h2 {
    font-size: 28px;
  }
  .order-section h2 {
    font-size: 25px;
    font-weight: 500;
  }
}

/* ================================
   MOBILE ONLY – FIX EXTRA WHITE SPACE
================================ */
@media (max-width: 768px) {
  .hero-image {
    order: 1;
  }

  .hero-content {
    order: 0;
  }

  .price-note {
    order: 2;
    margin-top: 20px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 15px;
  }

  /* Stop forcing full screen heights */
  .hero {
    height: auto;
    min-height: unset;
  }

  .page-wrapper {
    min-height: unset;
  }

  /* Steps container should hug content */
  .steps-container {
    height: auto; /* remove 95vh */
    min-height: unset;
    padding: 20px;
    margin: 15px;
    overflow: visible; /* no forced scroll */
  }

  /* Individual step should not stretch */
  .step {
    height: auto;
  }

  /* Step content should grow naturally */
  .step-content {
    flex: unset; /* remove flex:1 effect */
    height: auto;
    justify-content: flex-start;
    /* gap: 30px;           */
    gap: 10px;
    overflow: visible;
  }

  /* Summary sidebar already hidden, but ensure no layout gap */
  .summary-sidebar {
    display: none;
  }
}






/* Pill Card */
.trust-section {
  display: none;
  padding: 10px;
  /* display: grid; */
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin: 15px;
}

.trust-pill {
  background: transparent;
  border: 2px solid var(--color-primary);
  border-radius: 50px;

  padding: 24px 30px;
  font-size: 18px;
  font-weight: 500;

  display: flex;
  align-items: center;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .trust-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trust-section {
    grid-template-columns: 1fr;
  }

  .trust-pill {
    font-size: 13px;
    padding: 20px 24px;
  }
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--bg-footer);
  color: var(--text-footer-light);
  padding: 60px 20px 20px;
  margin-top: 65px;
}

footer .footer-main img {
  width: 150px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-main > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo-section h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-footer-heading);
  margin: 15px 0;
}

.footer-logo-section p {
  font-size: var(--font-size-small);
  color: var(--text-footer-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--bg-footer-darker);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-footer-light);
  text-decoration: none;
  transition: background 0.3s;
  border-radius: 50%;
}

.social-links a img {
  width: 22px !important;
  height: 22px !important;
}

.social-links a:hover {
  background: var(--color-primary);
}

.footer-column h3 {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-footer-heading);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-footer-muted);
  text-decoration: none;
  font-size: var(--font-size-small);
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--bg-footer-darker);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  font-size: var(--font-size-xsmall);
  color: var(--color-text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  font-size: var(--font-size-xsmall);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 60px 30px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-main > div:last-child {
    gap: 28px;
    place-items: center;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column-reverse;
  }

  .footer-bottom-left {
    text-align: center;
    width: 100%;
  }

  .footer-bottom-links {
    gap: 20px;
  }

  .footer-bottom-links a {
    text-align: center;
  }
}

/* Payment Method Selector */
/* .payment-method-selector {
  margin: 16px 0;
}

.payment-method-selector h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
  user-select: none;
}

.payment-option:has(input:checked) {
  border-color: #b5924c;
  background: #fdf8f0;
}

.payment-option input[type="radio"] {
  accent-color: #b5924c;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.payment-option span {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.payment-option small {
  color: #999;
  font-size: 11px;
  font-weight: 400;
} */



/* Generic Selector Wrapper */
.option-selector {
  margin: 16px 0;
}

.option-selector h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Options Container */
.option-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Single Option Card */
.option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: border-color 0.2s, background 0.2s;
  background: #fff;
  user-select: none;
}

/* Checked State */
.option-item:has(input:checked) {
  border-color: #b5924c;
  background: #fdf8f0;
}

/* Radio / Checkbox */
.option-item input[type="radio"],
.option-item input[type="checkbox"] {
  accent-color: #b5924c;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Text Wrapper */
.option-item span {
  display: flex;
  align-items: center;
  /* gap: 6px; */
  flex-wrap: wrap;
}

/* Subtext */
.option-item small {
  color: #999;
  font-size: 11px;
  font-weight: 400;
}
