.product-single {
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(var(--color-primary-rgb), 0.12),
      transparent 25rem
    ),
    linear-gradient(
      180deg,
      rgba(var(--color-primary-rgb), 0.055),
      #ffffff 17rem
    );
  padding-block: 1rem 5rem;
}

.product-single__shell {
  display: grid;
  gap: 1rem;
}

.product-single__crumbs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgb(0, 0, 0);
  font-size: 0.65rem;
  font-weight: 600;
}

.product-single__crumbs > * + *::before {
  margin-right: 0.55rem;
  color: rgba(17, 17, 17, 0.34);
  content: ">";
}

.product-hero {
  position: relative;
}

.product-hero__cover {
  /* aspect-ratio: 4.4 / 1; */
  height: auto;
  max-height: 19rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #f4f4f5;
}

.product-hero__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__card {
  position: relative;
  z-index: 2;
  display: grid;
  column-gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: center;
  width: min(88%, 80rem);
  margin: -3.5rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.08);
}

.product-hero__flag,
.product-spec-card__flag {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  overflow: hidden;
  border-radius: 999px;
  background: #f1f1f2;
}

.product-hero__flag img,
.product-spec-card__flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__content h1 {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 2.8vw, 2.8rem);
  font-weight: 850;
  line-height: 1;
}

.product-hero__content p {
  max-width: 42rem;
  margin: 0.45rem 0 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-hero__trust {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  color: #111111;
  font-size: 0.82rem;
}

.product-hero__trust strong {
  color: #000000;
  font-size: 1rem;
}
.product-hero__trust strong::before {
  margin-right: 0.4rem;
  color: #00b67a;
  font-size: 1.2rem;
  line-height: 0;
  content: "★";
}

.product-hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #ffffff;
}

.product-hero__trust span::before {
  display: inline-grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: #26a65b;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  content: "✓";
}

.product-hero__countries {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.product-plans {
  display: grid;
  gap: 1.7rem;
}

.product-plans__switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(9rem, 1fr));
  justify-self: start;
  padding: 0.25rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #ffffff;
}

.product-plans__switch button {
  min-height: 2.55rem;
  padding: 0.55rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-plans__switch button.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

.product-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.plan-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 0.75rem;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.plan-card.is-selected {
  border-color: #111111;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
}

.plan-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.plan-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.plan-card__name {
  color: #111111;
  font-size: 1.02rem;
  font-weight: 850;
}

.plan-card__price {
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
}

.plan-card__details {
  display: grid;
  gap: 0.7rem;
  font-size: 0.78rem;
}

.plan-card__details span {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.plan-card__button,
.product-mobile-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #f7f7f7;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 850;
}

.plan-card.is-selected .plan-card__button,
.product-mobile-buy {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.product-mobile-buy {
  display: none;
}

.product-mobile-buy small {
  display: none;
}

.product-info-tabs {
  display: grid;
  margin-top: 1rem;
  border: 1px solid rgba(38, 166, 91, 0.2);
  border-radius: 1rem;
  background: #f4fff7;
}

.product-info-tabs__nav {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(8rem, 1fr);
  justify-self: center;
  margin-top: -1.35rem;
  padding: 0.25rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.product-info-tabs__nav button {
  min-height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-info-tabs__nav button.is-active {
  background: var(--color-primary);
  color: #ffffff;
}

.product-info-tabs__panel {
  padding: 2rem;
}

.product-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.25rem;
  align-items: center;
}

.product-feature-apps {
  display: grid;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-feature-apps li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #111111;
  font-weight: 800;
}

.product-feature-panel__card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
}

.product-feature-panel__card h2 {
  color: #111111;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
}

.product-feature-panel__card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.6;
}

.product-content-icon {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.1);
}

.product-content-icon:empty::before {
  color: var(--color-primary);
  font-weight: 900;
  content: "✓";
}

.product-content-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-spec-card {
  /* max-width: 32rem; */
  padding: 1rem;
  border-radius: 0.75rem;
  background: #ffffff;
}

.product-spec-card__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.65rem;
  border-radius: 0.55rem;
  background: #f2f2f2;
}

.product-spec-card__flag {
  width: 2.4rem;
  height: 2.4rem;
}

.product-spec-card dl {
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
}

.product-spec-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.product-spec-card dt {
  color: rgba(17, 17, 17, 0.58);
  font-weight: 700;
}

.product-spec-card dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.product-spec-card button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-primary);
  font: inherit;
  font-weight: 850;
}

.product-faq-list {
  display: grid;
  gap: 0.75rem;
}

.product-faq-item {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0.85rem;
  background: #ffffff;
}

.product-faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: #111111;
  font-weight: 850;
}

.product-faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.6;
}

.product-faq-item p a {
  color: var(--color-primary);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.product-how {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
  border: 1px solid rgba(var(--color-primary-rgb), 0.14);
  border-radius: 1rem;
  background:
    linear-gradient(
      135deg,
      rgba(var(--color-primary-rgb), 0.06),
      transparent 58%
    ),
    #ffffff;
}

.product-how__heading {
  display: grid;
  gap: 0.35rem;
}

.product-how__heading p {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-how__heading h2 {
  color: #111111;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.product-how__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-how__step {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
}

.product-how__step span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary);
  font-weight: 900;
}

.product-how__step h3 {
  color: #111111;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.15;
}

.product-how__step p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.9rem;
  line-height: 1.5;
}
.product-how__image {
  aspect-ratio: 4 / 3;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #f3f4f6;
  margin-top: 1rem;
}

.product-how__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content-section {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
/* Product Benefits */
.product-benefits {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.2rem;
  background:
    linear-gradient(
      135deg,
      rgba(var(--color-primary-rgb), 0.06),
      transparent 58%
    ),
    #ffffff;
}

.product-benefits__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
}

.product-benefits__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(var(--color-primary-rgb), 0.08);
  color: var(--color-primary);
  flex-shrink: 0;
}

.product-benefits__icon svg {
  width: 1rem;
  height: 1rem;
}

.product-benefits__item p {
  margin: 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

.product-content-section > h2,
.product-content-section__heading h2 {
  color: #111111;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.05;
}

.product-content-section__heading {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.product-content-section__heading p {
  max-width: 48rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
}

.product-card-scroll {
  display: grid;
  gap: 1rem;
}

.product-card-scroll--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card-scroll--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-info-card {
  display: grid;
  gap: 0.85rem;
  min-height: 14rem;
  padding: 1.25rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.045);
}

.product-info-card h3 {
  color: #111111;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.16;
}

.product-info-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.64);
  line-height: 1.55;
}

.product-countries-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 17, 17, 0.36);
}

.product-countries-modal[hidden] {
  display: none;
}

.product-countries-modal__panel {
  position: relative;
  width: min(100%, 36rem);
  max-height: min(80vh, 42rem);
  overflow: auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #ffffff;
}

.product-countries-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: #f1f1f1;
}

.product-countries-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 10px;
}

.product-countries-modal__grid span {
  padding: 0.75rem;
  border-radius: 0.55rem;
  background: #f7f7f7;
  font-weight: 700;
}

body.countries-modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .product-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .product-single {
    padding-block: 0.6rem 6rem;
  }

  .product-single__shell {
    gap: 0.55rem;
  }

  .product-hero {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 5.2rem;
  }

  .product-hero__cover {
    position: relative;
    aspect-ratio: 2.35 / 1;
    max-height: none;
    border-radius: 0.75rem;
  }

  .product-hero__cover::after {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.68)),
      linear-gradient(
        90deg,
        rgba(17, 17, 17, 0.26),
        rgba(17, 17, 17, 0.08),
        rgba(17, 17, 17, 0.26)
      );
    content: "";
  }

  .product-hero__card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    gap: 0.35rem;
    bottom: 0.9rem;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #ffffff;
    background: transparent;
    box-shadow: none;
    justify-items: center;
    text-align: center;
  }

  .product-hero__flag {
    width: 2.55rem;
    height: 2.55rem;
  }

  .product-hero__content h1 {
    color: #ffffff;
    font-size: 1.4rem;
  }

  .product-hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }

  .product-hero__content p {
    display: none;
  }

  .product-hero__trust {
    position: absolute;
    top: calc(100% + 1.25rem);
    left: 0;
    right: 0;
    grid-column: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
    justify-content: center;
    color: #111111;
  }

  .product-hero__trust strong {
    display: inline-flex;
    align-items: center;
    color: #111111;
    font-size: 0.86rem;
    line-height: 1;
  }

  .product-hero__trust strong::before {
    margin-right: 0.35rem;
    color: #00b67a;
    font-size: 1.2rem;
    line-height: 0;
    content: "★";
  }

  .product-hero__trust span {
    flex-basis: 100%;
    width: max-content;
    margin-inline: auto;
    padding: 0.42rem 0.8rem;
    border-color: rgba(17, 17, 17, 0.12);
    color: #111111;
    font-size: 0.78rem;
    box-shadow: 0 8px 22px rgba(17, 17, 17, 0.08);
    justify-content: center;
  }

  .product-hero__countries {
    flex-basis: 100%;
    color: var(--color-primary);
    font-size: 0.82rem;
  }

  .product-plans__switch {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-plans__grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-top: 10px;
  }

  .plan-card {
    position: relative;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    min-height: 3.35rem;
    padding: 0.75rem;
    gap: 0.65rem;
  }

  .plan-card input {
    position: static;
    width: 1.1rem;
    height: 1.1rem;
    opacity: 1;
    pointer-events: auto;
    accent-color: var(--color-primary);
  }

  .plan-card__head {
    display: contents;
  }

  .plan-card__name {
    font-size: 1rem;
  }

  .plan-card__price {
    padding: 0;
    background: transparent;
    font-size: 0.95rem;
  }

  .plan-card__details,
  .plan-card__button {
    display: none;
  }

  .product-mobile-buy {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 200;
    display: inline-flex;
    min-height: 3.6rem;
    flex-direction: column;
    gap: 0.15rem;
    border: 0;
    box-shadow: 0 16px 34px rgba(17, 17, 17, 0.18);
  }

  .product-mobile-buy small {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 0.72rem;
  }

  .single-product .floating-whatsapp {
    right: max(0.9rem, env(safe-area-inset-right));
    bottom: calc(5.4rem + env(safe-area-inset-bottom));
  }

  .product-info-tabs__nav {
    width: calc(100% - 1rem);
    grid-auto-columns: minmax(0, 1fr);
    overflow-x: auto;
  }

  .product-info-tabs__nav button {
    font-size: 0.72rem;
  }

  .product-info-tabs__panel {
    padding: 1.25rem;
  }

  .product-feature-panel {
    grid-template-columns: 1fr;
  }

  .product-card-scroll {
    display: flex;
    gap: 0.8rem;
    margin-inline: -1rem;
    padding: 0 1rem 0.35rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .product-info-card {
    min-width: min(82vw, 20rem);
    min-height: 13rem;
    scroll-snap-align: start;
  }

  .product-how__steps {
    grid-template-columns: 1fr;
  }

  .product-countries-modal__grid {
    grid-template-columns: 1fr;
  }
}
