/* ==========================================================================
   Component: Shops Page
   Marketing landing page for retailers (Магазинам)
   ========================================================================== */

.shops-page {
    display: flex;
    flex-direction: column;
    padding-top: var(--spacing-lg);
}

.shops-page > .container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding-bottom: 12px;
}

/* ============================== HERO ============================== */

.shops-hero {
    position: relative;
    border: 1px solid var(--color-accent-200);
    border-radius: 16px;
    overflow: hidden;
    padding: 48px 48px 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shops-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.shops-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.shops-hero__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shops-hero__subtitle {
    font-family: var(--font-family-serif);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.72px;
    color: var(--color-dark-600);
}

.shops-hero__title {
    font-family: var(--font-family-serif);
    font-size: 88px;
    font-weight: 400;
    line-height: 90px;
    color: var(--color-dark-600);
    margin: 0;
}

.shops-hero__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 20px;
    color: var(--color-dark-600);
}

.shops-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    background: var(--color-dark-600);
    color: var(--color-accent-600);
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.shops-hero__btn:hover {
    opacity: 0.9;
}

/* ============================== STATS ============================== */

.shops-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    border: 1px solid var(--color-accent-200);
    border-radius: 16px;
    padding: 24px clamp(32px, 10vw, 216px);
    background: var(--color-accent-50);
}

.shops-stats__item {
    flex: 1;
    display: flex;
    gap: clamp(12px, 1.5vw, 24px);
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.shops-stats__number {
    font-family: var(--font-family-serif);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 400;
    font-style: italic;
    line-height: 0.84;
    color: var(--color-dark-600);
    font-variant-numeric: lining-nums proportional-nums;
    white-space: nowrap;
    flex-shrink: 0;
}

.shops-stats__label {
    font-family: var(--font-family-serif);
    font-size: clamp(13px, 1vw, 16px);
    font-weight: 500;
    line-height: 20px;
    color: var(--color-dark-400);
}

.shops-stats__divider {
    width: 1px;
    align-self: stretch;
    background: var(--color-accent-200);
    flex-shrink: 0;
}

/* ============================== CONTENT ============================== */

.shops-content {
    padding: var(--section-gap) 0;
}

.shops-content__inner {
    display: flex;
    justify-content: center;
}

.shops-content__column {
    max-width: 920px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.shops-content__heading {
    font-family: var(--font-family-serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--color-dark-700);
    margin: 0;
}

.shops-content__text {
    font-family: var(--font-family);
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: 28px;
    color: var(--color-dark-500);
    margin: 0;
}

/* --- Feature Cards 2×2 --- */

.shops-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.shops-features__card {
    width: calc(50% - 8px);
    background: var(--color-accent-100);
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.shops-features__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    mix-blend-mode: darken;
}

.shops-features__title {
    font-family: var(--font-family-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-dark-600);
    margin: 0;
}

.shops-features__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 20px;
    color: var(--color-dark-400);
    margin: 0;
}

/* --- YouTube Block --- */

.shops-youtube {
    background: var(--color-accent-100);
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.shops-youtube__title {
    font-family: var(--font-family-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-dark-700);
    text-align: center;
    margin: 0;
}

.shops-youtube__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.shops-youtube__img--links {
    border: 1px solid var(--color-accent-200);
}

.shops-youtube__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 20px;
    color: var(--color-dark-400);
    text-align: center;
    margin: 0;
}

/* --- Map --- */

.shops-map {
    border: 1px solid var(--color-accent-200);
    border-radius: 16px;
    overflow: hidden;
}

.shops-map__img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Blockquote --- */

.shops-quote {
    border-left: 4px solid var(--color-accent-700);
    padding: 16px 0 16px 40px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.shops-quote__text {
    font-family: var(--font-family-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--color-dark-700);
    margin: 0;
}

.shops-quote__source {
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-dark-700);
    text-align: right;
}

/* --- CTA Horizontal Cards --- */

.shops-cta {
    display: flex;
    min-height: 314px;
    background: var(--color-accent-100);
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.shops-cta__image-wrap {
    flex: 1;
    max-width: 320px;
    min-width: 280px;
    padding: 14px;
}

.shops-cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-md);
}

.shops-cta__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    text-align: center;
}

.shops-cta__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    background: var(--color-accent-600);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 12px;
    color: var(--color-dark-600);
}

.shops-cta__title {
    font-family: var(--font-family-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-dark-600);
    margin: 0;
}

.shops-cta__desc {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 20px;
    color: var(--color-dark-500);
    margin: 0;
}

.shops-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 18px;
    border: none;
    border-radius: var(--radius-btn);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.shops-cta__btn:hover {
    opacity: 0.9;
}

.shops-cta__btn--dark {
    background: var(--color-dark-600);
    color: var(--color-accent-200);
}

.shops-cta__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.shops-cta__input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 18px;
    color: var(--color-dark-600);
    background: var(--color-accent-50);
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: border-color 0.2s;
}

.shops-cta__input::placeholder {
    color: var(--color-dark-400);
}

.shops-cta__input:focus {
    border-color: var(--color-dark-400);
}

/* --- Channel Cards --- */

.shops-channel {
    background: var(--color-accent-100);
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-lg);
    padding: 24px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.shops-channel__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    width: 100%;
}

.shops-channel__name {
    font-family: var(--font-family-serif);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    color: var(--color-dark-600);
    margin: 0;
}

.shops-channel__subtitle {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 20px;
    color: var(--color-dark-600);
    margin: 0;
}

.shops-channel__link {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 400;
    line-height: 17px;
    color: var(--color-dark-400);
    text-decoration: underline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shops-channel__screenshot {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--color-accent-200);
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.shops-channel__stats {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    padding: 12px 0;
}

.shops-channel__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.shops-channel__stat-number {
    font-family: var(--font-family-serif);
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    line-height: 0.84;
    color: var(--color-dark-600);
    font-variant-numeric: lining-nums proportional-nums;
    white-space: nowrap;
}

.shops-channel__stat-label {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 400;
    line-height: 17px;
    color: var(--color-dark-400);
}

.shops-channel__stat-divider {
    width: 1px;
    align-self: stretch;
    background: var(--color-accent-200);
    flex-shrink: 0;
}

/* ==========================================================================
   Responsive — 1024px
   ========================================================================== */

@media (max-width: 1024px) {
    .shops-hero {
        padding: 40px 32px 120px;
    }

    .shops-hero__title {
        font-size: 64px;
        line-height: 70px;
    }

    .shops-stats {
        gap: 24px;
    }

    .shops-content__heading {
        font-size: 26px;
        line-height: 34px;
    }
}

/* ==========================================================================
   Responsive — 768px
   ========================================================================== */

@media (max-width: 768px) {
    .shops-hero {
        padding: 32px 20px 80px;
    }

    .shops-hero__title {
        font-size: 48px;
        line-height: 52px;
    }

    .shops-hero__subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .shops-hero__content {
        gap: 24px;
    }

    .shops-stats {
        gap: 16px;
    }

    .shops-content__heading {
        font-size: 22px;
        line-height: 30px;
    }

    .shops-content__text {
        font-size: var(--font-size-base);
        line-height: 24px;
    }

    .shops-youtube {
        padding: 24px 16px;
    }

    .shops-channel {
        width: 100%;
    }

    .shops-quote__text {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ==========================================================================
   Responsive — 480px
   ========================================================================== */

@media (max-width: 480px) {
    .shops-hero__title {
        font-size: 40px;
        line-height: 44px;
    }

    .shops-stats {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: 0;
    }

    .shops-stats__item {
        padding: 16px 0;
    }

    .shops-stats__divider {
        width: 100%;
        height: 1px;
    }

    .shops-features__card {
        width: 100%;
    }

    .shops-youtube {
        padding: 16px;
    }

    .shops-cta {
        flex-direction: column;
    }

    .shops-cta__image-wrap {
        max-width: none;
        min-width: 0;
        min-height: 200px;
    }

    .shops-quote__text {
        font-size: 18px;
        line-height: 26px;
    }
}
