

/* Start:/local/templates/kuhni/css/cart.css?177709381912528*/
.cart-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0 40px 0;
}

.cart-content {
    display: flex;
    gap: 20px;
}

/* Левая часть - товары */
.cart-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 12px 32px 12px 12px;
    background: #F2F3F5;
    gap: 6px; 
}

.item-image {
    width: 81px;
    height: 79px;
    flex-shrink: 0; 
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

.item-info {
    width: 220px;
}

.item-name {
    width: 220px; 
    color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    flex-shrink: 0;
	margin-left:18px;
}

.item-name a {
	text-decoration:none; 
	text-align:left;
	 color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
	}
	
	.item-name a:hover {
	text-decoration:underline; 
	}

.item-params {
    color: #818084;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    line-height: 1.3;
    width: 110px;
    flex-shrink: 0;
}


.item-price {
    color: #818084;
    font-size: 20px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    min-width: 86px;
    flex-shrink: 0;
	text-align: center;
}

.item-quantity {
    display: flex;
    align-items: center;
	justify-content: center;
    height: 40px;
    padding: 10px 20px;
    background: white;
    gap: 20px;
    flex-shrink: 0;
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    height: 40px;
    transition: background-color 0.2s;
    border-radius: 4px;
}


.quantity-value {
    color: #818084;
    font-size: 15px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    min-width: 20px;
    text-align: center;
}

.item-total {
    color: #090909;
    font-size: 20px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    min-width: 88px;
    flex-shrink: 0;
	text-align: center;
}

.item-delete {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

/* Правая часть - оформление */
.cart-sidebar {
    width: 400px;
    padding: 40px;
    background: #F2F3F5;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-title {
    color: #303030;
    font-size: 36px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
}

.delivery-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.delivery-section h3 {
    color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin: 0;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
}

.delivery-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #818084;
    border-radius: 50%;
}

.delivery-option input[type="radio"]:checked + .radio-custom {
    border-color: #090909;
}

.delivery-option input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #ce2e2e;
    border-radius: 50%;
}

.delivery-name {
    flex: 1;
    color: #818084;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    margin-left: 10px;
}

.delivery-option input[type="radio"]:checked ~ .delivery-name {
    color: #ce2e2e;
}

.delivery-price {
    color: #818084;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
}

.total-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.total-section h3 {
    color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin: 0;
}

.total-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.total-price {
    color: #ce2e2e;
    font-size: 32px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.total-params {
    color: #818084;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    text-align: right;
}

.checkout-btn {
    display: block;
    height: 64px;
    line-height: 64px;
    background: #ce2e2e;
    color: white;
    text-align: center;
    font-size: 24px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 24px;
    transition: background 0.3s;
}

.checkout-btn:hover {
    background: #b30803;
}

/* Пустая корзина */
.cart-empty {
    text-align: center;
    padding: 50px;
    background: #F2F3F5;
}

.cart-empty p {
    color: #303030;
    font-size: 18px;
    margin-bottom: 20px;
}

.continue-shopping {
    display: inline-block;
    padding: 12px 24px;
    background: #ce2e2e;
    color: white;
    text-decoration: none;
    font-family: 'Inter Tight', sans-serif;
}



/* Адаптивность */
@media (max-width: 1200px) {
    .cart-content {
        flex-direction: column;
    }
    
    .cart-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-wrap: wrap;
        padding: 12px;
    }
    
    .item-image {
        width: 60px;
        height: 60px;
    }
    
    .item-info {
        width: calc(100% - 80px);
    }
}



/* Блок очистки корзины */
.cart-clear {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
    width: 100%;
}

.cart-clear:hover {
    opacity: 0.7;
}

.cart-clear:hover .cart-clear-icon svg path {
    stroke: #ce2e2e;
}

.cart-clear-text {
    color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-style: italic;
    font-weight: 600;
    text-transform: uppercase;
}

.cart-clear-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.cart-clear-icon svg {
    width: 16px;
    height: 16px;
}

.cart-clear-icon svg path {
    stroke: #303030;
    transition: stroke 0.2s;
}

/* Анимации для уведомлений */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}


:root {
    --confirm-bg: #ffffff;
    --confirm-text: #303030;
    --confirm-btn-bg: #ce2e2e;
    --confirm-btn-hover: #b30803;
    --confirm-btn-cancel-bg: #F2F3F5;
    --confirm-btn-cancel-hover: #e0e0e0;
    --confirm-border-radius: 8px;
    --confirm-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}


/* ========== МОДАЛЬНЫЕ ОКНА ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--confirm-bg, #ffffff);
    border-radius: var(--confirm-border-radius, 16px);
    padding: 32px;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--confirm-shadow, 0 20px 60px rgba(0, 0, 0, 0.3));
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #999;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--confirm-btn-cancel-bg, #f1f3f5);
    color: #333;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    color: var(--confirm-btn-bg, #ce2e2e);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--confirm-text, #303030);
    margin-bottom: 12px;
    text-align: center;
    font-family: 'Involve', sans-serif;
}

.modal-text {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
    font-family: 'Inter Tight', sans-serif;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-btn {
    padding: 14px 32px;
    /*border-radius: var(--confirm-border-radius, 8px);*/
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    min-width: 140px;
    font-family: 'Inter Tight', sans-serif;
    text-transform: uppercase;
}

.modal-btn-cancel {
    background: var(--confirm-btn-cancel-bg, #F2F3F5);
    color: var(--confirm-text, #303030);
}

.modal-btn-cancel:hover {
    background: var(--confirm-btn-cancel-hover, #e0e0e0);
}

.modal-btn-confirm {
    background: var(--confirm-btn-bg, #ce2e2e);
    color: white;
}

.modal-btn-confirm:hover {
    background: var(--confirm-btn-hover, #b30803);
}

/* ========== УВЕДОМЛЕНИЯ ========== */
#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.notification {
    background: white;
    color: var(--confirm-text, #303030);
    padding: 16px 24px;
    border-radius: var(--confirm-border-radius, 8px);
    margin-bottom: 10px;
    box-shadow: var(--confirm-shadow, 0 10px 30px rgba(0, 0, 0, 0.15));
    animation: slideIn 0.3s ease;
    font-family: 'Inter Tight', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid transparent;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.info {
    border-left-color: var(--confirm-btn-bg, #ce2e2e);
}

.notification.warning {
    border-left-color: #ffc107;
}

.notification-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    width: 100%;
    animation: progressBar 3s linear forwards;
}

.notification.success .notification-progress {
    background: #28a745;
}

.notification.error .notification-progress {
    background: #dc3545;
}

.notification.info .notification-progress {
    background: var(--confirm-btn-bg, #ce2e2e);
}

/* Анимации уже есть в вашем файле, но добавим недостающие */
@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}

/* Адаптивность для модальных окон и уведомлений */
@media (max-width: 480px) {
    .modal-container {
        padding: 24px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
    
    .notification {
        min-width: auto;
        width: calc(100vw - 40px);
    }
}


/* End */


/* Start:/local/templates/kuhni/css/product.css?177710731313343*/



/* Кнопка "В корзине" - после добавления товара */
.product-card__btn--in-cart {
    background: #c32a34 !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    color:#fff;
}

.product-card__btn--in-cart:hover {
    background: #c32a34 !important;
}

.product-card__btn--in-cart svg {
    display: none !important;
}



/* ===== Products Showcase — блок товаров на главной ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600&display=swap');

@font-face {
    font-family: 'Bebas Neue Cyrillic';
    src: url('/local/templates/.default/fonts/BebasNeueCyrillic.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Основной контейнер */
.products-showcase {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
}

.products-showcase.similar-products {
     padding: 40px 0 0px 0;
}

.products-showcase.also-bought-products{
     padding: 40px 0 40px 0;
}
.products-showcase.popular {
     padding: 40px 0 40px 0;
}

.products-showcase__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0px;
}

/* Заголовочная часть */
.products-showcase__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.products-showcase__title {
    margin: 0;
    color: #303030;
    font-size: 48px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
}

.products-showcase__btn-all {
    color: #ce2e2e;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid #ce2e2e;
    font-family: 'Inter Tight', sans-serif;
}

.products-showcase__btn-all:hover {
    background-color: #ce2e2e;
    color: white;
}

/* Сетка 5 колонок */
.products-showcase__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* ===== ОБНОВЛЕННЫЕ СТИЛИ КАРТОЧКИ ТОВАРА ===== */
/* Карточка товара */
.product-card {
    background: white;
    border-radius: 0px;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
	box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
	box-shadow:0px 0px 2px 1px rgba(0, 0, 0, 0.05);
	background:#F2F3F5;
	cursor:pointer;
}

.product-card__inner {
    padding: 0px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

/* Блок изображения со слайдером */
.product-card__image-wrapper {
    position: relative;
    align-self: stretch;
    /*height: 271px;*/
    background: white;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0; /* не сжимается */
}

.product-card__image-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card__image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card__image {
    /*width: 177px;*/
	width:100%;
    height: 232px;
	min-height:232px;
    /*object-fit: contain;*/
	 object-fit: cover;
    border-radius: 2px;
    display: none;
}

.product-card__image--active {
    display: block;
}

/* Индикаторы изображений (точки) */
.product-card__image-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.product-card__dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E1E1E1;
    cursor: pointer;
    transition: background 0.2s;
}

.product-card__dot:hover {
    background: #818084;
}

.product-card__dot--active {
    background: #818084;
}

/* Стрелки слайдера */
.product-card__slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    padding: 0;
}

.product-card__slider-arrow:hover {
    background: white;
}

.product-card__slider-arrow--prev {
    left: 8px;
}

.product-card__slider-arrow--next {
    right: 8px;
}

.product-card__slider-arrow svg {
    width: 8px;
    height: 12px;
}

/* Верхняя информация (артикул + рейтинг) */
.product-card__info-top {
    display: flex;
	padding:14px;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    height: 18px;
    flex-shrink: 0; /* не сжимается */
}

.product-card__articul {
    color: #bcbcbc;
    font-size: 18px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    line-height: 1;
}

.product-card__rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
}

.product-card__rating-value {
    color: #ce2e2e;
    font-size: 18px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    line-height: 1;
}

.product-card__rating-count {
    color: #090909;
    font-size: 18px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    line-height: 1;
}

/* Блок цен */
.product-card__prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: stretch;
    flex-shrink: 0; /* не сжимается */
	padding:14px;
}

.product-card__price-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

.product-card__price-label-text {
    color: #818084;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
}

.product-card__price-units {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product-card__price-unit {
    color: #818084;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s;
}

.product-card__price-unit:hover {
    color: #ce2e2e;
}

.product-card__price-unit--active {
    color: #303030;
    font-weight: 500;
    cursor: default;
}

.product-card__price-unit--active:hover {
    color: #303030;
}

.product-card__price-values {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
}

.product-card__price-current {
    color: #ce2e2e;
    font-size: 32px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

.product-card__price-old {
    color: #090909;
    font-size: 20px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-decoration: line-through;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
}

/* ===== ОБНОВЛЕННЫЕ СТИЛИ НАЗВАНИЯ ТОВАРА ===== */
.product-card__title {
    margin: 8px 14px;
    align-self: stretch;
    flex-shrink: 0; /* не сжимается, высота будет управляться JS */
    transition: height 0.1s ease;
    height: auto; /* по умолчанию авто */
    display: flex;
    align-items: flex-start;
}

/* Убираем ограничение по количеству строк */
.product-card__title-link {
    color: #303030;
    font-size: 16px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    display: block; /* меняем с -webkit-box на block */
    overflow: visible; /* убираем скрытие */
    text-overflow: clip; /* убираем многоточие */
    line-height: 1.3;
    word-wrap: break-word; /* перенос длинных слов */
    overflow-wrap: break-word;
    width: 100%; /* занимает всю ширину родителя */
}

.product-card__title-link:hover {
    color: #ce2e2e;
}

/* Кнопки */
.product-card__actions {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    flex-shrink: 0; /* не сжимается */
    margin-top: auto; /* прижимает кнопки к низу */
}

.product-card__btn {
    flex: 1;
    height: 40px !important; /* Фиксированная высота для обеих кнопок */
    padding: 10px 18px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1;
    box-sizing: border-box;
}

.product-card__btn svg {
    flex-shrink: 0;
}

.product-card__btn span {
    color: white;
    line-height: 1;
}

.product-card__btn--buy {
    background: #ce2e2e;
}

.product-card__btn--buy:hover {
    background: #c32a34;
}

.product-card__btn--details {
    background: #303030;
    display: flex !important; /* Исправлено для a-ссылки */
}

.product-card__btn--details:hover {
    background: #4a4a4a;
}

/* Состояние кнопки "В корзине" */
.product-card__btn--in-cart {
    background: #c32a34;
}

.product-card__btn--in-cart:hover {
    background: #0a5a9e;
}

/* Бейджи */
.product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
}

.product-card__badge {
    padding: 8px 10px;
    color: white;
    font-size: 14px;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    border-radius: 2px;
    line-height: 1;
    white-space: nowrap;
}

.product-card__badge--sale {
    background: #ce2e2e;
}

.product-card__badge--stock {
    background: #303030;
}

.product-card__badge--outstock {
    background: #818084;
}

/* Дополнительные стили для бейджей */
.product-card__badge--new {
    background: #4CAF50;
}

.product-card__badge--hit {
    background: #FF9800;
}

.product-card__badge--promo {
    background: #9C27B0;
}

.product-card__badge--recommend {
    background: #2196F3;
}

.product-card__badge--bestseller {
    background: #E91E63;
}

.product-card__badge--exclusive {
    background: #673AB7;
}

.product-card__badge--limited {
    background: #795548;
}

.product-card__badge--gift {
    background: #FF4081;
}

.product-card__badge--discount {
    background: #F44336;
}

.product-card__badge--expected {
    background: #FFC107;
    color: #303030;
}

.product-card__badge--outofstock {
    background: #9E9E9E;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .products-showcase__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .products-showcase__title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .products-showcase__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-showcase__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .products-showcase {
        padding: 40px 0;
    }
    
    .products-showcase__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .products-showcase__title {
        font-size: 32px;
    }
    
    .products-showcase__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card__image-wrapper {
        height: 220px;
    }
    
    .product-card__image {
        width: 150px;
        height: 150px;
    }
    
    .product-card__price-current {
        font-size: 28px;
    }
    
    .product-card__price-old {
        font-size: 18px;
    }
    
    .product-card__btn {
        padding: 10px 16px;
        font-size: 16px;
        height: 40px !important;
    }
    
    .product-card__badge {
        padding: 6px 8px;
        font-size: 12px;
    }
    
    .product-card__title {
        margin: 6px 0;
    }
}

@media (max-width: 576px) {
    .products-showcase__grid {
        grid-template-columns: 1fr;
    }
    
    .product-card__image-wrapper {
        height: 250px;
    }
    
    .product-card__image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-card__inner {
        padding: 8px;
    }
    
    .product-card__image-wrapper {
        height: 200px;
    }
    
    .product-card__image {
        width: 130px;
        height: 130px;
    }
    
    .product-card__title {
        margin: 4px 0;
    }
}
/* End */
/* /local/templates/kuhni/css/cart.css?177709381912528 */
/* /local/templates/kuhni/css/product.css?177710731313343 */
