
 .cart-icon button,
  .cart-icon a {
    background: #ffd000;
    border: none;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
/* Общий стиль модального окна */
.cart-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

/* Контент модального окна */
.cart-modal-content {
  background: white;
  padding: 25px;
  margin: 5% auto;
  max-width: 650px;
  max-height: 90vh; /* увеличено с 90vh */
  overflow-y: auto; /* позволяет прокручивать при большом списке */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  position: relative;
}


/* Закрыть */
.cart-modal-content .close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #444;
  cursor: pointer;
}

.cart-modal-content .close:hover {
  color: #000;
}

         .buy-button {
        display: inline-block;
        padding: 4px 8px;
        background-color: #007BFF;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
    } 
    .order-button {
    background-color: #00a046;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    cursor: pointer;
  }

.product-card {
  text-align: center;
  margin: 30px auto;
  max-width: 300px;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.cta-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0071e3;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: background-color 0.3s ease;
  width: 160px;
  text-align: center;
}

.cta-button:hover {
  background-color: #005bb5;
}


.gradient-text {
  font-weight: bold;
  font-size: 1.5em;
  background: linear-gradient(90deg, #007aff, #af52de, #ff2d55, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.dark-blue-custom {
  color: #0b3d91;
}

.cta-apple-button {
  background: #007aff;
  color: white;
  font-weight: bold;
  border-radius: 12px;
  padding: 14px 50px;
  font-size: 1.1rem;
  text-transform: none;
  box-shadow: 0 8px 16px rgba(0, 122, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-apple-button:hover {
  background: #0051c9;
  box-shadow: 0 12px 24px rgba(0, 122, 255, 0.3);
}


#index-banner h2 {
  font-family: "SF Pro Display", sans-serif; /* или Montserrat, Inter */
  font-weight: 500;
  background: #007aff;
  color: white;
  font-size: 3rem;
  letter-spacing: -0.5px;
  text-align: center;
  animation: fadeInUp 3.4s ease-out;
}



@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





#order-payment {
  display: block !important;
  width: 100%;
  margin-top: 10px;
}


         .buy-button {
        display: inline-block;
        padding: 4px 8px;
        background-color: #007BFF;
        color: #ffffff;
        text-decoration: none;
        border-radius: 4px;
    } 
    .order-button {
    background-color: #00a046;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    display: block;
    margin: 20px auto;
    font-size: 16px;
    cursor: pointer;
  }
  



.faq-question {
  width: 100%;
  padding: 12px;
  background: #003366;
  color: #fff;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 5px;
  position: relative;
}

.faq-question .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 16px;
}

.faq-question.active .arrow {
  transform: translateY(-50%) rotate(180deg); /* поворот стрелки вверх */
}

.faq-answer {
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
}

