/* A simple CSS reset to normalize styles across browsers */
*, *::before, *::after {
  box-sizing: border-box; /* Ensures padding and borders are included in the element's total width and height */
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none; /* Removes default bullet points/numbers from lists */
}

a {
  text-decoration: none; /* Removes default underline from links */
  color: inherit; /* Links inherit color from parent element */
}

img {
  max-width: 100%;
  display: block; /* Helps with image alignment issues */
}


html {
  font-size: 16px; /* базовая точка */
  font-family: "Montserrat", sans-serif;
}

.price {
  font-size: 1.25rem; /* 20px */
}

.caption {
  font-size: 0.5rem; /* 8px */
}


.toolbar{
  width: 100%;
  min-height: 2.45rem; /* ~39px */
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  box-shadow: 0 0.125rem 0.125rem rgba(112,112,112,.4);
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

.toolbar__inner{
  max-width: 100%;   /* ~360px */
  margin: 0 auto;
  padding: 0.4rem 0.9rem; /* вертикаль/горизонталь */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.toolbar__left,
.toolbar__right{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.toolbar__row{
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.toolbar__row--right{
  justify-content: flex-end;
  gap: 0.35rem;
}

.toolbar__rating{
  font-weight: 700;
  font-size: 0.5rem;   /* ~8px */
  line-height: 1.25;
  white-space: nowrap;
}

.toolbar__stars{
  display: inline-flex;
  align-items: center;
  gap: 0.14rem;
  padding: 0.14rem 0.25rem;
  border: 0.025rem solid #fff; /* ~0.4px */
  border-radius: 0.25rem;      /* ~4px */
}

.toolbar__star{
  width: 0.38rem;  /* ~6px */
  height: 0.38rem; /* ~6px */
  display: inline-block;
  background: #ffd54a;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.toolbar__sold{
  font-weight: 700;
  font-size: 0.5rem;   /* ~8px */
  line-height: 1.25;
  white-space: nowrap;
}

.toolbar__badge{
  font-weight: 700;
  font-size: 0.5rem;   /* ~8px */
  line-height: 1.25;
  background: #ff2a2c;
  border-radius: 0.12rem; /* ~2px */
  padding: 0.05rem 0.25rem;
  white-space: nowrap;
}

.toolbar__sub{
  font-weight: 400;
  font-size: 0.375rem; /* ~6px */
  line-height: 1.15;
  white-space: nowrap;
  opacity: 1;
}

.toolbar__sub--right{
  text-align: right;
}

/* На очень узких экранах чуть ужимаем шрифт, чтобы не ломалось */
@media (max-width: 340px){
  .toolbar__inner{ padding: 0.35rem 0.7rem; }
  .toolbar__rating,
  .toolbar__sold,
  .toolbar__badge{ font-size: 0.47rem; }
  .toolbar__sub{ font-size: 0.34rem; }
}


.pricebar {
  width: 100%;
  border-top: 1px solid #67A6A7;
  border-bottom: 1px solid #67A6A7;
  font-family: "Montserrat", sans-serif;
}

.pricebar__inner {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
  min-height: 3.1rem; /* ~49px */
  text-align: center;
}

.pricebar__old,
.pricebar__new {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricebar__old {
  width: 46%;
  padding-left: 1.2rem;
}

.pricebar__new {
  width: 54%;
  padding-left: 1.1rem;
  position: relative;
  color: #fff;
}

/* Фон акционной цены */
.pricebar__new::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.55)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.pricebar__new > * {
  position: relative;
  z-index: 1;
}

/* Тексты */
.pricebar__label {
  font-size: 0.5rem;     /* 8px */
  line-height: 1.2;
}

.pricebar__label--white {
  color: #fff;
}

.pricebar__value {
  font-size: 1.25rem;    /* 20px */
  line-height: 1.2;
  font-weight: 800;
}

.pricebar__value--old {
  color: #000;
  position: relative;
	text-decoration: line-through;
}



.cta{
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0.55rem; /* расстояние между кнопкой и подписью */
  font-family: "Montserrat", sans-serif;
  margin-top: 1rem;
}

/* Кнопка */
.cta__btn{
  width: min(13.6rem, 92%);   /* ~217px, но не больше 92% экрана */
  min-height: 2.95rem;        /* ~47px */
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 3.125rem;    /* ~50px */
  background: linear-gradient(94.1deg, #FF2E49 21.07%, #A81629 88.82%);
  box-shadow: 0 0.25rem 0.25rem rgba(0,0,0,.25);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;         /* ~12px */
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.cta__btn:active{
  transform: translateY(0.02rem);
}

/* Подпись + бейдж */
.cta__stock{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.cta__stock-text{
  font-weight: 400;
  font-size: 0.625rem;  /* ~10px */
  line-height: 1.2;
  color: #000;
}

.cta__stock-badge{
  min-width: 1.9rem;    /* ~30px */
  height: 0.95rem;      /* ~15px */
  padding: 0 0.45rem;
  background: #1B1B1B;
  border-radius: 0.25rem; /* ~4px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.625rem;  /* ~10px */
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

/* На очень узких экранах чуть уменьшаем ширину кнопки */
@media (max-width: 340px){
  .cta__btn{ width: min(12.8rem, 94%); }
}



.reco{
  position: relative;
  width: 100%;
	padding-bottom: 40px;
    margin-bottom: 30px;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  margin-top: 20px;
}

/* ФОН + ДУГА */
.reco__bg{
  position: absolute;
  inset: 0;
  z-index: 0;

  background: url("assets/img1.jpg");

  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.reco__bg2{
  position: absolute;
  inset: 0;
  z-index: 0;

  background: url("assets/img4.jpg");

  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

/* КОНТЕНТ */
.reco__inner{
  position: relative;
  z-index: 1;
  max-width: 100%; /* ~360px */
  margin: 0 auto;
  padding: 0.9rem 0.75rem 0 0;
}

/* заголовок */
.reco__title{
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.275rem; /* ~14px */
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.35);
}

/* список */
.reco__list{
  list-style: none;
  padding: 0;
  margin: 3.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;

  /* как в макете: блоки начинаются ниже */
  padding-top: 1.4rem;
}

/* плашка */
.reco__item{
  width: 62%; /* 158/284 ≈ 55.6%, но по визуалу ближе 60-62% */
  background: rgba(255,255,255,.95);
  box-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.25);
  border-radius: 0 0.5rem 0.5rem 0; /* 8px */
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.6rem 0.55rem 0.75rem;
}

/* варианты высоты: 23px vs 34px по макету */
.reco__item--sm{
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.reco__item--lg{
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

/* чек-точка (Ellipse + Vector) */
.reco__dot{
  width: 0.45rem;   /* ~6px */
  height: 0.45rem;
  border-radius: 50%;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  display: inline-block;
  flex: 0 0 auto;
}

/* текст */
.reco__text{
  font-weight: 500;
  font-size: 1.1rem; /* ~10px */
  line-height: 1.2;
  color: #000;
}

/* чтобы не “липло” к низу на маленьких экранах */
@media (max-width: 340px){
  .reco__item{ width: 68%; }
}

.img {
	
}

.details-head{
  width: 100%;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  box-shadow: 0 0.125rem 0.125rem rgba(112,112,112,.4);
  font-family: "Montserrat", sans-serif;
  color: #fff;
   margin-top: 30px;

}

.details-head__inner{
  max-width: 100%;      /* ~360px */
  margin: 0 auto;
  padding: 0.85rem 0.9rem; /* вертикаль/горизонталь */
  text-align: center;
}

/* верхняя строка */
.details-head__top{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.5rem;      /* ~8px */
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.details-head__dot{
  width: 0.2rem;          /* ~3px */
  height: 0.2rem;
  border-radius: 50%;
  background: #fff;
  flex: 0 0 auto;
}

/* линия */
.details-head__line{
  width: 82%;              /* ~189/230 визуально */
  height: 0;
  border-top: 0.06rem solid #fff; /* ~0.5px */
  margin: 0.55rem auto 0.45rem;
}

/* заголовок */
.details-head__title{
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;     /* ~18px */
  line-height: 1.22;
  text-transform: uppercase;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.35);
}

/* очень узкие экраны */
@media (max-width: 340px){
  .details-head__inner{ padding: 0.8rem 0.7rem; }
  .details-head__top{ font-size: 0.47rem; gap: 0.45rem; }
  .details-head__title{ font-size: 1.05rem; }
}


.measure{
  width: 100%;
  font-family: "Montserrat", sans-serif;
  margin-top: 30px;
}

/* верхний градиентный хедер */
.measure__head{
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  box-shadow: 0 0.125rem 0.125rem rgba(112,112,112,.4);
  color: #fff;
}

.measure__inner{
  max-width: 100%;         /* ~360 */
  margin: 0 auto;
  padding: 0.9rem 0.9rem;
  text-align: center;
}

.measure__head .measure__inner{
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  font-weight: 600;
  font-size: 0.875rem;        /* ~14 */
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.35);
}

/* тело */
.measure__body .measure__inner{
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
}

/* картинка */
.measure__img{
  width: 92%;                 /* ~244 из 284 */
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 0.31rem 0.06rem rgba(0,0,0,.15); /* 0 0 5px 1px */
  border-radius: 0.2rem;      /* лёгкое сглаживание */
}

/* красный текст */
.measure__note{
  margin: 0.65rem auto 0;
  width: 96%;
  font-weight: 600;
  font-size: 1.2rem;        /* ~14 */
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #AD0A2A;
}

/* очень узкие экраны */
@media (max-width: 340px){
  .measure__head .measure__inner,
  .measure__note{
    font-size: 0.82rem;
  }
  .measure__img{ width: 96%; }
}


.reviews{
  width: 100%;
  font-family: "Montserrat", sans-serif;
  margin-top: 30px;
}

/* header */
.reviews__head{
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  box-shadow: 0 0.125rem 0.125rem rgba(112,112,112,.4);
}

.reviews__inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 0.8rem 0.9rem;
}

.reviews__title{
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem; /* ~14 */
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.35);
      padding: 0.5rem 0;
}

/* note */
.reviews__body .reviews__inner{
  padding-top: 0.55rem;
  padding-bottom: 0.8rem;
}

.reviews__note{
  background: linear-gradient(90deg, #B5E1E9 0%, #D2EDEF 100%);
  padding: 0.6rem 0.6rem;
  font-weight: 700;
  font-size: 0.9rem; /* ~8 */
  line-height: 1.4;
  color: #000;
}


/* узкие экраны */
@media (max-width: 340px){
  .reviews__note{ font-size: 0.47rem; }
}


.how{
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

/* header */
.how__head{
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  box-shadow: 0 0.125rem 0.125rem rgba(112,112,112,.4);
  margin-top: 30px;
}

.how__inner{
  max-width: 100%;
  margin: 0 auto;
  padding: 0.8rem 0.9rem;
}

.how__title{
  margin: 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem; /* ~14 */
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.35);
      padding: 1rem 0;
}

/* body */
.how__inner--body{
  padding-top: 0.7rem;
  padding-bottom: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* card */
.how__card{
  width: 100%;
  display: flex;
  border-radius: 0.25rem; /* 4px */
  overflow: hidden;
  box-shadow: 0 0.06rem 0.06rem rgba(0,0,0,.15);
}

/* reverse layout for even rows */
.how__card--reverse{
  flex-direction: row-reverse;
}

/* text block */
.how__text{
  flex: 0 0 53%;
  background: linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  color: #fff;
  padding: 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}

/* image block */
.how__img{
  flex: 0 0 47%;
  background: #eee;
}

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

/* text styles */
.how__step{
  font-weight: 600;
  font-size: 0.625rem; /* ~10 */
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0.06rem 0.06rem 0.06rem rgba(0,0,0,.10);
}

.how__desc{
  font-weight: 500;
  font-size: 0.44rem;  /* ~7 */
  line-height: 1.28;   /* визуально как 9px */
  color: #fff;
}

/* tight screens */
@media (max-width: 340px){
  .how__desc{ font-size: 0.42rem; }
  .how__text{ padding: 0.5rem 0.6rem; }
}

/* visually hidden */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.order{
  width: 100%;
  background:
    linear-gradient(0deg, rgba(0,0,0,.25), rgba(0,0,0,.25)),
    linear-gradient(91.36deg, #099D9D 4.64%, #34B6B8 84.52%);
  font-family: "Montserrat", sans-serif;
}

.order__inner{
  max-width: 100%;     /* ~360 */
  margin: 0 auto;
  padding: 1.2rem 0.9rem 1.3rem;
}

.order__form{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.95rem;
}

/* общая "пилюля" */
.order__field{
  width: min(13.6rem, 92%); /* ~217px */
  position: relative;
}

.order__input,
.order__select{
  width: 100%;
  min-height: 2.45rem;      /* ~39px */
  border: 0;
  border-radius: 3.125rem;  /* 50px */
  background: #fff;
  box-shadow: 0 0.125rem 0.125rem rgba(0,0,0,.10);
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;       /* 12px */
  line-height: 1.25;
  color: #1f1f1f;
  outline: none;
}

/* placeholder */
.order__input::placeholder{
  color: #929292;
  opacity: 1;
}

/* select appearance */
.order__field--select .order__select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #929292; /* пока не выбрали */
  padding-right: 2.4rem;
}

/* когда выбран размер — делаем темным */
.order__select:valid{
  color: #1f1f1f;
}

/* стрелка справа */
.order__chev{
  position: absolute;
  right: 1.05rem;
  top: 50%;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 0.12rem solid #7b7b7b;
  border-bottom: 0.12rem solid #7b7b7b;
  transform: translateY(-55%) rotate(45deg);
  pointer-events: none;
}

/* кнопка */
.order__btn{
  width: min(13.6rem, 92%);
  min-height: 2.95rem;      /* ~47px */
  border: 0;
  border-radius: 3.125rem;
  background: linear-gradient(94.1deg, #FF2E49 21.07%, #A81629 88.82%);
  box-shadow: 0 0.125rem 0.125rem rgba(0,0,0,.10);
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;       /* 12px */
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.order__btn:active{
  transform: translateY(0.02rem);
}

/* строка остатка */
.order__stock{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  margin-top: -0.25rem;
}

.order__stock-text{
  font-weight: 400;
  font-size: 0.625rem; /* 10px */
  line-height: 1.2;
}

.order__stock-badge{
  min-width: 1.9rem;   /* 30px */
  height: 0.95rem;     /* 15px */
  padding: 0 0.45rem;
  background: #1B1B1B;
  border-radius: 0.25rem; /* 4px */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.625rem; /* 10px */
  line-height: 1.2;
  white-space: nowrap;
}

/* узкие экраны */
@media (max-width: 340px){
  .order__field,
  .order__btn{ width: min(12.8rem, 94%); }
}


.footer{
  width: 100%;
  background: #fff;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.footer__inner{
  max-width: 22.5rem;
  margin: 0 auto;
  padding: 1.1rem 0.9rem 1.2rem;
  text-align: center;
}

.footer__addr{
  font-weight: 500;
  font-size: 0.8rem;   /* ~8px */
  line-height: 1.45;
  margin-bottom: 0.75rem;
    font-family: "Montserrat", sans-serif;
}

.footer__meta{
  font-weight: 500;
  font-size: 0.8rem;   /* ~8px */
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.footer__tel{
  color: inherit;
  text-decoration: none;
}

.footer__links{
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}

.footer__link{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;

  font-weight: 500;
  font-size: 0.8rem;   /* ~8px */
  line-height: 1.35;
  text-align: center;
  color: #000;
    font-family: "Montserrat", sans-serif;
}

.footer__link:hover{
  text-decoration: underline;
}

/* ===== MODAL (dialog) ===== */
.modal{
  border: 0;
  padding: 0;
  background: transparent;
}

.modal::backdrop{
  background: rgba(0,0,0,.45);
}

.modal__box{
  width: min(46rem, 92vw);
  max-height: 86vh;
  overflow: auto;

  background: #fff;
  border-radius: 0.8rem;
  padding: 1.2rem 1.1rem;
  box-shadow: 0 0.6rem 1.4rem rgba(0,0,0,.25);

  font-family: "Montserrat", sans-serif;
  color: #000;
  position: relative;
}

.modal__close{
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 0.6rem;
  background: rgba(0,0,0,.06);
  cursor: pointer;

  font-size: 1.4rem;
  line-height: 1;
}

.modal__title{
  margin: 0.2rem 0 0.9rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;  /* на мобиле будет меньше из-за vw ограничения */
  line-height: 1.25;
}

.modal__content{
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.45;
}

.modal__content p{
  margin: 0 0 0.9rem;
}

@media (max-width: 420px){
  .modal__title{ font-size: 1.25rem; }
  .modal__content{ font-size: 0.85rem; }
}

.slider{
  width: 100%;
  overflow: hidden;
  position: relative;
  user-select: none;
  touch-action: pan-y;
}

.slider__track{
  display: flex;
  transition: transform 280ms ease;
  will-change: transform;
}

.slider__slide{
  flex: 0 0 100%;
}

.slider__slide img{
  width: 100%;
  height: auto;
  display: block;
}

/* dots */
.slider__dots{
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 0 0.3rem;
}

.slider__dot{
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #111;
  opacity: .25;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.slider__dot.is-active{
  opacity: 1;
}
.order__result {
  background: #fff;
  text-align: center;
    line-height: 45px;
  margin-top: 15px;
  font-weight: bold;
  color: green;
  border-radius: 15px;

  box-shadow: 0 0 0 rgba(0, 200, 0, 0.4);
  animation: glow 2s infinite ease-in-out;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 4px rgba(0, 200, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 12px rgba(0, 200, 0, 0.6);
  }
  100% {
    box-shadow: 0 0 4px rgba(0, 200, 0, 0.3);
  }
}