<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ†Ñ‹ Ð¿Ñ€Ð¾Ð´ÑƒÐºÑ‚Ð¾Ð² */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 250px;
    object-fit: cover;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.products-section {
    padding: 80px 0;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ð´ÐµÑ‚Ð°Ð»ÐµÐ¹ Ð¿Ñ€Ð¾Ð´ÑƒÐºÑ‚Ð° */
.product-detail-section {
    padding: 80px 0;
}

.product-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
}

.product-info h2 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ÐžÐ±Ñ‰Ð¸Ðµ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ ÑÑ‚Ñ€Ð°Ð½Ð¸Ñ† */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 0;
}

.page-header h1 {
    margin-bottom: 15px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.page-header p {
    color: #666;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
} </pre></body></html>