/* Стили для динамического контента BrandPlace */

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #10b981;
    border-left: 4px solid #059669;
}

.notification-error {
    background-color: #ef4444;
    border-left: 4px solid #dc2626;
}

.notification-info {
    background-color: #3b82f6;
    border-left: 4px solid #2563eb;
}

.notification-warning {
    background-color: #f59e0b;
    border-left: 4px solid #d97706;
}

/* Слайдер */
.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.slide {
    display: none;
    position: relative;
    height: 400px;
}

.slide.active {
    display: block;
}

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

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Категории */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.category-item h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.category-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.category-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.category-meta span {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Бренды */
/* Unified grid for all listing pages */
.brands-grid,
.products-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Products grid modern - handled in app.css */

/* Brand Cards */
.brand-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.brand-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.brand-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.brand-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.brand-card .brand-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.brand-card .brand-meta span {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.brand-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.brand-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.brand-info {
    padding: 1.5rem;
}

.brand-info h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.brand-info p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.brand-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
}

.brand-meta span {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Продукты */
/* Products grid - удалено, используется unified grid выше */

.product-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Product info styles moved to app.css */

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.product-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-card .product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

.product-card .product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-card .product-meta span {
    background: #f3f4f6;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
}

.product-card .product-actions {
    display: flex;
    gap: 0.75rem;
}

/* Услуги */
/* Services grid - удалено, используется unified grid выше */

.service-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-info h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-info p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Поиск */
.search-results {
    margin-bottom: 2rem;
}

.search-results h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.search-results h3 {
    color: #374151;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.search-section {
    margin-bottom: 2rem;
}

.search-item {
    display: flex;
    gap: 1rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.search-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.search-item-info h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.search-item-info p {
    color: #6b7280;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.search-item-info a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.search-item-info a:hover {
    text-decoration: underline;
}

/* Пагинация */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.page-link:hover:not(.disabled) {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

.page-link.active {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Фильтры */
.filters-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.filter-group select,
.filter-group input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Отзывы */
.reviews-section {
    margin-top: 2rem;
}

.review-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.review-rating {
    color: #f59e0b;
    font-size: 1.125rem;
}

.review-author {
    font-weight: 500;
    color: #374151;
}

.review-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.review-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.review-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Форма отзыва */
.review-form {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-form h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: #000000;
    color: white;
}

.btn-primary:hover {
    background-color: #333333;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.btn-outline:hover {
    background-color: #000000;
    color: white;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    background-color: white;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
    transform: translateY(-1px);
}

.btn-section-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Адаптивность для кнопок */
@media (max-width: 640px) {
    .btn-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .btn-section-large {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .btn-section-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Загрузка */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    color: #6b7280;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Адаптивность */
@media (max-width: 768px) {

    .categories-grid,
    .brands-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .search-item {
        flex-direction: column;
        text-align: center;
    }

    .search-item img {
        width: 100%;
        height: 200px;
    }

    .slide-content {
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

/* Анимации */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

/* Состояния загрузки */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-image {
    height: 200px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Стили для современной сетки категорий на главной странице */
.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-card-modern {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card-modern:hover .category-image img {
    transform: scale(1.05);
}

.category-title {
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
    background: white;
}

/* Стили для drag-and-drop зоны загрузки изображений */
.drag-drop-zone {
    transition: all 0.3s ease;
    border: 2px dashed #d1d5db;
    background-color: #f9fafb;
}

.drag-drop-zone:hover {
    border-color: #6b7280;
    background-color: #f3f4f6;
}

.drag-drop-zone.dragover {
    border-color: #3b82f6;
    background-color: #eff6ff;
    transform: scale(1.02);
}

.drag-drop-zone.dragover .drag-drop-text {
    color: #1d4ed8;
}

.drag-drop-text {
    transition: color 0.3s ease;
}

/* Стили для сетки товаров на главной странице */
/* Products grid modern - удалено, используется unified grid выше */

/* Стили для слайдера товаров */
.products-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 0;
    width: 100%;
}

.products-slider {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    touch-action: pan-y pinch-zoom;
    cursor: grab;
    will-change: transform;
}

.products-slider:active {
    cursor: grabbing;
}

.products-slider-item {
    flex: 0 0 auto;
    flex-shrink: 0;
    width: 280px;
}

.products-slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.products-slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.products-slider-btn:hover {
    border-color: #000;
    color: #000;
    background: #f9fafb;
}

.products-slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.products-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.products-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.products-slider-dot.active {
    background: #000;
}

/* Product cards modern - all styles now in app.css compiled via Vite */

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #059669;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

/* Адаптивность для карточек товаров */
/* Product card responsive styles now in app.css */

/* Стили для сетки брендов на главной странице */
.brands-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.brand-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.brand-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.brand-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.brand-card-modern:hover .brand-image img {
    transform: scale(1.05);
}

.brand-title {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.brand-title p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/* Адаптивность для категорий */
@media (max-width: 1200px) {
    .categories-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }

    .brands-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-image {
        height: 160px;
    }

    .category-title {
        padding: 1rem;
        font-size: 1rem;
    }

    .brands-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .brand-image {
        height: 160px;
    }

    .brand-title {
        padding: 1rem;
    }

    .brand-title h3 {
        font-size: 1rem;
    }

    .products-slider-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .categories-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-image {
        height: 140px;
    }

    .category-title {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .brands-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .brand-image {
        height: 140px;
    }

    .brand-title {
        padding: 0.75rem;
    }

    .brand-title h3 {
        font-size: 0.9rem;
    }

    .products-slider-container {
        display: none;
    }
}

@media (max-width: 640px) {
    .categories-grid-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .category-image {
        height: 130px;
    }

    .category-title {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .brands-grid-modern {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .brand-image {
        height: 130px;
    }

    .brand-title {
        padding: 0.5rem;
    }

    .brand-title h3 {
        font-size: 0.85rem;
    }

    .products-slider-container {
        display: block;
        padding: 0;
        margin: 0 -1rem;
        overflow: hidden;
    }

    .products-slider {
        padding: 0.5rem 1rem;
        gap: 1rem;
    }

    .products-slider-item {
        width: calc(83vw - 1.5rem);
        max-width: 340px;
        flex-shrink: 0;
    }

    .products-slider-nav {
        margin-top: 1rem;
    }

    .products-slider-btn {
        width: 32px;
        height: 32px;
    }

    .products-slider-btn svg {
        width: 3px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .products-slider-container {
        margin: 0 -1rem;
        overflow: hidden;
    }

    .products-slider {
        padding: 0.5rem 1rem;
        gap: 0.75rem;
    }

    .products-slider-item {
        width: calc(83vw - 1rem);
        max-width: 320px;
        flex-shrink: 0;
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 0.4rem;
    }

    .product-info h3 {
        font-size: 0.8rem;
    }

    .product-info p {
        font-size: 0.65rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .products-slider-btn {
        width: 28px;
        height: 28px;
    }

    .products-slider-btn svg {
        width: 2px;
        height: 2px;
    }
}