.checkbox{margin-bottom: 20px;}
.footer__policy{font-size:12px;}
/* Календарь */
  .calendar {
    position: relative;
    width: 200px;
    cursor: zoom-in;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .calendar:hover {
    transform: scale(1.05);
  }

  .calendar-header {
    background: #e63946;
    color: white;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 10px 10px 0 0;
  }

  .calendar-date {
    font-size: 4em;
    margin: 30px 0;
    color: #333;
  }

  .calendar-footer {
    font-size: 1em;
    color: #666;
  }


  /* Всплывающее окно */
  .modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
	z-index: 4;
  }

  .modal-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    width: 320px;
    text-align: center;
    position: relative;
  }

.modal-content img{width:100%;}

  .modal-content h2 {
    margin-top: 0;
  }

  .close-btn {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 1.3em;
    cursor: pointer;
    color: #e63946;
  }

  .arrow-link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: white;
    background: #457b9d;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
  }

  .arrow-link:hover {
    background: #1d3557;
  }
.footer__item{color:#fff; font-size:12px;}
.header__logo2{width:370px;}
.art__row h3 {
  color: #ffcc9a;
}
.popup-window-buttons span{color: #000;}
.sale_order_full_table .btn-success {
  background-color: #ffcc9a;
  color: #000;
  border: 1px solid #000;
}
.catalog-cart-counter{background-color: #ffcc9a;}
.product-item-detail-tabs-list, .product-item-detail-tabs-list li{list-style: none;}
.product-item-detail-buy-button{background: #ffcc9a !important; border-color:  #ffcc9a !important;}
.teles{display:flex;align-items: center;}
.sale_order_full_table .btn{}
.product-item-image-slide, .product-item-image-original, .product-item-image-alternative {
  height: 100%;
  background-color: #fff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.main-user-consent-request-announce-link {
  line-height: 1;
  font-size: 14px;
}
.product-item-button-container .btn{width:100%;}
.info__content_t .buy{margin-top:20px; cursor:pointer;}
.info__content_t .btnticket{
	background: #ffcc9a;
 	color: #000;
	border: 1px solid #000;
	padding:15px;
}
.info__content_t .text{min-height:110px;}
.info__content_t .price{color:#ffcc9a; min-height:55px;}
#prog a{color: #000000;}
#info a{color: #fff;}
#bx-soa-order-form .btn{color:#fff;}
.form-inline .form-control{border-radius: 0; -webkit-box-shadow: none; width: 100%; padding: 0;}
#inline a{color:#ffcc9a;}
.footer__content{display:flex; justify-content: inherit; align-items: center;}
.footer__items{justify-content: center;display: flex;align-items: center;}
.footer__items_1{flex-direction: column; align-items: start;}
.footer__content2{display:flex; justify-content: space-between;}
@media (max-width:991px) {
.header__logo2 {
  width: 100%;
}
.footer__content {
  flex-direction: column;
}
.footer__content2 {
  flex-direction: column;
}
.footer__items {
  flex-direction: column;
  justify-content: center;
}
.footer__items_1 {
  align-items: center;
}
.footer__content2 {
  align-items: center;
}
}

/* Сетка карточек */
.info__items_t {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Карточка */
.info__item_t {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.info__item_t:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Картинка */
.info__img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Контент */
.info__content_t {
    padding: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info__content_t h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Текст */
.info__content_t .text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* 🔥 Цена — главный акцент */
.price {
    margin-top: auto;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 8px 20px rgba(255,122,24,0.35);
}

/* Мелкий текст в цене */
.price span {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

/* Кнопка */
.buy {
    margin-top: 16px;
}

.buy a {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    background: #ff7a18;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background .3s ease, transform .2s ease;
}

.buy a:hover {
    background: #e86700;
    transform: scale(1.03);
}