.product-card{
    box-shadow: 0 0 10px white;
    max-height: 500px;
    
    
}
.card-href{
    color: rgb(65, 65, 65) !important;
}
.category-href{
    background-image: linear-gradient(to right, #ffb700, #9a5800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.2s;
}
.category-href:hover{
    background-image: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: gold;
}

        /* Search and Filter */
        .search-filter {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .search-box {
            flex: 1;
            min-width: 250px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 12px 20px 12px 45px;
            border: 0;
            border-radius: 50px;
            font-size: 16px;
            transition: all 0.3s;
        }

        .search-box input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
        }

        .search-box input:hover {
            background-color: #f8f5f1;
        }

        .search-box i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: goldenrod;
            font-size: 18px;
        }

        

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .product-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            max-height: 1000px;
            
        }

        


        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--success);
            color: white;
            padding: 5px 10px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .product-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-category {
            color: rgb(148, 131, 32) !important;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .product-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .product-description {
            color: #8d8d8d;
            font-size: 14px;
            margin-bottom: 15px;
            display: -webkit-box;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            max-height: 60px;
        }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
        }

        .product-price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .product-old-price {
            text-decoration: line-through;
            color: #999;
            font-size: 14px;
            margin-left: 5px;
        }

        .add-to-cart {
            background-color: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .add-to-cart:hover {
            background-color: var(--primary-dark);
            transform: scale(1.1);
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .page-item {
            list-style: none;
        }

        .page-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: white;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .page-link:hover, .page-link.active {
            background-color: var(--primary);
            color: white;
        }


@media (min-width: 500px) {
    .products-grid{
        margin-left: 40px;
        margin-right: 40px;
    }
}






:root {
            --gold-primary: #f6e05e;
            --gold-secondary: #f59e0b;
            --gold-tertiary: #ecc94b;
            --light-bg: #f8fafc;
            --dark-text: #1a202c;
            --gray-border: #e2e8f0;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        
        
        
        
        
        
        
        
        .btn-container {
            z-index: 1;
            position: relative;
        }
        
        .filter-btn {
            padding: 12px 20px;
            background: linear-gradient(to right, var(--gold-primary), var(--gold-tertiary));
            color: var(--dark-text);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .filter-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .filter-btn.active {
            background: linear-gradient(to right, var(--dark-text), #2d3748);
            color: white;
        }
        
        .filter-icon {
            font-size: 1.1rem;
        }
        
        .filters-panel {
            background: var(--light-bg);
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
            border-bottom: 1px solid var(--gray-border);
        }
        
        .filters-panel.active {
            padding: 20px;
            max-height: 1200px;
        }
        
        .filters-content {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 16px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease 0.2s;
        }
        
        .filters-panel.active .filters-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        .filter-group {
            margin-bottom: 15px;
        }
        
        .filter-group h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: var(--dark-text);
            padding-bottom: 6px;
            border-bottom: 2px solid var(--gold-primary);
            display: inline-block;
        }
        
        .options {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .checkbox-label:hover {
            color: var(--gold-secondary);
        }
        
        .custom-checkbox {
            position: relative;
            width: 20px;
            height: 20px;
            border: 2px solid var(--gray-border);
            border-radius: 4px;
            transition: all 0.2s;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .custom-checkbox::before {
            content: "✓";
            font-size: 14px;
            color: white;
            position: absolute;
            opacity: 0;
            transform: scale(0.5);
            transition: all 0.2s;
        }
        
        input[type="checkbox"] {
            display: none;
        }
        
        input[type="checkbox"]:checked + .custom-checkbox {
            background: linear-gradient(to right, var(--gold-primary), var(--gold-tertiary));
            border-color: var(--gold-tertiary);
        }
        
        input[type="checkbox"]:checked + .custom-checkbox::before {
            opacity: 1;
            transform: scale(1);
        }
        
        .range-input {
            width: 100%;
            accent-color: var(--gold-tertiary);
        }
        
        .range-values {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            color: #4a5568;
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            grid-column: 1 / -1;
        }
        
        .action-btn {
            flex: 1;
            padding: 12px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            font-size: 1rem;
        }
        
        .apply-btn {
            background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
            color: var(--dark-text);
        }
        
        .reset-btn {
            background: white;
            border: 2px solid var(--gray-border);
            color: #4a5568;
        }
        
        .apply-btn:hover {
            box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
            transform: translateY(-2px);
        }
        
        .reset-btn:hover {
            background-color: #f1f5f9;
        }
        
        
        
        
        
        
        
        
        
        .icon-placeholder {
            font-size: 2.5rem;
            color: rgba(0, 0, 0, 0.1);
        }
        
        .product-info {
            padding: 16px;
        }
        
        .product-name {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-text);
        }
        
        .product-price {
            color: var(--gold-secondary);
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        
        
        
        
        /* Анимация фона кнопки */
        @keyframes shimmer {
            0% { background-position: -100% 0; }
            100% { background-position: 200% 0; }
        }
        
        .filter-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255,255,255,0.4), 
                transparent);
            opacity: 0;
            transition: opacity 0.3s;
            animation: shimmer 1.5s infinite linear;
        }
        
        .filter-btn:hover::after {
            opacity: 1;
        }
        
        /* Адаптивность */
        @media (max-width: 768px) {
            .filters-content {
                grid-template-columns: 1fr;
            }
            
            
        }
        
        @media (max-width: 480px) {
            
            .action-buttons {
                flex-direction: column;
            }
        }


/* Новая структура макета */
.catalog-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Левая панель сортировки и фильтров */
.filters-sorting-panel {
    flex: 0 0 320px;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Увеличили тень для видимости */
    position: sticky;
    top: 20px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border: 1px solid #e2e8f0; /* Добавили границу */
}

/* Секция сортировки */
.sorting-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.sorting-header {
    margin-bottom: 20px;
}

.sorting-header h3 {
    margin: 0;
    color: #1a202c; /* Явно указали цвет */
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f6e05e;
}

/* Секция фильтров */
.filters-section {
    margin-bottom: 20px;
}

.filters-header {
    margin-bottom: 20px;
}

.filters-header h3 {
    margin: 0;
    color: #1a202c; /* Явно указали цвет */
    font-size: 1.3rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #f6e05e;
}

.sort-group,
.filter-group {
    margin-bottom: 20px;
}

.sort-group h4,
.filter-group h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #1a202c; /* Явно указали цвет */
    font-weight: 600;
}

.sort-group .options,
.filter-group .options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Стили для текста и меток */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: #1a202c !important; /* Важно! Принудительно задаем цвет */
    margin: 0 !important;
    padding: 0 !important;
}

.checkbox-label:hover {
    color: #f59e0b !important;
}

/* Кастомные чекбоксы */
.custom-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background: white;
}

.custom-checkbox::before {
    content: "✓";
    font-size: 12px;
    color: white;
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s;
}

/* Скрываем нативные инпуты */
.sort-group input[type="radio"],
.filter-group input[type="checkbox"] {
    display: none;
}

/* Стили для выбранных состояний */
.sort-group input[type="radio"]:checked + .custom-checkbox,
.filter-group input[type="checkbox"]:checked + .custom-checkbox {
    background: linear-gradient(to right, #f6e05e, #ecc94b);
    border-color: #ecc94b;
}

.sort-group input[type="radio"]:checked + .custom-checkbox::before,
.filter-group input[type="checkbox"]:checked + .custom-checkbox::before {
    opacity: 1;
    transform: scale(1);
}

/* Ползунок цены */
.filter-group h4 {
    color: #1a202c !important;
    margin-bottom: 15px !important;
}

.range-input {
    width: 100%;
    accent-color: #ecc94b;
    margin: 10px 0;
}

.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #4a5568 !important;
    margin-top: 5px;
}

.range-values span {
    color: #4a5568 !important;
}

/* Кнопки действий */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.action-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.9rem;
    color: #1a202c !important;
}

.apply-btn {
    background: linear-gradient(to right, #f6e05e, #f59e0b);
    color: #1a202c !important;
}

.reset-btn {
    background: white;
    border: 2px solid #e2e8f0;
    color: #4a5568 !important;
}

.apply-btn:hover {
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.reset-btn:hover {
    background-color: #f1f5f9;
}

/* Основной контент */
.catalog-content {
    flex: 1;
    min-width: 0;
}

/* Обновленные стили для search-filter */
.search-filter {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Скрываем кнопку фильтров на десктопе */
.btn-container.mobile-only {
    display: none;
}

/* Обновление products-grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .filters-sorting-panel {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .catalog-layout {
        flex-direction: column;
    }
    
    .filters-sorting-panel {
        flex: none;
        width: 100%;
        position: static;
        max-height: none;
        margin-bottom: 20px;
        display: none;
    }
    
    .filters-sorting-panel.mobile-active {
        display: block;
    }
    
    .btn-container.mobile-only {
        display: block;
    }
}

/* Убираем старые стили фильтров */
.filters-panel {
    display: none !important;
}

/* Дополнительные гарантии видимости */
.filters-sorting-panel * {
    color: #1a202c !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.filters-sorting-panel h3,
.filters-sorting-panel h4,
.filters-sorting-panel span,
.filters-sorting-panel label {
    color: #1a202c !important;
    
}


/* Обновляем стили для изображения товара */
.product-image {
    height: 170px; /* Уменьшили высоту в 2 раза (было 200px) */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center; /* Центрируем по горизонтали */
    align-items: center; /* Центрируем по вертикали */
    background-color: #f8f9fa; /* Фон на случай, если изображение прозрачное */
    margin: 0 auto; /* Дополнительное центрирование */
}

.product-image img {
    width: auto; /* Ширина автоматическая */
    height: auto; /* Высота автоматическая */
    max-height: 170px; /* Максимальная высота чуть меньше контейнера */
    object-fit: contain; /* Сохраняем пропорции, вмещаем в контейнер */
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05); /* Увеличиваем при наведении */
}

/* Альтернативный вариант - фиксированная ширина */



.product-card:hover .product-description {
            max-height: 1000px;
            
            color: #999;
            
        }
        .product-description{
            transition: all 0.8s;
            transition-delay: 0.3s;
        }


        /* Стили для полей ввода цены */
.price-range-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-input-group label {
    min-width: 25px;
    color: #4a5568;
    font-size: 0.9rem;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.price-input:focus {
    border-color: #f6e05e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(246, 224, 94, 0.2);
}

/* Убираем стрелки у полей ввода number */
.price-input::-webkit-outer-spin-button,
.price-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.price-input[type=number] {
    -moz-appearance: textfield;
}


/* Стили для индикаторов загрузки */
#loading-indicators {
    text-align: center;
    padding: 30px 20px;
    margin-top: 20px;
}

.loading-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--gold-secondary);
    font-size: 16px;
    font-weight: 500;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(245, 158, 11, 0.2);
    border-top: 3px solid var(--gold-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-more-message {
    color: #888;
    font-size: 14px;
    margin-top: 15px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--gold-primary);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.error-message {
    color: #dc3545;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    background-color: #f8d7da;
    border-radius: 8px;
    margin: 20px 0;
}

.no-products {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}
/* Кнопка загрузки для мобильных */
.load-more-btn-container {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.load-more-btn {
    padding: 15px 30px;
    background: linear-gradient(to right, #f6e05e, #f59e0b);
    color: #1a202c;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Показываем кнопку только на мобильных */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Кнопка "Загрузить еще" */
.load-more-btn-container {
    text-align: center;
    padding: 20px;
    margin: 20px 0 40px;
}

.load-more-btn {
    padding: 12px 30px;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-secondary));
    color: var(--dark-text);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-sm);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.load-more-btn:active {
    transform: translateY(0);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.load-more-btn i {
    font-size: 1.1rem;
}

/* Анимация пульсации для привлечения внимания */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.load-more-btn.pulse {
    animation: pulse 2s infinite;
}

/* Для мобильных делаем кнопку более заметной */
@media (max-width: 768px) {
    .load-more-btn-container {
        padding: 25px 15px;
        margin: 15px 0 30px;
    }
    
    .load-more-btn {
        padding: 15px 35px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

.product-description-footer{
    color: rgb(65, 65, 65);
    font-weight: 600;
}
.product-description-footer__value{
    background-image: linear-gradient(to right, #ffb700, #9a5800);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-brand-addon{
    font-size: 10px;
    color: #d4d4d4;
}


/*КНОПКИ КОРЗИНЫ И ИЗБРАННОГО*/
/* Кнопки действий для карточек товаров */
.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.action-btn-HM {
    width: 36px;
    height: 36px;
    background-color: white;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.action-btn.favorite {
    color: #e53e3e;
}

.action-btn.favorite.active {
    color: #c53030;
    background-color: #fed7d7;
}

.action-btn.cart {
    color: #38a169;
}

.action-btn.cart.active {
    color: #2f855a;
    background-color: #c6f6d5;
}

.action-btn i {
    font-size: 16px;
}

/* Для мобильных уменьшаем кнопки */
@media (max-width: 768px) {
    .product-actions {
        top: 8px;
        right: 8px;
        gap: 6px;
    }
    
    .action-btn-HM {
        width: 32px;
        height: 32px;
    }
    
    .action-btn i {
        font-size: 14px;
    }
}

/* Стили для кнопки "В корзину" на карточке (если нужно заменить старую) */
.add-to-cart-card {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.add-to-cart-card:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.add-to-cart-card:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.add-to-cart-card i {
    font-size: 18px;
}
.product-description-footer--wrapper{
    background-color: #f8f5f1;
    padding: 3px;
    border-radius: 5px;
}