/* Основные стили */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

/* Хедер */
.header {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

/* Слайдер */
.slick-slider {
    margin-bottom: 30px;
}

.slider-item {
    padding: 20px;
}

.before-after {
    position: relative;
}

.before-after img {
    width: 100%;
}

/* Карточки товаров */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ddd;
}

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

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

/* Преимущества */
.advantage-item {
    transition: transform 0.3s;
}

.advantage-item:hover {
    transform: scale(1.05);
}

/* Футер */
.footer {
    margin-top: auto;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Админ панель */
.sidebar {
    min-height: 100vh;
    padding-top: 20px;
}

.sidebar .nav-link {
    padding: 10px 15px;
    transition: background-color 0.3s;
}

.sidebar .nav-link:hover {
    background-color: rgba(255,255,255,.1);
}

.sidebar .nav-link.active {
    background-color: rgba(255,255,255,.2);
}

/* Кнопки разрешения и режима */
.btn-group .btn-outline-primary:hover,
.btn-group .btn-outline-danger:hover,
.btn-group .btn-outline-success:hover {
    transform: scale(1.05);
}

/* Адаптивность */
@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
    }
    
    .product-card .card-img-top {
        height: 150px;
    }
}