

/* Start:/bitrix/templates/webface/styles.css?17650271655255*/
.navbar-brand img {
    height: 60px;
    object-fit: contain;
}
.footer-logo {
    height: 60px;
    object-fit: contain;
}
font.tablebodytext {
    display: none;
}

/* Контейнер FAB */
.fab-container {
    position: fixed;
    bottom: 4.5rem;
    right: 1.2rem;
    z-index: 1000;
}

/* Основная кнопка */
.fab-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #0d7b35, #0cb94b);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgb(22 176 84 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.fab-main i {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgb(66 222 135 / 70%);
}

/* Активное состояние основной кнопки */
.fab-container.active .fab-main {
    transform: rotate(45deg);
    background: linear-gradient(45deg, #0d7b35, #0cb94b);
}

/* Скрытые кнопки */
.fab-buttons {
    position: absolute;
    bottom: 70px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 1001;
}

.fab-container.active .fab-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Отдельные кнопки */
.fab-button {
    width: 50px;
    height: 50px;
    background: var(--color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(20px) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease calc(var(--i) * 0.1s);
    position: relative;
	text-decoration: none;
}

.fab-container.active .fab-button {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.fab-button i {
    color: white;
    font-size: 20px;
}

.fab-button:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Подсказки */
.tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.fab-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Оверлей (фон) */
.fab-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.fab-container.active .fab-overlay {
    opacity: 1;
    visibility: visible;
}
/* Стили для SVG иконки MAX */
.max-icon {
    width: 32px;
    height: 32px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Специальный стиль для кнопки MAX */
.max-button {
    background: linear-gradient(38deg, #43a2f4 0%, #5534e2 100%);
}

.max-button::before {
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.25) 100%);
}
.max-button img{
    width: 60%;
    border-radius: 50%;
}
.responsive-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 15px 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.responsive-item__text {
  flex-shrink: 0;
  max-width: 70%;
  font-size: 18px;
  color: #222;
  line-height: 1.3;
}

.responsive-item__dots {
  flex: 1;
  min-width: 20px;
  height: 0;
  border-bottom: 2px dotted #bbb;
  margin: 0 5px;
  align-self: flex-end;
  margin-bottom: 0.3em;
}

.responsive-item__meta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  min-width: 80px;
}

.responsive-item__meta .weight {
  font-size: 14px;
  color: #666;
}

.responsive-item__meta .price {
  font-size: 18px;
  font-weight: 700;
  color: #2e8b57;
}
.hover-bg-soft-primary{
    transition: .2s linear;
}
.hover-bg-soft-primary:hover{
    background-color: #f1fbf8 !important;
    box-shadow: none;
    
}



/* Адаптивность */
@media (max-width: 768px) {
    .fab-container {
        bottom: 4.5rem;
        right: 1.25rem;
    }
    
    .fab-main {
        width: 56px;
        height: 56px;
    }
    
    .tooltip {
        display: none; /* На мобильных скрываем подсказки */
    }
  .responsive-item {
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .responsive-item__text {
    max-width: 100%;
    order: 1;
  }
  
  .responsive-item__dots {
    display: none;
  }
  
  .responsive-item__meta {
    order: 2;
    flex-direction: row;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 8px;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .responsive-item__text {
    font-size: 16px;
  }
  
  .responsive-item__meta .price {
    font-size: 16px;
  }
}
/* End */
/* /bitrix/templates/webface/styles.css?17650271655255 */
