/**
 * @file: recipe-slider.css
 * @description: Стилі для слайдера топових рецептів GOTUIMO
 * @created: 2025-11-10
 */

/* === Container === */
.gotuimo-top-recipes-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px; /* ✅ Відступи зверху та знизу */
}

/* === Header === */
.gotuimo-slider-header {
    text-align: center;
    margin-bottom: 48px;
}

.gotuimo-slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.gotuimo-slider-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* === Slider Container (for arrows) === */
.gotuimo-slider-container {
    position: relative;
    /* ⚠️ БЕЗ PADDING - стрілки будуть на краях! */
}

/* === Slider Wrapper === */
.gotuimo-recipes-slider-wrapper {
    position: relative;
    overflow: hidden; /* ✅ КРИТИЧНО: Приховуємо слайди поза контейнером */
    margin: 0 60px; /* ✅ ВІДСТУПИ ДЛЯ СЛАЙДІВ, стрілки поза */
}

/* === Slider Track === */
.gotuimo-recipes-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease-in-out;
    /* Ширина встановлюється динамічно через JS */
}

/* === Slide === */
.gotuimo-recipe-slide {
    flex-shrink: 0; /* Не дозволяти стискатися */
    /* Ширина встановлюється динамічно через JS */
}

/* === Navigation Arrows === */
.gotuimo-slider-prev,
.gotuimo-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ✅ КРИТИЧНО: Стрілки поза wrapper, але всередині контейнера */
.gotuimo-slider-prev {
    left: 0; /* На краю контейнера */
}

.gotuimo-slider-next {
    right: 0; /* На краю контейнера */
}

.gotuimo-slider-prev:hover:not(:disabled),
.gotuimo-slider-next:hover:not(:disabled) {
    background: #6B8E23;
    border-color: #6B8E23;
    color: white;
    box-shadow: 0 6px 12px rgba(107, 142, 35, 0.3);
}

.gotuimo-slider-prev:disabled,
.gotuimo-slider-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gotuimo-slider-prev svg,
.gotuimo-slider-next svg {
    color: #666;
}

.gotuimo-slider-prev:hover:not(:disabled) svg,
.gotuimo-slider-next:hover:not(:disabled) svg {
    color: white;
}

/* === Pagination Dots === */
.gotuimo-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 0; /* ✅ Без нижнього відступу, padding контейнера вистачає */
}

.gotuimo-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gotuimo-slider-dot:hover,
.gotuimo-slider-dot.active {
    background: #6B8E23;
    transform: scale(1.2);
}

/* === Recipe Card === */
.gotuimo-recipe-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gotuimo-recipe-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* === Recipe Image === */
.gotuimo-recipe-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f5;
}

.gotuimo-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gotuimo-recipe-card:hover .gotuimo-recipe-image img {
    transform: scale(1.05);
}

/* === Rating Badge === */
.gotuimo-recipe-rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff9500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gotuimo-recipe-rating-badge svg {
    color: #ff9500;
}

/* === Tooltip === */
.gotuimo-recipe-tooltip {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gotuimo-recipe-card:hover .gotuimo-recipe-tooltip {
    opacity: 1;
}

.gotuimo-recipe-tooltip p {
    margin: 0 0 16px 0;
    text-align: center;
    line-height: 1.5;
}

.gotuimo-tooltip-link {
    text-decoration: none;
    padding: 8px 20px;
    /* ✅ Єдиний стиль: біла кнопка → червона при hover */
    background: #ffffff;
    color: #ef4444;
    border: 2px solid #ef4444;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
    display: inline-block;
}

.gotuimo-tooltip-link:hover {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* === Recipe Content === */
.gotuimo-recipe-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gotuimo-recipe-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.gotuimo-recipe-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gotuimo-recipe-title a:hover {
    color: #6B8E23;
}

/* === Recipe Meta (Author + Rating in one row) === */
.gotuimo-recipe-meta {
    display: flex;
    align-items: center; /* ✅ Вертикальне центрування */
    justify-content: space-between; /* Автор зліва, рейтинг справа */
    gap: 12px;
    font-size: 0.875rem;
    margin-top: auto;
    min-height: 32px; /* Мінімальна висота для рівномірного вирівнювання */
}

/* === Author === */
.gotuimo-recipe-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.gotuimo-recipe-author img {
    border-radius: 50%;
}

/* === Recipe Rating === */
.gotuimo-recipe-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    white-space: nowrap; /* Не переносити на новий рядок */
}

.gotuimo-recipe-rating svg {
    color: #6B8E23; /* Зелений колір для іконки користувача */
    flex-shrink: 0; /* Іконка не стискається */
}

.gotuimo-rating-label {
    margin-left: 2px;
    color: #666;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .gotuimo-recipe-slide {
        flex: 0 0 calc((100% - 24px) / 2); /* 2 slides per view */
    }
    
    .gotuimo-slider-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gotuimo-recipe-slide {
        flex: 0 0 100%; /* 1 slide per view */
    }
    
    /* Padding перенесено на .gotuimo-slider-container */
    
    .gotuimo-slider-prev,
    .gotuimo-slider-next {
        width: 40px;
        height: 40px;
    }
    
    .gotuimo-slider-title {
        font-size: 1.75rem;
    }
    
    .gotuimo-slider-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gotuimo-top-recipes-slider {
        padding: 0 12px;
    }
    
    /* Padding перенесено на .gotuimo-slider-container */
    
    .gotuimo-slider-prev,
    .gotuimo-slider-next {
        width: 32px;
        height: 32px;
    }
    
    .gotuimo-slider-prev svg,
    .gotuimo-slider-next svg {
        width: 20px;
        height: 20px;
    }
}

