/**
 * ITLife CDEK — Single Plugin Detail Page Styles
 *
 * Design tokens:
 *   Font:       Nunito Sans
 *   Primary:    #032d60
 *   Accent:     #2e844a
 *   Danger:     #e53e3e
 *   Orange:     #dd6b20
 *   Background: #f8fafc
 *   Card BG:    #ffffff
 *   Radius:     12px (cards), 8px (buttons)
 *   Container:  1200px / 1400px centered
 */

/* =============================================
   SHARED: Section title + subtitle
   ============================================= */

.section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #032d60;
    text-align: center;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2e844a;
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #64748b;
    text-align: center;
    margin: 0 0 40px;
}

/* =============================================
   SHARED: .btn-outline (used in hero + CTA)
   ============================================= */

.btn-outline {
    display: inline-flex;
    align-items: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
    line-height: 1.4;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
}

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

.plugin-hero {
    background: linear-gradient(135deg, #032d60 0%, #0a4d8c 50%, #2e844a 100%);
    color: #ffffff;
    padding: 72px 24px 64px;
}

.plugin-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.plugin-hero__content {
    text-align: left;
}

.plugin-hero__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.plugin-hero__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.plugin-hero__version-badge {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.plugin-hero__status-badge {
    display: inline-block;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.5;
}

.plugin-hero__status-badge.badge-green {
    background: rgba(46, 132, 74, 0.8);
    color: #ffffff;
}

.plugin-hero__status-badge.badge-orange {
    background: rgba(221, 107, 32, 0.8);
    color: #ffffff;
}

.plugin-hero__status-badge.badge-blue {
    background: rgba(3, 45, 96, 0.6);
    color: #ffffff;
}

.plugin-hero__excerpt {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 28px;
    opacity: 0.9;
    max-width: 600px;
    line-height: 1.6;
}

.plugin-hero__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.plugin-hero__btn-buy {
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 8px;
}

.plugin-hero__btn-demo {
    font-size: 16px;
    padding: 12px 32px;
}

.plugin-hero__rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.plugin-hero__stars .star {
    color: #f59e0b;
    font-size: 20px;
    line-height: 1;
}

.plugin-hero__stars .star--empty {
    color: rgba(255, 255, 255, 0.35);
}

.plugin-hero__rating-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 4px;
}

/* Hero image */
.plugin-hero__image {
    text-align: center;
}

.plugin-hero__thumb {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Hero badges: GitHub & Telegram */
.plugin-hero__badge--github,
.plugin-hero__badge--telegram {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.plugin-hero__badge--github {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plugin-hero__badge--github:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.plugin-hero__badge--telegram {
    background: rgba(0, 136, 204, 0.15);
    color: #fff;
    border: 1px solid rgba(0, 136, 204, 0.3);
}

.plugin-hero__badge--telegram:hover {
    background: rgba(0, 136, 204, 0.3);
    color: #fff;
}

/* =============================================
   DESCRIPTION SECTION
   ============================================= */

.plugin-description {
    padding: 60px 0;
}

.plugin-description__content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #333333;
}

.plugin-description__content h2,
.plugin-description__content h3 {
    color: #032d60;
    margin-top: 32px;
    font-weight: 700;
}

.plugin-description__content p {
    margin-bottom: 16px;
}

.plugin-description__content ul,
.plugin-description__content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.plugin-description__content li {
    margin-bottom: 8px;
}

.plugin-description__content a {
    color: #2e844a;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.plugin-description__content a:hover {
    color: #1e6b35;
}

/* =============================================
   SCREENSHOTS GALLERY
   ============================================= */

.plugin-screenshots {
    padding: 60px 0;
    background: #f8fafc;
}

.plugin-screenshots__gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    margin-top: 40px;
}

.plugin-screenshots__gallery::-webkit-scrollbar {
    height: 6px;
}

.plugin-screenshots__gallery::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 3px;
}

.plugin-screenshots__gallery::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 3px;
}

.plugin-screenshots__item {
    flex: 0 0 auto;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.plugin-screenshots__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.plugin-screenshots__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* =============================================
   FEATURES GRID
   ============================================= */

.plugin-features {
    padding: 60px 0;
    background: #f8fafc;
}

.plugin-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.plugin-features__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plugin-features__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.plugin-features__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(46, 132, 74, 0.12);
    color: #2e844a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    line-height: 1;
}

.plugin-features__icon .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.plugin-features__card-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #032d60;
    margin: 0 0 10px;
}

.plugin-features__card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* =============================================
   PRICING GRID
   ============================================= */

.plugin-pricing {
    padding: 60px 0;
}

.plugin-pricing__grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.plugin-pricing__card {
    background: #ffffff;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    width: 280px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plugin-pricing__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Popular pricing card */
.plugin-pricing__card--popular {
    border-color: #2e844a;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(46, 132, 74, 0.15);
    z-index: 1;
}

.plugin-pricing__card--popular:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 36px rgba(46, 132, 74, 0.2);
}

.plugin-pricing__popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: #2e844a;
    padding: 4px 18px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.plugin-pricing__plan-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #032d60;
    margin: 0 0 8px;
}

.plugin-pricing__price {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #032d60;
    margin: 0 0 4px;
    line-height: 1.2;
}

.plugin-pricing__sites {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #888888;
    margin: 0 0 24px;
}

.plugin-pricing__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex: 1;
}

.plugin-pricing__features li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.plugin-pricing__features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2e844a;
    font-weight: 700;
}

.plugin-pricing__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    margin-top: auto;
    color: #ffffff;
    background: #2e844a;
}

.plugin-pricing__btn:hover {
    background: #276b3e;
    color: #ffffff;
}

.plugin-pricing__card--popular .plugin-pricing__btn {
    background: #2e844a;
    border-color: #2e844a;
}

.plugin-pricing__card--popular .plugin-pricing__btn:hover {
    background: #247039;
    border-color: #247039;
}

/* =============================================
   REVIEWS GRID
   ============================================= */

.plugin-reviews {
    padding: 60px 0;
    background: #f8fafc;
}

.plugin-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.plugin-reviews__card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    padding: 28px;
}

.plugin-reviews__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.plugin-reviews__stars .star {
    color: #f59e0b;
    font-size: 18px;
    line-height: 1;
}

.plugin-reviews__stars .star--empty {
    color: #d1d5db;
}

.plugin-reviews__text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.plugin-reviews__text p {
    margin: 0;
}

.plugin-reviews__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.plugin-reviews__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.plugin-reviews__avatar svg,
.plugin-reviews__avatar img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: block;
}

.plugin-reviews__author-info {
    display: flex;
    flex-direction: column;
}

.plugin-reviews__author-name {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #032d60;
}

.plugin-reviews__author-role {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    color: #999999;
    margin-top: 2px;
}

/* =============================================
   FAQ ACCORDION
   ============================================= */

.plugin-faq {
    padding: 60px 0;
}

.plugin-faq__list {
    max-width: 800px;
    margin: 40px auto 0;
}

.plugin-faq__item {
    border-bottom: 1px solid #e8ecf0;
}

.plugin-faq__item:first-child {
    border-top: 1px solid #e8ecf0;
}

.plugin-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #032d60;
    text-align: left;
    line-height: 1.4;
    transition: color 0.2s ease;
    gap: 16px;
}

.plugin-faq__question:hover {
    color: #2e844a;
}

.plugin-faq__question-text {
    flex: 1;
}

.plugin-faq__toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 400;
    color: #032d60;
    transition: background 0.2s ease, transform 0.3s ease;
}

.plugin-faq__question[aria-expanded="true"] .plugin-faq__toggle {
    background: #2e844a;
    color: #ffffff;
    transform: rotate(45deg);
}

.plugin-faq__answer {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 15px;
    color: #555555;
    line-height: 1.7;
    padding: 0 0 20px;
}

.plugin-faq__answer[hidden] {
    display: none;
}

.plugin-faq__answer p {
    margin: 0 0 12px;
}

.plugin-faq__answer p:last-child {
    margin-bottom: 0;
}

/* =============================================
   CHANGELOG
   ============================================= */

.plugin-changelog {
    padding: 60px 0;
    background: #f8fafc;
}

.plugin-changelog__container {
    max-width: 800px;
    margin: 40px auto 0;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 28px 32px;
    overflow-x: auto;
}

.plugin-changelog__content {
    margin: 0;
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 14px;
    line-height: 1.7;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* =============================================
   CTA SECTION
   ============================================= */

.plugin-cta {
    background: linear-gradient(135deg, #032d60 0%, #0a4d8c 50%, #2e844a 100%);
    color: #ffffff;
    text-align: center;
    padding: 72px 24px;
}

.plugin-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.plugin-cta__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px;
    line-height: 1.2;
}

.plugin-cta__subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 17px;
    margin: 0 0 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.plugin-cta__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.plugin-cta__btn-buy {
    font-size: 17px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
}

.plugin-cta__btn-demo {
    font-size: 17px;
    padding: 12px 36px;
}

/* =============================================
   SUPPORT / DONATIONS SECTION
   ============================================= */

.plugin-support {
    padding: 60px 0;
    background: #f8fafc;
}

.plugin-support__inner {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.plugin-support__title {
    font-size: 22px;
    font-weight: 800;
    color: #032d60;
    margin-bottom: 12px;
}

.plugin-support__text p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}

.plugin-support__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.plugin-support__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.plugin-support__btn--boosty {
    background: #f97316;
    color: #fff;
}

.plugin-support__btn--boosty:hover {
    background: #ea580c;
    transform: translateY(-1px);
}

.plugin-support__btn--github {
    background: #24292e;
    color: #fff;
}

.plugin-support__btn--github:hover {
    background: #1a1e22;
    transform: translateY(-1px);
}

.plugin-support__btn--telegram {
    background: #0088cc;
    color: #fff;
}

.plugin-support__btn--telegram:hover {
    background: #006da3;
    transform: translateY(-1px);
}

/* =============================================
   LIGHTBOX (screenshot modal)
   ============================================= */

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.lightbox-overlay--active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay__img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay--active .lightbox-overlay__img {
    transform: scale(1);
}

.lightbox-overlay__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    line-height: 1;
}

.lightbox-overlay__close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =============================================
   RESPONSIVE — LARGE TABLET (max 1024px)
   ============================================= */

@media (max-width: 1024px) {
    .plugin-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .plugin-hero__content {
        text-align: center;
    }

    .plugin-hero__badges {
        justify-content: center;
    }

    .plugin-hero__actions {
        justify-content: center;
    }

    .plugin-hero__excerpt {
        margin-left: auto;
        margin-right: auto;
    }

    .plugin-hero__rating {
        justify-content: center;
    }

    .plugin-hero__image {
        order: -1;
    }

    .plugin-features__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .plugin-pricing__card--popular {
        transform: scale(1.03);
    }

    .plugin-pricing__card--popular:hover {
        transform: scale(1.03) translateY(-3px);
    }
}

/* =============================================
   RESPONSIVE — TABLET (max 768px)
   ============================================= */

@media (max-width: 768px) {
    .plugin-hero {
        padding: 48px 20px 40px;
    }

    .plugin-hero__title {
        font-size: 28px;
    }

    .plugin-hero__excerpt {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .plugin-features,
    .plugin-pricing,
    .plugin-reviews,
    .plugin-faq,
    .plugin-changelog,
    .plugin-description,
    .plugin-screenshots {
        padding: 40px 0;
    }

    .plugin-features__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plugin-pricing__grid {
        flex-direction: column;
        align-items: center;
    }

    .plugin-pricing__card {
        width: 100%;
        max-width: 400px;
    }

    .plugin-pricing__card--popular {
        transform: none;
    }

    .plugin-pricing__card--popular:hover {
        transform: translateY(-3px);
    }

    .plugin-reviews__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plugin-screenshots__item {
        width: 260px;
    }

    .plugin-cta {
        padding: 48px 20px;
    }

    .plugin-cta__title {
        font-size: 26px;
    }

    .plugin-support__inner {
        padding: 24px 20px;
    }

    .plugin-support__actions {
        flex-direction: column;
    }

    .plugin-support__btn {
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================= */

@media (max-width: 480px) {
    .plugin-hero {
        padding: 36px 16px 32px;
    }

    .plugin-hero__title {
        font-size: 24px;
    }

    .plugin-hero__excerpt {
        font-size: 15px;
    }

    .plugin-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

    .plugin-hero__btn-buy,
    .plugin-hero__btn-demo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .section-title {
        font-size: 22px;
    }

    .plugin-features__card {
        padding: 24px 20px;
    }

    .plugin-pricing__card {
        padding: 28px 20px;
    }

    .plugin-reviews__card {
        padding: 20px;
    }

    .plugin-changelog__container {
        padding: 20px;
        border-radius: 8px;
    }

    .plugin-changelog__content {
        font-size: 13px;
    }

    .plugin-cta {
        padding: 36px 16px;
    }

    .plugin-cta__title {
        font-size: 22px;
    }

    .plugin-cta__btn-buy,
    .plugin-cta__btn-demo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .plugin-cta__actions {
        flex-direction: column;
    }

    .plugin-screenshots__item {
        width: 220px;
    }

    .plugin-screenshots__item img {
        height: 150px;
    }

    .plugin-faq__question {
        font-size: 15px;
        padding: 16px 0;
    }
}
