/* Название товара - покрупнее */
.rrow .item-text p strong a,
.rrow .item-text .font-small a.bold {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}

/* Предупреждение - крупнее и зеленое 
.rrow .item-warning .small.red-text {
  font-size: 0.9rem !important;
  color: #358144 !important;
  line-height: 1.4 !important;
  display: block !important;
  margin-bottom: 5px !important;
}*/

/* Цена - крупный размер */
.rrow .list-unstyled .item-price,
.rrow .list-unstyled .item-price.green-text {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #358144 !important;
  margin-right: 20px !important;
  display: inline-block !important;
}

/* Количество товара (цифра) */
.rrow .list-unstyled .qty.green-text {
  font-size: 1rem !important;
  font-weight: 500 !important;
}

/* Корзина пустая - убрать точки у списка */
.rrow .list-unstyled,
.rrow .list-unstyled .list-inline-item {
  list-style: none !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
  .rrow .item-text p strong a,
  .rrow .item-text .font-small a.bold {
    font-size: 1rem !important;
  }
  
  .rrow .item-warning .small.red-text {
    font-size: 0.8rem !important;
  }
  
  .rrow .list-unstyled .item-price,
  .rrow .list-unstyled .item-price.green-text {
    font-size: 24px !important;
  }
}

/* Информационный блок о бутылях */
.exchange-info {
    background-color: #e8f5e9 !important;
    border-left: 4px solid #358144 !important;
    margin-bottom: 20px !important;
    padding: 15px !important;
}

.exchange-info i {
    color: #358144 !important;
    font-size: 20px !important;
}

.exchange-info strong {
    color: #358144 !important;
}

.exchange-info .alert-link {
    color: #358144 !important;
    font-weight: 500 !important;
    text-decoration: underline !important;
}

.exchange-info .alert-link:hover {
    color: #2a6b36 !important;
    text-decoration: none !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .exchange-info {
        padding: 12px !important;
    }
    
    .exchange-info div[style*="display: flex"] {
        gap: 8px !important;
    }
    
    .exchange-info i {
        font-size: 18px !important;
    }
}


.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #358144 !important;
  border-color: #358144 !important;
  transform: none !important;
  border-radius: 0.25rem !important;
  width: 1rem !important;
  height: 1rem !important;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-size: 65% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 1rem !important;
  height: 1rem !important;
  top: 0.25rem !important;
  left: 0 !important;
  transform: none !important;
}

/* Базовый стиль чекбокса */
.custom-control-label::before {
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 0.25rem !important;
  top: 0.25rem !important;
  border: 1px solid #ced4da !important;
  background-color: #fff !important;
}

.custom-control-label::after {
  width: 1rem !important;
  height: 1rem !important;
  top: 0.25rem !important;
  left: 0 !important;
}

/* Блок обменной бутыли */
.order-box.s-order-section {
    margin-top: 20px;
    margin-bottom: 20px;
}

.order-box.s-order-section h2 {
    font-size: 1.5rem;
    color: #358144;
    margin-bottom: 1rem;
    font-weight: 500;
}
/*
.order-box.s-order-section .s-section-body {
    background-color: #f8f9fa !important;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    border-left: 4px solid #358144 !important;
}
*/
.order-box.s-order-section .s-section-body strong {
    color: #406cb1;
    font-weight: 600;
    font-size: 1rem;
}

/* Уменьшаем интервал между строчками */
.order-box.s-order-section .s-section-body {
    line-height: 1.3 !important;
}

.order-box.s-order-section .s-section-body br {
    margin: 0;
    line-height: 0;
}

/* Кнопка добавления бутылей  */
.order-box.s-order-section .btn-outline-primary {
    background-color: #358144 !important;
    color: #ffffff !important;
    border: none !important;
    transition: all 0.2s ease;
}

.order-box.s-order-section .btn-outline-primary:hover {
    color: #ffffff !important;
    border: none !important;
}

.order-box.s-order-section .btn-outline-primary i {
    margin-right: 5px;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .order-box.s-order-section h2 {
        font-size: 1.2rem;
    }
    
    .order-box.s-order-section .s-section-body {
        padding: 0.75rem !important;
        line-height: 1.2 !important;
    }
    
    .order-box.s-order-section .s-section-body strong {
        font-size: 0.9rem;
    }
    
    .order-box.s-order-section .btn-outline-primary {
        font-size: 0.85rem;
        padding: 0.375rem 0.75rem;
    }
}

.badge-success {
    background-color: #358144 !important;
}