/* lang */

#lang .current img {
  transition: transform 0.3s ease;
}

#lang.open .current img {
  transform: rotate(180deg);
}

/*-------------------------------------*/

/* from navbar.blade.php */

.toggle-button {
  position: relative;

  width: 50px;
  height: 25px;
  margin-top: 7px;

  vertical-align: top;

  background: #ffffff;
  border: 1px solid #bbc1e1;
  border-radius: 30px;
  outline: none;
  cursor: pointer;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}

.toggle-button::after {
  content: "";

  position: absolute;
  left: 3px;
  top: 1.5px;

  width: 20px;
  height: 20px;
  background-color: #000;
  border-radius: 50%;

  transform: translateX(0);

  transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2);
}

.toggle-button:checked::after {
  transform: translateX(calc(100% + 3px));
  background-color: #fff;
}

.white-text {
  color: gray;
}

.toggle-button:checked {
  background-color: #000;
}

/*-------------------------------------*/

.btn-billing {
  margin-left: 10px;
  margin-right: 10px;
}

.wrap {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 20px;
}

.eyebrow {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.1;
  margin: 0 0 8px 0;
}

/* --- Swiper / карточки --- */

swiper-container.os-list {
  padding: 8px 4px 24px; /* отступы внутри карусели */
}

swiper-slide.item {
  height: auto;
}

.os-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;

  padding: 22px 20px;
  border-radius: 20px; /* мягкие скругления */
  border: 1px solid rgba(0, 0, 0, 0.08); /* тонкая рамка */
  background: #fff; /* чистый белый фон */
}

.os-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.os-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  text-transform: capitalize;
}

.os-card p {
  margin: 0;
  color: #666;
  font-size: 15px;
  line-height: 1.5;
}

/* навигация */
.swiper-button-prev,
.swiper-button-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--card-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  color: #111;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}
