/* --- СКИДАННЯ СТИЛІВ --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- НАЛАШТУВАННЯ КОЛЬОРІВ --- */
:root {
    --bg-page: #000000;        /* Чорний фон навколо сайту (для ПК) */
    --bg-app: #1a1a1a;         /* Темно-сірий фон самого додатку */
    --text-main: #ffffff;
    --accent-green: #ffffff;   /* Зелений заголовок */
    --accent-orange: #e33e3e;  /* Помаранчева кнопка */
    --price-badge: #ff6d00;
    --discount-red: #f44336;
    --border-radius: 12px;
}

/* --- ЦЕНТРУВАННЯ САЙТУ (ЯК ДОДАТОК) --- */
body {
    background-color: var(--bg-page);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center; /* Центр по горизонталі */
    min-height: 100vh;       /* На весь екран */
}
/* --- У файлі style.css --- */

.app-container {
    width: 100%;
    max-width: 480px;        /* Фіксована ширина */
    background-color: var(--bg-app); /* Темний фон всередині */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    
    /* --- НОВЕ СВІТІННЯ ПОЗАДУ САЙТУ --- */
    /* Зміщення по Y, Розмиття, Розтягування, Колір (напівпрозорий помаранчевий) */
    box-shadow: 0 20px 80px -10px rgba(255, 87, 34, 0.5);
    
    /* Можна додати другий шар для глибини (розкоментуй, якщо хочеш): */
    /* box-shadow: 
        0 20px 80px -10px rgba(255, 87, 34, 0.5),
        0 0 30px rgba(118, 255, 3, 0.2); */ /* + легке зелене світіння */
}

/* --- HERO SECTION --- */
/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 20px 15px 45px; /* Трохи збільшив відступ знизу, щоб кнопка не прилипала до краю */
    width: 100%;
    
    /* --- ЗАКРУГЛЕННЯ ЗНИЗУ --- */
    background-color: var(--bg-app); /* Переконуємось, що є фон */
    border-radius: 0 0 40px 40px;    /* 0 зверху, 40px знизу */
    overflow: hidden;                /* Обрізаємо все, що вилазить */
    margin-bottom: 20px;             /* Відступ до наступної секції */
    
    /* Тінь, щоб закруглення було видно, якщо наступна секція такого ж кольору */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Заголовок */
.main-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-green);
    text-align: center;

}

.main-title .highlight {
    color: var(--accent-green);
        font-family: 'Inter', sans-serif !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 20px 0 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    word-spacing: 1.5px !important;
    color: #fff;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* У файлі style.css перевір цей блок: */

/* Картинка (ПРОСТИЙ ВАРІАНТ) */
.product-visual {
    position: relative;
    margin-bottom: 15px;
    border-radius: var(--border-radius); /* Повертаємо заокруглення */
    overflow: hidden;
    border: 1px solid #333; /* Тонка рамка для контрасту */
}

.main-img {
    width: 100%;
    height: auto; /* Висота автоматична, залежить від самої картинки */
    display: block;
}

/* Знижка */
.discount-badge {
    position: absolute;
    top: 30px;
    right: -32px;
    background-color: var(--discount-red);
    color: #fff;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Ціна */
.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.price-main {
    font-family: 'Inter', sans-serif !important;
    font-size: 64px !important;
    font-weight: 900 !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
    color: #fff;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.price-info {
    text-align: left;
    font-size: 12px;
}

.price-old {
    color: #bbb;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.price-old s {
    font-size: 18px;
    color: #888;
}

.price-tag {
    background-color: var(--price-badge);
    color: #000;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 10px;
    line-height: 1.2;
    text-transform: uppercase;
    
    /* --- ДОДАНО ПОВОРОТ --- */
    transform: rotate(-5deg); /* Повертаємо на 5 градусів проти годинникової */
    display: inline-block;    /* Важливо, щоб поворот спрацював коректно */
    margin-left: 5px;         /* Трохи відсуваємо, щоб не наїжджало на стару ціну */
}

/* Розділювач */
.divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 10px 25px;
}

/* --- БЛОК ВИСОКИЙ ПОПИТ --- */
.stock-alert-box {
    border: 1px solid var(--accent-orange);
    border-radius: 15px;
    padding: 15px;
    background: rgba(255, 87, 34, 0.1);
    margin-bottom: 30px;
    text-align: left;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

/* Анімація вогню */
@keyframes pulseFire {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,87,34,0)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(255,87,34,0.8)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(255,87,34,0)); }
}

.fire-icon {
    font-size: 28px;
    animation: pulseFire 1.5s infinite;
}

.alert-text {
    font-size: 13px;
    line-height: 1.4;
    color: #ddd;
}

.alert-text strong {
    color: var(--accent-orange);
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
}

.alert-text span {
    background-color: #000;
    padding: 1px 6px;
    border-radius: 4px;
    color: var(--accent-orange);
    font-weight: bold;
}

/* Шкала */
.progress-bar-bg {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff5722, #ff9800);
    width: 85%;
    border-radius: 5px;
    transition: width 1s linear;
}

/* --- КНОПКА (ОНОВЛЕНА: Чорний великий текст) --- */
.cta-button {
    display: block;
    width: 100%;
    /* Трохи зменшив відступи (було 22px), бо шрифт став більшим */
    padding: 18px; 
    background-color: var(--accent-orange); /* Фон залишається помаранчевим */
    
    /* --- ГОЛОВНІ ЗМІНИ --- */
    color: #3d3d3d;       /* Текст чорного кольору */
    font-size: 24px;      /* Шрифт значно більший (було 18px) */
    font-weight: 900;     /* Дуже жирний */
    /* -------------------- */

    text-transform: uppercase;
    border-radius: 35px;  /* Овальна форма */
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4); /* Тінь */
    transition: transform 0.2s, background-color 0.2s;
    text-align: center;
    text-decoration: none;
}

/* Ефект при натисканні */
.cta-button:active {
    transform: scale(0.98);
    background-color: #e64a19; /* Трохи темніший помаранчевий при кліку */
}
/* --- БЛОК ЗАОЩАДЖУЙ --- */
.savings-section {
    padding: 0 15px 30px; /* Відступи збоку і знизу */
}

.savings-card {
    background-color: #222; /* Темно-сірий фон картки (як на скріні) */
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
}

.savings-title {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Відстань між рядками */
}

/* Окрема пропозиція */
.offer-item {
    padding: 15px 10px;
    border-radius: 8px; /* Легке заокруглення */
    position: relative;
    overflow: hidden; /* Щоб стрічка не вилазила */
}

.offer-text {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.discount-light {
    color: #aaa; /* Сірий колір для тексту в дужках */
    font-size: 14px;
    white-space: nowrap; /* Щоб не розривало текст знижки */
}

/* --- Стилі для ХІТ блоку (1+1=3) --- */
.offer-item.hit {
    background-color: rgba(30, 40, 30, 0.5); /* Легкий зеленуватий відтінок фону */
    border: 1px solid var(--accent-orange);   /* Помаранчева рамка */
}

/* Стрічка "ХІТ" */
.hit-ribbon {
    position: absolute;
    top: 12px;
    right: -28px;
    background-color: var(--accent-orange);
    color: #000;
    font-weight: 900;
    font-size: 10px;
    padding: 3px 30px;
    transform: rotate(45deg); /* Поворот на 45 градусів */
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    z-index: 2;
}

/* --- БЛОК ОПИСУ ПРОБЛЕМИ --- */
.problem-section {
    padding: 0 15px 30px;
}

.problem-card {
    background-color: #222; /* Темний фон картки */
    border-radius: 20px;
    overflow: hidden;
    padding-bottom: 20px; /* Відступ знизу картки */
}

.problem-title {
    padding: 25px 15px;
    text-align: center;
    font-size: 19px; /* Трохи більший шрифт */
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
    color: #fff;
}

/* Картинки на всю ширину */
.problem-visual {
    width: 100%;
    margin-bottom: 20px;
}

.problem-img {
    width: 100%;
    display: block;
    height: auto;
}

/* Контент (текст) */
.problem-content {
    padding: 0 20px 10px; /* Відступи збоку */
}

/* Рожева крапка */
.problem-alert {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pink-dot {
    min-width: 14px;
    height: 14px;
    background-color: #e91e63; /* Рожевий */
    border-radius: 50%;
    margin-top: 5px; /* Вирівнювання по першому рядку */
    box-shadow: 0 0 8px rgba(233, 30, 99, 0.6);
}

.problem-alert p {
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    margin: 0;
}

/* Основний текст */
.problem-text {
    color: #ddd; /* Світло-сірий для кращого читання */
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.problem-text strong {
    color: #fff;
    font-weight: 700;
}

/* Підзаголовки (Пілот, Монтаж) */
.sub-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 15px;
    text-transform: uppercase; /* Якщо треба як на скріні про пілот */
}

/* Для заголовка "Думаєш... складно?" - він не капсом на скріні */
.sub-title.small-margin {
    text-transform: none; /* Звичайний текст */
    font-size: 17px;
}

/* --- БЛОК GOOGLE ВІДГУКИ --- */
.review-cta-section {
    padding: 10px 15px 30px;
}

/* Відступ кнопки від картки відгуків */
.review-cta-section .cta-button {
    margin-bottom: 25px; /* Відступ між кнопкою і блоком Google */
}

/* Картка Google */
.google-review-card {
    background-color: #111; /* Дуже темний фон (майже чорний) */
    border: 1px solid #333; /* Тонка рамка */
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

.gr-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

/* Ліва частина (Бренд) */
.g-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.g-icon {
    width: 28px;
    height: 28px;
    display: block;
}

.g-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
}

.check-icon {
    background-color: #34A853; /* Зелений Google */
    color: #fff;
    width: 14px;
    height: 14px;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

/* Права частина (Рейтинг) */
.gr-rating {
    text-align: right;
}

.score {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.total {
    font-size: 12px;
    color: #888;
}

/* Прогрес бар */
.gr-progress-bg {
    width: 100%;
    height: 8px;
    background-color: #333;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.gr-progress-fill {
    width: 94%; /* Відсоток задоволених */
    height: 100%;
    background-color: #ff5722; /* Помаранчевий колір */
    border-radius: 4px;
}

/* Футер картки */
.gr-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 500;
}

.orders-count {
    color: #888;
}

.satisfaction {
    color: #ff5722; /* Помаранчевий текст */
    font-weight: 700;
}

/* --- СЕКЦІЯ ВІДГУКІВ --- */
.reviews-list-section {
    padding: 20px 15px 40px;
}

.section-title {
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Картка відгуку */
.review-card {
    background-color: #111; /* Темний фон */
    border: 1px solid #333;
    border-radius: 15px;
    padding: 15px;
    color: #fff;
    transition: all 0.5s ease; /* Плавна анімація появи */
}

/* Шапка картки */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

/* Аватарка */
.r-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

/* Ім'я та зірки */
.r-info {
    flex-grow: 1;
}

.r-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.r-stars {
    color: #ffc107; /* Золотий колір зірок */
    font-size: 12px;
    letter-spacing: 1px;
}

/* Бейджі */
.r-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    right: 0;
}

.badge-new {
    background-color: #1565c0; /* Синій колір для НОВИЙ */
    color: #fff;
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.5);
}

.badge-verified {
    background-color: #2e7d32; /* Зелений колір для ПІДТВЕРДЖЕНО */
    color: #fff; /* Зелений текст або фон, на фото фон темний, текст зелений, але краще читається білий на зеленому */
    background: rgba(46, 125, 50, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

/* Текст відгуку */
.r-text {
    font-size: 14px;
    line-height: 1.4;
    color: #ddd;
    margin-bottom: 15px;
    font-style: italic;
}

/* Футер картки */
.r-footer {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
}

.r-likes {
    display: flex;
    gap: 10px;
    color: #aaa;
}

/* Анімація появи нового відгуку */
.review-card.slide-in {
    animation: slideDown 0.5s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
        margin-top: -50px; /* Ефект розсування списку */
    }
    to {
        opacity: 1;
        transform: translateY(0);
        margin-top: 0;
    }
}
/* --- СЕКЦІЯ ЗАМОВЛЕННЯ --- */
.order-section {
    padding: 20px 15px 40px;
    background-color: var(--bg-app); /* Темний фон */
    border-radius: 20px 20px 0 0; /* Закруглення зверху, якщо треба */
}

/* Сітка вибору кількості */
.quantity-selector {
    display: flex;
    justify-content: space-between;
    gap: 8px; /* Відстань між картками */
    margin-bottom: 25px;
}

/* Картка вибору */
.qty-card {
    flex: 1; /* Всі картки однакової ширини */
    background-color: #222;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-title {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.qty-price {
    font-size: 12px;
    color: #aaa;
}

/* АКТИВНИЙ СТАН (Вибрано) */
.qty-card.active {
    border-color: var(--accent-orange);
    background-color: rgba(255, 87, 34, 0.15); /* Прозорий помаранчевий фон */
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
    transform: translateY(-2px); /* Легкий підйом */
}

.qty-card.active .qty-title {
    color: var(--accent-orange);
}

.qty-card.active .qty-price {
    color: #fff;
}

/* --- ПОЛЯ ВВОДУ --- */
.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.input-wrapper {
    position: relative;
}

/* Іконка всередині поля */
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
    pointer-events: none;
}

.custom-input {
    width: 100%;
    height: 55px; /* Висота поля */
    background-color: #222;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 0 15px 0 45px; /* Відступ зліва під іконку */
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.custom-input::placeholder {
    color: #666;
}

.custom-input:focus {
    border-color: var(--accent-orange);
    background-color: #2a2a2a;
}

/* Кнопка форми */
.submit-btn {
    background-color:  var(--accent-orange); /* Насичений помаранчевий */
    border: none;
    cursor: pointer;
}
/* --- ФУТЕР --- */
.site-footer {
    padding: 30px 15px 40px; /* Більший відступ знизу */
    text-align: center;
    /* Фон прозорий, щоб просвічувався основний контейнер */
    background-color: transparent; 
    /* Тонка розділова лінія зверху */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    
    font-size: 12px;
    color: #666; /* Тьмяний сірий колір тексту */
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: #888; /* Посилання трохи світліші */
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-orange); /* При наведенні - помаранчеві */
}

.separator {
    color: #444;
}

.copyright {
    margin-bottom: 10px;
    line-height: 1.4;
}

.footer-info {
    font-size: 11px;
    color: #555;
}
/* --- ЛИПКИЙ НИЖНІЙ БАР --- */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 50%; /* Центруємо відносно екрану */
    width: 100%;
    max-width: 480px; /* Обмеження ширини */
    
    background-color: rgba(26, 26, 26, 0.95); /* Напівпрозорий темний фон */
    backdrop-filter: blur(10px); /* Ефект розмиття фону (як в iOS) */
    
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    z-index: 1000; /* Щоб був поверх усього */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);

    /* Анімація появи/зникнення */
    /* translateX(-50%) тримає його по центру, translateY(150%) ховає вниз */
    transform: translateX(-50%) translateY(150%);
    transition: transform 0.4s ease-in-out;
}

/* Клас, який додає JS, щоб показати бар */
.sticky-bar.visible {
    transform: translateX(-50%) translateY(0);
}

/* Ціна */
.sticky-price {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

/* Статус "В наявності" */
.sticky-status {
    font-size: 11px;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-orange);
}

/* Кнопка */
.sticky-btn {
    background-color:  var(--accent-orange); /* Темно-помаранчевий */
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(216, 67, 21, 0.4);
    transition: transform 0.2s;
}

.sticky-btn:active {
    transform: scale(0.95);
}

/* --- PREMIUM GLASS NOTIFICATION --- */
.pro-glass-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-200%); /* Сховано далеко зверху */
    
    width: 95%;
    max-width: 420px;
    
    /* --- ЕФЕКТ РІДКОГО СКЛА (PREMIUM) --- */
    background: rgba(20, 20, 20, 0.65); /* Темний, але прозорий */
    
    /* Магія iOS: розмиття + насиченість кольорів позаду */
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    
    /* Тонкі рамки: світліша зверху (блік), темніша знизу (тінь) */
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); /* Глибока тінь */
    
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 9999;
    
    /* Пружинна анімація */
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    opacity: 0;
}

/* Клас для показу */
.pro-glass-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Іконка (Градієнтний квадрат з заокругленням) */
.pgn-icon-box {
    width: 44px;
    height: 44px;
    /* Градієнт від помаранчевого до червоного */
    background: linear-gradient(135deg, #ff9800, #ff5722);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.4); /* Кольорове світіння іконки */
}

/* Контент */
.pgn-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.pgn-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pgn-name {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.pgn-time {
    color: rgba(255, 255, 255, 0.5); /* Напівпрозорий білий */
    font-size: 11px;
    font-weight: 500;
}

.pgn-desc {
    color: #ddd;
    font-size: 13px;
    line-height: 1.3;
}

.pgn-desc .highlight {
    color: #ffb74d; /* Світло-помаранчевий акцент */
    font-weight: 600;
}