.clt-landing {
    background: #f7f7f7;
    color: #2f3341;
    padding-bottom: 48px;
}

.clt-wrap {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 16px;
}

.clt-wrap-narrow {
    max-width: 900px;
}

.clt-hero {
    min-height: 320px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background-color: #5b5b5b;
    text-align: center;
    overflow: hidden;
}

.clt-hero-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    /* Theme often injects object-fit:fill inline; cover keeps aspect ratio. */
    object-fit: fill !important;
    object-position: center !important;
    z-index: 0;
}

.clt-hero--has-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.18);
    z-index: 1;
}

.clt-hero .clt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.clt-landing .vf-product-menu,
.clt-landing #vf-product-menu {
    display: none !important;
}

.clt-hero-title {
    margin: 0;
    font-size: 48px;
    line-height: 1.1;
    color: #fff;
}

.clt-hero-subtitle {
    margin: 10px 0 18px;
    font-size: 20px;
    color: #fff;
}

.clt-hero-btn {
    display: inline-block;
    background: var(--clt-accent, #ec3278);
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 700;
}

.clt-section {
    margin-bottom: 28px;
}

.clt-section-title,
.clt-featured-products-title {
    margin: 0 0 12px;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
    color: #2f3341;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.clt-section-subtitle {
    margin: -2px auto 14px;
    width: 100%;
    max-width: 860px;
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 1.35;
    color: #6b7280;
}

.clt-banner-grid {
    display: grid;
    grid-template-columns: repeat(var(--clt-banner-count, 4), minmax(0, 1fr));
    gap: 16px;
}

.clt-banner-card {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    background: #fff;
    aspect-ratio: 1 / 1;
    width: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.clt-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a.clt-banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.clt-featured-products {
    margin-top: 16px;
}

.clt-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.clt-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.clt-card-image {
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f1f1f1;
    line-height: 0;
}

.clt-card-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100%;
    object-fit: cover !important;
    object-position: center center;
    transform: scale(1.12);
    transition: transform 250ms ease;
}

.clt-card:hover .clt-card-image img {
    transform: scale(1.18);
}

.clt-card-title {
    margin: 8px 8px 4px;
    font-size: 15px;
    line-height: 1.28;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clt-card-title a {
    color: #2f3341;
    text-decoration: none;
}

.clt-card-price {
    margin-bottom: 8px;
    font-size: 0 !important;
    font-weight: 700;
    line-height: 1;
}

.clt-card-price > :not(.clt-price-main) {
    display: none !important;
}

.clt-price-main {
    display: inline-block;
    font-size: 30px !important;
    line-height: 1;
    font-weight: 700;
    color: #2f3341;
}

.clt-card-btn {
    display: inline-block;
    min-width: 90px;
    text-align: center;
    background: var(--clt-accent, #ec3278);
    color: #fff;
    text-decoration: none;
    border-radius: 7px;
    padding: 8px 14px;
    font-weight: 700;
    margin-top: auto;
    align-self: center;
}

.clt-benefit-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 14px;
}

.clt-benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.clt-intro {
    background: #fff;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 24px 0;
}

.clt-intro-text {
    margin: 0;
    text-align: center;
    line-height: 1.7;
}

.clt-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clt-faq-item {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 10px 12px;
}

.clt-faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.clt-faq-answer {
    margin-top: 8px;
    line-height: 1.6;
}

.clt-pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.clt-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent;
}

.clt-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #e2e2e2;
    border-radius: 999px;
    text-decoration: none;
    color: #2b3140 !important;
    background: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 180ms ease;
}

.clt-pagination a.page-numbers:hover {
    border-color: var(--clt-accent, #ec3278);
    color: var(--clt-accent, #ec3278) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--clt-accent, #ec3278) 18%, transparent);
}

.clt-pagination .page-numbers.dots {
    border-color: transparent;
    box-shadow: none;
    background: transparent;
    min-width: auto;
    padding: 0 4px;
}

/* span.current must beat theme + base .page-numbers (often white bg + white fg from theme). */
.clt-landing .clt-pagination span.page-numbers.current,
.clt-landing .clt-pagination .page-numbers.current {
    background: var(--clt-accent, #ec3278) !important;
    background-color: var(--clt-accent, #ec3278) !important;
    border-color: var(--clt-accent, #ec3278) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--clt-accent, #ec3278) 28%, transparent);
    font-size: 16px !important;
    font-weight: 800;
    text-indent: 0 !important;
    opacity: 1 !important;
}

@media (max-width: 767px) {
    .clt-pagination {
        margin-top: 16px;
    }

    .clt-pagination ul {
        gap: 8px;
    }

    .clt-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 11px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .clt-banner-grid {
        grid-template-columns: repeat(min(3, var(--clt-banner-count, 3)), minmax(0, 1fr));
        gap: 12px;
    }

    .clt-hero-title {
        font-size: 38px;
    }

    .clt-section-title,
    .clt-featured-products-title {
        font-size: 24px;
    }
}

@media (min-width: 1400px) {
    .clt-hero {
        min-height: 430px;
    }
}

@media (max-width: 767px) {
    .clt-wrap {
        padding: 0 8px;
    }

    .clt-hero {
        min-height: 260px;
        margin-bottom: 20px;
        padding: 32px 0 36px;
        box-sizing: border-box;
    }

    .clt-hero .clt-wrap {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Force full-height hero image on mobile (override global img rules). */
    .clt-hero .clt-hero-image {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
    }

    .clt-hero-title {
        font-size: 28px;
        line-height: 1.15;
        margin-bottom: 4px;
    }

    .clt-hero-subtitle {
        font-size: 15px;
        line-height: 1.35;
        margin: 12px 0 22px;
    }

    .clt-hero-btn {
        padding: 14px 24px;
    }

    .clt-section-title,
    .clt-featured-products-title {
        font-size: 21px;
    }

    .clt-banner-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .clt-banner-card {
        border-radius: 6px;
        width: 100%;
        max-width: none;
    }

    .clt-banner-grid > .clt-banner-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 4px);
        justify-self: center;
    }

    .clt-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .clt-benefit-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
        justify-items: center;
    }

    .clt-benefit-item {
        width: 100%;
        justify-content: center;
    }

    .clt-card {
        border-radius: 6px;
        padding-bottom: 8px;
    }

    .clt-card-image {
        aspect-ratio: 3 / 5 !important;
    }

    .clt-card-image img {
        width: 100% !important;
        aspect-ratio: 3 / 5 !important;
        object-fit: cover !important;
        height: auto !important;
        transform: scale(1.15) !important;
    }

    .clt-card-title {
        font-size: 14px;
        min-height: 40px;
        margin: 7px 6px 4px;
    }

    .clt-card-price {
        font-size: 0 !important;
    }

    .clt-price-main {
        font-size: 34px !important;
    }
}
