/* ============================================
   NEW-STYLE.CSS - Оптимизированные стили
   Вынесены из Blade-шаблонов для лучшей производительности
   ============================================ */

/* ============================================
   SKELETON LOADER - Индикатор загрузки изображений
   ============================================ */

.image-skeleton {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.image-skeleton::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #ddd;
    border-top-color: #ff3e1d;
    border-radius: 50%;
    animation: skeleton-spin 0.8s linear infinite;
}

@keyframes skeleton-spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Скрываем скелетон после загрузки */
.image-loaded .image-skeleton {
    display: none;
}

/* Плавное появление изображения */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Обертка для изображений с lazy loading */
.lazy-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.lazy-image-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
}

.lazy-image-wrapper img {
    position: relative;
    z-index: 2;
}

/* ============================================
   ГЛАВНАЯ СТРАНИЦА (home.blade.php)
   ============================================ */

/* Стили для баннеров в promo-slider */
.promo-slide-content {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.promo-slide-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.promo-slide-text {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 30px;
}

.promo-slide-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.promo-slide-text p {
    font-size: 16px;
    line-height: 1.5;
}

/* Стили для отображения 4 товаров в ряду */
.dashboard-graph {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dashboard-graph-item {
    width: 100%;
}

/* Индикатор загрузки */
.loading-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 62, 29, 0.2);
    border-top-color: #ff3e1d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Секция журнала */
.journal-section {
    padding: 60px 0;
    background-color: #fff;
}

.journal-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.journal-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
}

.journal-item:hover {
    transform: translateY(-5px);
}

.journal-item-img {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
}

.journal-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journal-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.journal-item-title {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.journal-more {
    text-align: center;
    margin-top: 40px;
}

.journal-more-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff3e1d;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.journal-more-link:hover {
    background-color: #e02e0d;
}

/* ============================================
   СТРАНИЦА ТОВАРА (products/show.blade.php)
   ============================================ */

/* Стили для страницы товара */
.product {
    padding: 40px 0;
    background-color: #fff;
}

.page-breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: #555;
}

.page-breadcrumbs a {
    color: #555;
    text-decoration: none;
}

.page-breadcrumbs a:hover {
    color: #ff3e1d;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-current {
    color: #ff3e1d;
    font-weight: 500;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.product-main-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.image-zoom-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.product-main-image:hover .image-zoom-icon {
    opacity: 1;
}

.product-gallery-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-nav-btn {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.gallery-nav-btn:hover {
    background-color: #f5f5f5;
}

.gallery-nav-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-thumbnails-container {
    flex: 1;
    overflow: hidden;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 5px;
}

.product-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: #ccc;
}

.thumbnail {
    flex: 0 0 80px;
    height: 106px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background-color: #f9f9f9;
}

.thumbnail.active {
    border-color: #ff3e1d;
}

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

.product-info {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px;
    line-height: 1.2;
    color: #333;
}

.product-article {
    color: #777;
    margin-bottom: 15px;
    font-size: 14px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-current {
    font-size: 28px;
    font-weight: 600;
    color: #ff3e1d;
}

.price-old {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.product-stock {
    margin-bottom: 20px;
    font-size: 15px;
}

.stock-status {
    font-weight: 500;
}

.in-stock {
    color: #2ecc71;
}

.out-of-stock {
    color: #e74c3c;
}

.stock-quantity {
    color: #777;
    margin-left: 5px;
}

/* Стили для блока выбора размеров */
.product-sizes {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.sizes-label {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
}

.sizes-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}

.size-option {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.size-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    width: 80px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    color: #333;
    text-align: center;
}

.size-label:hover {
    border-color: #ff3e1d;
}

.size-radio:checked + .size-label {
    border: 1px solid #ff3e1d;
    color: #fff;
    background-color: #ff3e1d;
    font-weight: 500;
}

.size-radio:disabled + .size-label {
    opacity: 0.45;
    cursor: not-allowed;
    background-color: #f5f5f5;
    border-style: dashed;
}

.size-out-of-stock {
    cursor: not-allowed;
}

/* Динамический блок наличия по размеру */
#stock-quantity-text {
    transition: opacity 0.2s;
}

#stock-quantity-text.updating {
    opacity: 0;
}

.size-radio:focus + .size-label {
    box-shadow: 0 0 0 2px rgba(255, 62, 29, 0.2);
}

.size-hint {
    font-size: 13px;
    color: #777;
    margin-top: 10px;
}

.product-actions {
    margin-top: 30px;
}

.product-actions-form {
    display: flex;
    align-items: center;
    gap: 15px;
}

.add-to-cart-btn {
    flex: 1;
    height: 50px;
    background-color: #ff3e1d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
}

.add-to-cart-btn:hover {
    background-color: #e02e0d;
}

.add-to-cart-btn.out-of-stock {
    background-color: #ccc;
    cursor: not-allowed;
}

.add-to-favorites-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}

.add-to-favorites-btn:hover {
    border-color: #ff3e1d;
    color: #ff3e1d;
}

.in-cart-btn {
    flex: 1;
    height: 50px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    gap: 10px;
    padding: 0 20px;
}

.in-cart-btn:hover {
    background-color: #27ae60;
}

/* Стили для блока описания */
.product-description {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-description h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.description-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.description-content p {
    margin-bottom: 15px;
}

/* Стили для блока характеристик */
.product-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.feature-name {
    font-weight: 500;
    color: #777;
    width: 150px;
    flex-shrink: 0;
}

.feature-value {
    color: #333;
}

/* Стили для блока похожих товаров */
.product-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.product-related h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.related-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Стили для отзывов */
.product-reviews-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.reviews-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.reviews-count {
    color: #777;
    font-weight: normal;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.review-author {
    font-weight: 600;
    color: #333;
}

.review-date {
    color: #777;
}

.review-rating {
    margin-left: auto;
}

.star {
    color: #ccc;
    font-size: 18px;
}

.star.filled {
    color: #ffc107;
}

.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.review-actions {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.btn-delete-review {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 14px;
}

.no-reviews {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    color: #777;
}

/* Стили для формы добавления отзыва */
.add-review {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
}

.add-review h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.review-form .form-group {
    margin-bottom: 20px;
}

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.rating-select select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background-color: #fff;
}

.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    resize: vertical;
    min-height: 120px;
}

.submit-review-btn {
    padding: 12px 25px;
    background-color: #ff3e1d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-review-btn:hover {
    background-color: #e02e0d;
}

.login-to-review {
    padding: 30px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 40px;
}

.login-to-review a {
    color: #ff3e1d;
    text-decoration: none;
    font-weight: 500;
}

.login-to-review a:hover {
    text-decoration: underline;
}

/* Стили для модального окна */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 1010;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 1010;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

/* ============================================
   СТРАНИЦА ЗАКАЗОВ (orders/show.blade.php)
   ============================================ */

.info-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
}

.btn-link:hover {
    color: #0056b3;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 14px;
}

.text-muted {
    color: #6c757d;
    font-size: 12px;
}

.tracking-badge {
    background-color: #e3f2fd;
    color: #1976d2;
    padding: 6px 12px;
    border-radius: 16px;
    font-family: 'Courier New', monospace;
    font-weight: 500;
    font-size: 14px;
}

.tracking-link {
    margin-top: 8px;
}

.tracking-link .btn-link {
    font-size: 13px;
    color: #1976d2;
}

.tracking-link .btn-link:hover {
    color: #0d47a1;
}

/* Стили для детализации суммы заказа */
.subtotal-row td,
.delivery-row td {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.total-row td {
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-top: 2px solid #ddd;
    background-color: #f8f9fa;
}

.subtotal-label,
.delivery-label,
.total-label {
    text-align: right;
    font-weight: 500;
}

.subtotal-amount,
.delivery-amount,
.order-total {
    text-align: right;
    font-weight: 600;
}

.delivery-amount {
    color: #1976d2;
}

.order-total {
    color: #2e7d32;
    font-size: 18px;
}

/* ============================================
   СТРАНИЦА СПИСКА ЗАКАЗОВ (orders/index.blade.php)
   ============================================ */

.delivery-type-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.delivery-type-badge.pickup {
    background-color: #e8f5e8;
    color: #2e7d32;
}

.delivery-type-badge.cdek {
    background-color: #e3f2fd;
    color: #1976d2;
}

.delivery-type-badge.dellin {
    background-color: #fff3e0;
    color: #f57c00;
}

.delivery-price {
    color: #666;
    font-weight: 500;
}

.order-delivery {
    text-align: center;
    min-width: 120px;
}

/* ============================================
   АДАПТИВНОСТЬ - ГЛАВНАЯ СТРАНИЦА
   ============================================ */

/* Стили для категорий на мобильных устройствах */
@media (max-width: 768px) {
    .collections-tag {
        margin-left: -15px;
        margin-right: -15px;
        width: calc(100% + 30px);
    }
    
    .collections-tag-lent {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0;
        margin-right: 0;
    }
    
    .collections-tag-lent-item:first-child {
        margin-left: 0;
    }
    
    .container {
        overflow-x: hidden;
    }
    
    #categories-scroll {
        scroll-padding-left: 15px;
    }
    
    .dashboard-graph {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .dashboard-graph {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .dashboard-graph {
        grid-template-columns: 1fr;
    }
    
    .journal-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   АДАПТИВНОСТЬ - СТРАНИЦА ТОВАРА
   ============================================ */

@media (max-width: 992px) {
    .product-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-gallery,
    .product-info {
        max-width: 100%;
    }
    
    .product-related h2 {
        font-size: 22px;
    }
    
    .related-products {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product {
        padding: 30px 0;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .price-current {
        font-size: 24px;
    }
    
    .price-old {
        font-size: 16px;
    }
    
    .related-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .add-review {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .product {
        padding: 20px 0;
    }
    
    .product-gallery-nav {
        flex-wrap: wrap;
    }
    
    .product-thumbnails-container {
        order: 2;
        width: 100%;
        margin-top: 10px;
    }
    
    .gallery-nav-btn {
        order: 1;
    }
    
    /* Упрощенные стили для кнопок */
    .product-actions-form {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 15px;
    }
    
    .add-to-cart-btn,
    .in-cart-btn {
        height: 48px;
        flex: 1;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .add-to-favorites-btn {
        width: 48px;
        height: 48px;
        padding: 12px;
        border-radius: 4px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .sizes-options {
        gap: 8px;
    }
    
    .size-label {
        min-width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
    }
    
    .related-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .catalog-item-img {
        height: 0;
        padding-bottom: 133.33%; /* соотношение 3:4 */
        position: relative;
    }
    
    .catalog-item-img img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .catalog-item-title {
        font-size: 14px;
        min-height: 40px;
        margin-top: 8px;
    }
    
    .catalog-item-price {
        margin-top: 4px;
    }
    
    .catalog-item-price .price-current {
        font-size: 14px;
    }
    
    .price-old {
        font-size: 12px;
    }
}
