.options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (max-width: 680px) {
  .options { grid-template-columns: 1fr; }
}
.option-card {
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
#data-esim { scroll-margin-top: 1.5rem; }
.option-card .buy-form { margin-top: auto; }
.option-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line-2);
}
.option-heading {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}
.option-icon {
  flex: none;
  width: 1.1em;
  height: 1.1em;
  color: var(--ink);
}
.option-name { white-space: nowrap; }
.option-price {
  font-size: .95rem;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}
.option-price-from {
  font-size: .68rem;
  font-weight: 400;
  color: var(--muted);
}
.option-price-note {
  font-size: .68rem;
  font-weight: 400;
  color: var(--muted);
}
.option-badge {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  padding: .12rem .4rem;
  border: 1px solid var(--line);
  color: var(--muted);
}
.option-card .soldout-note { margin-top: auto; }
.option-desc {
  font-size: .78rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.country-search {
  display: flex;
  gap: .5rem;
  margin-bottom: .75rem;
}
.country-search select {
  flex: 1;
  margin-bottom: 0;
  min-width: 0;
}
.country-search button {
  width: auto;
  flex-shrink: 0;
}
@media (max-width: 400px) {
  .country-search { flex-direction: column; }
  .country-search button { width: 100%; }
}
.country-search:has(option:checked:not([selected])) button {
  background: var(--ink);
  color: var(--bg);
  animation: show-plans-nudge 1.1s ease-in-out 3;
}
.country-search:has(option:checked:not([selected])) button:hover { background: var(--ink-2); }
@keyframes show-plans-nudge {
  50% { transform: scale(1.05); opacity: .8; }
}
@media (prefers-reduced-motion: reduce) {
  .country-search:has(option:checked:not([selected])) button { animation: none; }
}
.popular-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  margin-bottom: .75rem;
}
.popular-label {
  font-size: .62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-right: .15rem;
}
.popular-chip {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  line-height: 1;
  white-space: nowrap;
}
.popular-chip:hover { border-color: var(--ink); color: var(--ink); }
.popular-chip.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.option-card:has(.country-search option:checked:not([selected])) .popular-chip.is-active {
  background: var(--bg);
  color: var(--ink-2);
  border-color: var(--line);
}
.option-card:has(.country-search option:checked:not([selected])) .popular-chip.is-active:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.plan-detail {
  display: none;
  border: 1px solid var(--line-2);
  background: var(--panel);
  padding: .75rem .9rem;
  margin: .5rem 0 1rem;
}
.days-field {
  display: none;
  margin: 0 0 1rem;
}
.days-field .note { margin-top: .4rem; }
.plan-detail .spec-list { margin-bottom: 0; }
.plan-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .6rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line-2);
}
.plan-price {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.plan-price-meta {
  font-size: .72rem;
  color: var(--muted);
}
.plan-tag-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: .6rem;
}
.plan-tag {
  flex: none;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .2rem .45rem;
  background: var(--ink);
  color: var(--bg);
  line-height: 1;
}
.plan-tag-note {
  font-size: .72rem;
  color: var(--muted);
  line-height: 1.4;
}
.look-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid var(--line-2);
  background: var(--panel);
  padding: .85rem 1.1rem;
  margin: 0 0 3rem;
}
.look-polaroid {
  flex-shrink: 0;
  background: var(--bg);
  padding: .3rem .3rem .1rem;
  border: 1px solid var(--line);
  box-shadow: 0 2px 7px var(--shadow-md);
  transform: rotate(-3deg);
  transition: transform .25s ease, box-shadow .25s ease;
}
.look-polaroid img { width: 110px; height: auto; display: block; }
.look-polaroid figcaption {
  text-align: center;
  padding-top: .2rem;
  font-size: .52rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-2);
}
.look-banner:hover .look-polaroid {
  transform: rotate(0);
  box-shadow: 0 5px 14px var(--shadow-lg);
}
.look-banner-text { display: flex; flex-direction: column; gap: .12rem; }
.look-banner-text strong { font-size: .82rem; font-weight: 600; }
.look-banner-text span {
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .03em;
}
.look-banner-link {
  margin-top: .18rem;
  font-size: .66rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 500px) {
  .look-banner { gap: 1rem; }
  .look-polaroid img { width: 84px; }
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  border: 1px solid var(--line-2);
  padding: 1rem;
}
.step-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--faint);
  margin-bottom: .4rem;
}
.step-heading {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.step-body {
  font-size: .75rem;
  color: var(--text-3);
  line-height: 1.55;
}
