/* DS. SHIFT TRACKER PROFESSIONAL
   Оптимізований stylesheet: усунуто дублювання блоків Hero (~400 рядків),
   об'єднано розрізнені правила теми, кнопок та адаптивності.
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --bg: #000000;
    --surface: #0a0a0a;
    --border: rgba(255, 255, 255, 0.08);
    --primary: #4bde80;
    --text-main: #ffffff;
    --text-dim: #888888;

    --badge-bg: rgba(124, 252, 0, 0.1);
    --badge-text: #4bde80;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);

    --radius: 32px;
    --section-pad: 120px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.light-theme {
    --bg: #f5f5f7;
    --surface: #ffffff;
    --border: rgba(0, 0, 0, 0.08);
    --text-main: #1d1d1f;
    --text-dim: #6e6e73;
    --badge-bg: rgba(124, 252, 0, 0.15);
    --badge-text: #5ec000;
    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.08);
}

/* ============================================================
   RESET & GLOBAL
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    transition: background 0.3s ease;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================================
   NAVBAR - АДАПТИВНІСТЬ
   ============================================================ */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    /* Трохи зменшив відступи для мобільних */
    background: rgba(0, 0, 0, 0);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Контейнер флекс-бокс */
.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 92%;
    margin: 0 auto;
}

/* Логотип */
.logo {
    font-size: 1.3rem;
    /* Менший розмір для мобілки */
    font-weight: 900;
    text-decoration: none;
    color: var(--text-main);
    white-space: nowrap;
    /* Щоб лого не розривалося */
}

/* Приховуємо посилання на мобільних, щоб не було каші */
.nav-links {
    display: none;
    /* Тільки для ПК */
}

/* Блок з кнопками (мова + тема) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Невеликий проміжок на мобільних */
}

/* Налаштування селектора мови */
#lang-select {
    background: var(--surface);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    outline: none;
}

/* ============================================================
   RESPONSIVE - ПОВЕРТАЄМО МЕНЮ НА ПК
   ============================================================ */
@media (min-width: 900px) {
    .navbar {
        padding: 18px 0;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-links {
        display: flex;
        /* Показуємо посилання тільки на великих екранах */
        gap: 30px;
    }

    .nav-right {
        gap: 15px;
    }
}

/* Стан при скролі: з'являється розмиття та фон */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);
    /* Твій оригінальний колір */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: .2s all ease;
    padding: 18px 0;
    /* Можна трохи звузити при скролі для ефекту */
}

/* Для світлої теми */
.light-theme .navbar.scrolled {
    background: rgba(245, 245, 247, 0.8);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-flex>div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: none !important;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: #000;
    padding: 10px 22px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.btn-store.google {
    background: #fff;
    color: #000;
    padding: 16px 35px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-store.google:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-secondary-outline {
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    width: fit-content;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    display: block;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-secondary {
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    display: block;
    text-align: center;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
}

.cta-button:hover,
.btn-store:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-secondary-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.navbar .btn-secondary-outline {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.navbar .btn-secondary-outline:hover {
    background: var(--primary);
    color: #000 !important;
    border-color: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 100px 0 100px;
    background: radial-gradient(circle at 50% 20%, rgba(124, 252, 0, 0.08) 0%, rgba(0, 0, 0, 0) 60%);
    overflow: hidden;
    position: relative;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
}

.hero-text {
    width: 100%;
    max-width: 600px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-v {
    background: rgba(124, 252, 0, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    display: inline-block;
    border: 1px solid rgba(124, 252, 0, 0.2);
}

.main-title {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero-title {
    color: #4bde80;
}

.hero-subtext {
    font-size: 1.15rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    align-items: center;
}

.phone-wrapper {
    position: relative;
    width: 280px;
    margin: 0 auto;
}

.hero-img {
    width: 85%;
    height: auto;
    border-radius: 45px;
    border: 9px solid #161617;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(124, 252, 0, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.card-icon {
    width: 34px;
    height: 34px;
    background: #7cfc00;
    color: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-info {
    text-align: left;
}

.card-info .label {
    font-size: 0.65rem;
    color: #aaa;
    text-transform: uppercase;
    display: block;
}

.card-info .value {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.float-card.income {
    top: 30%;
    left: -10px;
    animation: floatAnim 4s ease-in-out infinite;
}

.float-card.time {
    bottom: 10%;
    right: -150px;
    animation: floatAnim 6s ease-in-out infinite reverse;
}

@keyframes floatAnim {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-inner>* {
    animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ============================================================
   BENEFITS STRIP
   ============================================================ */
.benefits-strip {
    background: var(--surface);
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.benefit-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--badge-bg);
    border: 1px solid rgba(124, 252, 0, 0.2);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

.benefit-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
    align-self: center;
}

/* ============================================================
   FEATURES (Z-PATTERN)
   ============================================================ */
.feature-rows {
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
}

/* Контейнер рядка */
.f-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    /* Зменшуємо проміжок */
    margin-bottom: 80px;
    /* Було 120px — забагато */
}

/* Візуальний контейнер */
.f-visual {
    position: relative;
    width: 100%;
    max-width: 240px;
    /* ФІКС РОЗМІРУ */
    display: flex;
    justify-content: center;
}

/* Зелена підкладка — робимо її меншою за картинку */
.green-rect {
    position: absolute;
    background: var(--primary);
    width: 90%;
    /* ФІКС ПІДКЛАДКИ */
    height: 85%;
    /* ФІКС ПІДКЛАДКИ */
    border-radius: 30px;
    /* Центруємо її та зміщуємо зовсім трохи */
    top: 10%;
    left: 10%;
    z-index: 1;
    opacity: 0.9;
    /* Можна додати легку прозорість */
}

/* Сама картинка (телефон) */
.f-visual img {
    position: relative;
    width: 100%;
    height: auto;
    /* Важливо для збереження пропорцій */
    border-radius: 25px;
    border: 4px solid #1a1a1a;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Інфо-блок */
.f-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    background: var(--primary);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.f-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.f-info p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 450px;
}

/* Z-Pattern для десктопу (повертаємо чергування блоків) */
@media (min-width: 1024px) {
    .f-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .f-row.reverse {
        flex-direction: row-reverse;
    }

    .f-info {
        align-items: flex-start;
        text-align: left;
    }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
    padding: var(--section-pad) 0;
    background: var(--surface);
}

.horizontal-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 40px 5%;
    scrollbar-width: none;
    cursor: grab;
}

/* Зменшив ширину скріншотів у галереї */
.horizontal-scroll img {
    width: 210px;
    /* ФІКС РОЗМІРУ */
    border-radius: 25px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.horizontal-scroll img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
    padding: var(--section-pad) 0;
}

.price-grid {
    display: grid;
    gap: 25px;
    padding-top: 40px;
}

.price-card {
    background: var(--surface);
    padding: 50px 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.pro {
    border: 2px solid var(--primary);
}

.popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.75rem;
}

.price-val {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 15px 0;
    color: var(--text-main);
}

.price-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    color: var(--text-dim);
}

.price-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-list i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: var(--section-pad) 0;
}

.mini {
    max-width: 800px;
    margin: 0 auto;
}

.acc-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.acc-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.acc-header i {
    color: var(--primary);
    transition: 0.3s;
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 24px;
    color: var(--text-dim);
    line-height: 1.6;
}

.acc-item.active .acc-body {
    max-height: 300px;
    padding-bottom: 24px;
}

.acc-item.active {
    border-color: var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 80px 0 50px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.footer-col h5 {
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.socials a {
    color: var(--text-dim);
    font-size: 1.5rem;
    transition: 0.3s;
}

.socials a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-header {
    padding: 160px 0 60px;
    text-align: center;
}

.legal-content {
    padding-bottom: 100px;
}

.legal-block {
    margin-bottom: 50px;
}

.legal-block h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-block p {
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.legal-block ul {
    list-style: none;
    padding-left: 10px;
}

.legal-block li {
    color: var(--text-dim);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-block li::before {
    content: "—";
    color: var(--primary);
    font-weight: bold;
}

.legal-block strong {
    color: var(--primary);
}

.glass-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.legal-content a.logo {
    color: var(--primary) !important;
    text-decoration: none;
    transition: 0.3s;
}

.legal-content a.logo:hover {
    opacity: 0.8;
}

.legal-header .hero-subtext {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

/* ============================================================
   RESPONSIVE — DESKTOP (>= 900px)
   ============================================================ */
@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }

    .hero-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        align-items: center;
    }

    .hero-text {
        width: 55%;
        align-items: flex-start;
        text-align: left;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .phone-wrapper {
        width: 320px;
        margin: 0;
    }

    .float-card.income {
        left: -50px;
    }

    .float-card.time {
        right: -15px;
    }

    .f-row {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        align-items: center;
    }

    .f-row.reverse {
        flex-direction: row-reverse;
    }

    .f-visual {
        width: 38%;
        max-width: none;
        overflow: visible;
    }

    .green-rect {
        width: 115%;
        left: -7.5%;
    }

    .f-info {
        width: 50%;
        align-items: flex-start;
        text-align: left;
    }

    .icon-box {
        margin-left: 0;
    }

    .price-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 850px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (<= 900px / 768px)
   ============================================================ */
@media (max-width: 900px) {
    .benefits-strip {
        padding: 60px 0;
    }

    .benefits-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .benefit-divider {
        display: none;
    }

    .benefit-item {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }

    .float-card {
        display: none;
    }

    .legal-header {
        padding: 120px 0 40px;
    }

    .legal-header .main-title {
        font-size: 2.2rem;
        padding: 0 10px;
    }

    .glass-card {
        padding: 25px !important;
    }
}

/* ============================================================
   SKELETONS (ФІКС ТЕМИ ТА ВИСОТИ)
   ============================================================ */
/* БАЗОВИЙ СКЕЛЕТОН */
.skeleton {
    position: relative !important;
    display: inline-block;
    /* Дозволяє блоку приймати розміри рядка */

    /* АВТОМАТИЧНА ВИСОТА */
    height: 1em;
    line-height: 1;
    vertical-align: middle;
    /* Центрує прямокутник відносно рядка */

    background-color: #1a1a1a !important;
    color: transparent !important;
    border-radius: 4px !important;
    overflow: hidden !important;

    /* Додаємо невеликий запас по ширині, якщо тексту в HTML немає */
    min-width: 2em;
}

/* Скелетон для СВІТЛОЇ теми */
.light-theme .skeleton {
    background-color: #e0e0e0 !important;
    /* Світло-сірий для світлої теми */
}

/* ЗАГОЛОВОК (Hero Title) */
/* Робимо кожен span у заголовку ширшим, щоб вони не були вузькими смужками */
.main-title .skeleton {
    display: inline-block !important;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* ПІДЗАГОЛОВОК (Hero Subtext) */
.hero-subtext.skeleton {
    display: block !important;
    /* Примусово блоком на весь рядок */
    margin-top: 20px;
}

/* Центрування заголовків зі скелетоном */
.section-title.centered.skeleton {
    display: block !important;
    /* Примусово робимо блоком */
    width: fit-content !important;
    /* Ширина по контенту тексту всередині */
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
}

/* Якщо ширина fit-content не спрацьовує через відсутність тексту, 
   можна задати приблизну ширину для скелетона заголовка */
h2.section-title.centered.skeleton {
    min-width: 300px;
    max-width: 80%;
}

/* КНОПКИ */
.hero-actions .skeleton,
.price-card .skeleton {
    display: inline-block !important;
    height: 1em;
    /* Висота як у тексту кнопки */
    min-width: 100px;
    /* Мінімальна довжина, щоб кнопка не була порожньою */
    vertical-align: middle;
    border-radius: 4px !important;

    /* Колір залежить від теми */
    background-color: #1a1a1a !important;
}

/* Світла тема для скелетонів у кнопках */
.light-theme .hero-actions .skeleton,
.light-theme .price-card .skeleton {
    background-color: #e0e0e0 !important;
}

.light-theme .price-btn-green.skeleton {
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Якщо іконка всередині кнопки має теж зникати або бути частиною скелетона */
.btn-store i.skeleton,
.btn-primary i.skeleton {
    margin-right: 8px;
}

/* Анімація переливання (Shimmer) */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-100%);
    /* Блік теж має бути різним для темної та світлої теми */
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.08),
            transparent);
    animation: shimmerEffect 1.5s infinite;
}

@keyframes shimmerEffect {
    100% {
        transform: translateX(100%);
    }
}

/* Спеціальний блік для СВІТЛОЇ теми (темніший блік на світлому фоні) */
.light-theme .skeleton::after {
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
}

@media (max-width: 900px) {

    /* Примусово ховаємо скелетони в тих блоках, які не мають бути видимі на мобілці */
    .nav-links.skeleton,
    .nav-links .skeleton {
        display: none !important;
    }
}

/* СТИЛІ ДЛЯ ДРОПДАУНА ЮЗЕРА */
.auth-block {
    display: flex;
    gap: 8px;
    align-items: center;
}

.login-btn-header {
    padding: 6px 12px;
    font-size: 0.8rem;
    gap: 8px;
    display: flex;
    align-items: center;
}

.user-menu-container {
    display: none;
    position: relative;
}

.user-avatar-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid var(--border);
}

.user-dropdown-card {
    display: none;
    position: absolute;
    right: 0;
    top: 120%;
    padding: 10px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    margin: 0;
}

.user-email-text {
    padding: 0 10px 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--text-dim);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.option-delete {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #ff4b4b;
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: 0.3s;
}

.option-logout {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px;
    color: var(--text-main);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.light-theme .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.05);
}