/* ===== lazyload ===== */
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload),
.e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * {
    background-image: none !important;
}

@media screen and (max-height: 1024px) {

    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

@media screen and (max-height: 640px) {

    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload),
    .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * {
        background-image: none !important;
    }
}

/* ===== Hero Section: EasyCart ===== */
.ec-hero {
    position: relative;
    overflow: hidden;
}

/* Mock up image as base layer */
.ec-hero__mockup {
    display: block;
    width: 80%;
    height: auto;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.ec-hero__mockup--mobile {
    display: none;
}

/* Overlay: text + floating elements */
.ec-hero__top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ec-hero__top-inner {
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Text */
.ec-hero__text {
    max-width: 600px;
    margin: 0 auto;
    margin-top: -6%;
}

.ec-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -1px;
}

.ec-hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 0.7s ease-out forwards;
}

.ec-hero__title-line--1 {
    animation-delay: 0.2s;
    color: #00C48C;
    font-size: 88px;

}

.ec-hero__title-line--2 {
    animation-delay: 0.45s;
    color: #1a3d38;
    font-size: 75px;
}

.ec-hero__desc {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 28px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 0.7s 0.65s ease-out forwards;
}

.ec-hero__cta {
    display: inline-block;
    background-color: #1a3d38;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 20px 45px;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: heroTextReveal 0.7s 0.85s ease-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28) !important;
}

.ec-hero__cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 70%,
            transparent 100%);
    animation: heroShine 3s 1.5s ease-in-out infinite;
}

.ec-hero__cta:hover {
    background-color: #0f6654;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(20, 128, 102, 0.3);
}

/* Float row wrapper — transparent on desktop */
.ec-hero__float-row {
    display: contents;
}

/* Floating elements */
.ec-hero__float {
    position: absolute;
    z-index: 3;
    animation: heroBubbleFloat 3s ease-in-out infinite;
}

.ec-hero__float--bubble {
    background: #fff;
    border-radius: 60px;
    padding: 10px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    left: 8%;
    top: 50%;
}

.ec-hero__float--payment {
    right: 5%;
    top: 33%;
    animation-delay: 1.5s;
}

.ec-hero__float--payment img {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.08));
}

.ec-hero__bubble-num {
    font-size: 22px;
    font-weight: 700;
    color: #148066;
    line-height: 1;
}

.ec-hero__bubble-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

/* Decorative Grids */
.ec-hero__grid {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.ec-hero__grid--left {
    left: 0;
    bottom: -264px;
    width: 528px;
    height: 528px;
}

.ec-hero__grid--right {
    right: 0;
    top: 0;
    width: 528px;
    height: 528px;
}

.ec-hero__grid-inner {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
}

.ec-hero__grid .grid-item {
    background-color: #27226E26;
    mix-blend-mode: overlay;
    aspect-ratio: 1;
}

/* Animations */
@keyframes heroTextReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes heroShine {
    0% {
        left: -100%;
    }

    40% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

@keyframes heroBubbleFloat {

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

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

/* Responsive */
@media (max-width: 1024px) {
    .ec-hero__title {
        font-size: 44px;
    }

    .ec-hero__float--bubble {
        left: 8%;
    }

    .ec-hero__float--payment {
        right: 5%;
    }

    .ec-hero__float--payment img {
        width: 180px;
    }
}

@media (max-width: 767px) {
    .ec-hero__title {
        font-size: 34px;
    }

    .ec-hero__title-line--1 {
        font-size: 38px;
    }

    .ec-hero__title-line--2 {
        font-size: 32px;
    }

    /* Bubbles: handled by mobile optimisation block */

    .ec-hero__top-inner {
        padding: 0 15px;
    }

    .ec-hero__grid {
        display: none;
    }
    .ec-hero img{
        width:100%;
    }
}

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

/* Tab active: shorter underline + larger font */
.pxl-tabs-slip1 .pxl-tab-title {
    width: fit-content;
}

.pxl-tabs-slip1 .pxl-tab-title:after {
    width: 100%;
}

.pxl-tabs-slip1 .pxl-tab-title.active,
.pxl-tabs-slip1 .pxl-tab-title:hover {
    font-size: 36px;
}

@media (max-width: 767px) {

    .pxl-tabs-slip1 .pxl-tab-title.active,
    .pxl-tabs-slip1 .pxl-tab-title:hover {
        font-size: 32px;
    }
}

/* ====== Logo Marquee ====== */
.ec-logo-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.ec-logo-marquee::before,
.ec-logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ec-logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.ec-logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.ec-logo-track {
    display: flex;
    animation: ec-scroll 67.5s linear infinite;
    will-change: transform;
}

.ec-logo-marquee:hover .ec-logo-track {
    animation-play-state: paused;
}

.ec-logo-item {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.ec-logo-item img {
    max-height: 60px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: opacity(0.55);
    transition: filter .3s;
    margin-left: 35px;
}

.ec-logo-item:hover img {
    filter: opacity(1);
}

@keyframes ec-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-150px * 19));
    }
}

/* ===== site typography: body + titles (overrides widget-specific font rules) ===== */
body {
    font-family: 'Noto Sans HK', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title,
.elementor-page-title,
h1.entry-title,
.pxl-heading .pxl-item--title,
.pxl-item--title {
    font-family: 'DM Serif Display', serif !important;
}

.pxl-item--image {
    margin-top: 30px;
}

/* ===== Tab title description animation ===== */
.pxl-tabs-slip1 .pxl-tab-title .pxl-tab-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #68727D;
    font-family: 'Noto Sans HK', sans-serif;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease,
        margin 0.35s ease,
        padding 0.35s ease;
    font-size: 16px;
    font-weight: 400;
}

.pxl-tabs-slip1 .pxl-tab-title.active .pxl-tab-desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
    padding-bottom: 8px;

}

/* EC Section Header (reusable) */
.ec-section-header {
    margin-bottom: 40px;
}

.ec-section-header__subtitle {
    display: inline-block;
    font-family: "Noto Sans HK", sans-serif;
    font-size: 16px;
    color: #0C0A08;
    margin-bottom: 12px;
    position: relative;
    padding-left: 14px;
}

.ec-section-header__subtitle::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #00C48C;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.ec-section-header__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ec-section-header__lead {
    font-size: 18px;
    color: #0C0A08B3;
    margin-bottom: 0;
}

/* EC Painpoints Section (Bootstrap) */
.ec-painpoints-section {
    padding: 137px 0 0;
}

.ec-painpoints-section .ec-section-header__title {
    max-width: 1105px;
    font-size: 36px;
    line-height: 48.24px;
}

.ec-painpoints-section .ec-section-header__title > span{
    font-size:45px;
}

@media (max-width: 767px) {
    .ec-painpoints-section .ec-section-header__title > span{
        font-size:30px;
    }
}

.ec-painpoints-grid {
    padding-bottom: 138px;
}

.ec-painpoint-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    height: 100%;
}

.ec-painpoint-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    font-size: 40px;
    margin-bottom: 17px;
}

.ec-painpoint-card__title {
    font-family: "Noto Sans HK", sans-serif;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

.ec-painpoint-card__desc {
    color: #0C0A08B3;
    font-family: "Noto Sans HK", sans-serif;
    font-size: 14px;
    line-height: 22.4px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .ec-painpoints-section {
        padding: 100px 15px 0;
    }

    .ec-painpoints-section .ec-section-header__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .ec-painpoints-grid {
        padding-bottom: 100px;
    }

    .ec-section-header__title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .ec-painpoints-section {
        padding: 80px 15px 0;
    }

    .ec-painpoints-section .ec-section-header__title {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .ec-painpoints-grid {
        padding-bottom: 80px;
    }

    .ec-section-header__subtitle {
        font-size: 14px;
    }

    .ec-section-header__title {
        font-size: 30px;
    }

    .ec-painpoint-card__icon {
        width: 55px;
        height: 55px;
        font-size: 32px;
    }

    .ec-section-header {
        padding-top: 80px;
    }
}

/* EC Feature Cards (Bootstrap) */
.ec-features-section {
    padding: 0 15px;
}

.ec-features-section .ec-feature-card {
    border: none;
    border-radius: 28px;
    padding: 32px 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.08);
}

.ec-features-section .ec-feature-card__img {
    margin-top: auto;
}

.ec-features-section .ec-feature-card__title {
    font-family: "Noto Sans HK", "Manrope", sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: #0C0A08;
    line-height: 1.3;
}

.ec-features-section .ec-feature-card__desc {
    color: #0C0A08CC;
    font-family: "Noto Sans HK", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.32;
    letter-spacing: -0.2px;
    max-width: 578px;
    margin-bottom: 20px;
}

.ec-features-section .ec-feature-card__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: auto;
}

@media (max-width: 767px) {
    .ec-features-section .ec-feature-card {
        border-radius: 20px;
        padding: 24px 15px;
    }

    .ec-features-section .ec-feature-card__title {
        font-size: 22px;
    }
}

.ec-painpoints-section .col-md-6 {
    margin-bottom: 30px;
}

.ec_helper_description {
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    font-family: "Noto Sans HK", sans-serif;
    font-weight: 400;
    letter-spacing: -0.2px;
}

/* ====== Pricing Card – 限時優惠動畫 ====== */
.ec-price-card {
    position: relative;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 24px 28px;
    background: #fff;
}

/* 上邊框中間浮出的 ribbon 標籤 */
.ec-price-card__ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e83e3a 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    animation: ec-flash-pulse 2s ease-in-out infinite;
    z-index: 1;
}

.ec-price-card__flash-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: ec-dot-blink 1s step-end infinite;
}

@keyframes ec-flash-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232, 62, 58, .45); }
    50%      { box-shadow: 0 0 0 10px rgba(232, 62, 58, 0); }
}

@keyframes ec-dot-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* 省錢 badge */
.ec-price-card__save-badge {
    display: inline-block;
    color: #e83e3a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    padding: 5px 15px;
    background: #fee9e6;
    animation: ec-badge-bounce 2s ease infinite;
    margin-left:12px;
}

@keyframes ec-badge-bounce {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.08); }
}

/* 大價格數字 */
.ec-price-card__amount {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin: 0 2px;
}

.ec-price-card__amount.ec-animate-in {
    animation: ec-price-countup .6s cubic-bezier(.22, .61, .36, 1) forwards;
}

@keyframes ec-price-countup {
    0%   { opacity: 0; transform: translateY(20px) scale(.9); }
    60%  { opacity: 1; transform: translateY(-4px) scale(1.03); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* CTA 按鈕 */
.ec-price-card__cta {
    display: block;
    text-align: center;
    background: #3D8B7A;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    position: relative;
    overflow: hidden;
}

.ec-price-card__cta:hover {
    background: #346e62;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 139, 122, .35);
}

.ec-price-card__cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
    animation: ec-cta-shine 3s ease-in-out infinite;
}

@keyframes ec-cta-shine {
    0%   { left: -100%; }
    50%  { left: 150%; }
    100% { left: 150%; }
}

/* ====== FAQ Section ====== */
.ec-faq {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ec-faq__item {
    border-bottom: 1px solid #eee;
}

.ec-faq__item:first-child {
    border-top: 1px solid #eee;
}

.ec-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color .2s;
}

.ec-faq__q::-webkit-details-marker,
.ec-faq__q::marker {
    display: none;
    content: '';
}

.ec-faq__q:hover {
    color: #3D8B7A;
}

.ec-faq__icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #999;
    transition: transform .3s, color .3s;
}

.ec-faq__item[open] .ec-faq__icon {
    transform: rotate(45deg);
    color: #3D8B7A;
}

.ec-faq__a {
    overflow: hidden;
    padding: 0 4px 20px;
    animation: ec-faq-open .3s ease;
}

.ec-faq__a p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

@keyframes ec-faq-open {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== Testimonial slider – 慢速自動橫向捲動 ====== */
#ec-testimonials .ec-testimonial-swiper {
    overflow: visible;
}

#ec-testimonials .ec-testimonial-swiper .pxl-swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ====== Smooth anchor scroll (首頁區塊) ====== */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

#ec-features,
#ec-pricing,
#ec-testimonials,
#ec-faq,
#ec-cta {
    scroll-margin-top: 96px;
}

/* Tab 內示範品牌圖改為 EasyCart icon 時的尺寸 */
.elementor .pxl-logo img[src*="easycart_icon"] {
    max-width: 120px;
    width: 100%;
    height: auto;
}

/* ====== WhatsApp 固定浮動按鈕（Font Awesome 官方品牌圖示 fa-brands fa-whatsapp） ====== */
@keyframes ec-wa-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.65;
    }
    100% {
        transform: scale(1.42);
        opacity: 0;
    }
}

@keyframes ec-wa-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes ec-wa-icon-nudge {
    0%,
    100% {
        transform: scale(1);
    }
    45% {
        transform: scale(1.06);
    }
    55% {
        transform: scale(1.06);
    }
}

.ec-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 50px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    line-height: 1;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow:
        0 2px 8px rgba(18, 140, 126, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.18);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, filter 0.2s ease;
    text-decoration: none;
    animation: ec-wa-float 3.2s ease-in-out infinite;
}

.ec-whatsapp-float::before,
.ec-whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.55);
    pointer-events: none;
    animation: ec-wa-pulse-ring 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.ec-whatsapp-float::after {
    animation-delay: 1.2s;
    border-color: rgba(255, 255, 255, 0.35);
}

.ec-whatsapp-float:hover {
    transform: scale(1.08) translateY(-2px);
    animation: none;
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.5),
        0 14px 32px rgba(0, 0, 0, 0.22);
}

.ec-whatsapp-float:hover::before,
.ec-whatsapp-float:hover::after {
    animation-play-state: paused;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.ec-whatsapp-float:hover .fa-whatsapp {
    filter: brightness(1.08) drop-shadow(0 0 6px rgba(255, 255, 255, 0.35));
}

.ec-whatsapp-float:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.ec-whatsapp-float__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ec-whatsapp-float .fa-whatsapp {
    font-size: 38px;
    color: #ffffff;
    line-height: 1;
    animation: ec-wa-icon-nudge 2.8s ease-in-out infinite;
}

.ec-whatsapp-float:hover .fa-whatsapp {
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .ec-whatsapp-float,
    .ec-whatsapp-float::before,
    .ec-whatsapp-float::after,
    .ec-whatsapp-float .fa-whatsapp {
        animation: none !important;
    }

    .ec-whatsapp-float:hover {
        transform: scale(1.04);
    }
}

@media screen and (max-width: 991px) {
    .ec-whatsapp-float {
        right: 18px;
        bottom: 88px;
    }
}

@media (max-width: 768px) {
    .ec-whatsapp-float {
        right: 16px;
        bottom: 38px;
        width: 52px;
        height: 52px;
    }

    .ec-whatsapp-float .fa-whatsapp {
        font-size: 28px;
    }
}

/* ====== Mobile sticky CTA button (homepage) ====== */
.ec-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .ec-mobile-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: fixed;
        left: 16px;
        right: 80px;
        bottom: 36px;
        z-index: 10000;
        height: 52px;
        background: #00C48C;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 26px;
        box-shadow: 0 4px 20px rgba(0, 194, 140, 0.4);
        transition: background 0.2s, transform 0.2s;
    }

    .ec-mobile-cta:hover,
    .ec-mobile-cta:active {
        background: #00b37d;
        color: #fff;
        transform: translateY(-1px);
    }

    .ec-mobile-cta .fa-rocket {
        font-size: 14px;
    }
}

/* ====== 示範商店 dialog（選單） ====== */
.ec-demo-store-dialog {
    width: 90vw;
    max-height: 90vh;
    padding: 0;
    border: none;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    background: #fff;
}

.ec-demo-store-dialog::backdrop {
    background: rgba(15, 35, 30, 0.55);
    backdrop-filter: blur(4px);
}

.ec-demo-store-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem 0.85rem 1.25rem;
    background: #001723;
    color: #fff;
    font-family: "Noto Sans HK", "Inter", system-ui, sans-serif;
}

.ec-demo-store-dialog__title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 600;
    color:#fff;
}

h4 > span{
    font-size:45px;
}
@media (max-width: 767px) {
    h4 > span{
        font-size:30px;
    }
}

.ec-demo-store-dialog__close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ec-demo-store-dialog__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.ec-demo-store-dialog__frame-wrap {
    position: relative;
    width: 100%;
    height: min(78vh, 720px);
    background: #f0f0f0;
}

.ec-demo-store-dialog__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 767px) {
    .ec-demo-store-dialog {
        width: 96vw;
        height: 90vh;
        max-height: 90vh;
    }
    .ec-demo-store-dialog__frame-wrap {
        height: calc(90vh - 52px);
    }
}

/* ====== Site footer (EasyCart) ====== */
.ec-footer {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    background: linear-gradient(180deg, #002c44e3 0%, #002d45f5 25%, #002d45 100%);
    color: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: "Noto Sans HK", "Inter", system-ui, sans-serif;
}

.ec-footer__inner {
    padding-top: 4rem;
    padding-bottom: 0;
}

.ec-footer__grid {
    padding-bottom: 2.5rem;
}

.ec-footer__brand-col {
    text-align: left;
}

.ec-footer__logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
}

.ec-footer__logo-img {
    display: block;
    width: 180px;
    height: auto;
    border-radius: 12px;
}

.ec-footer__tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
    max-width: 320px;
    margin: 0;
}

.ec-footer__company {
    font-size: 12px;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.42);
}

.ec-footer__heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 1rem;
}

.ec-footer__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.ec-footer__list li {
    margin-bottom: 0.65rem;
}

.ec-footer__list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-footer__list a:hover {
    color: #7dccb8;
}

.ec-footer__note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    display: block;
}

.ec-footer__contact-block {
    margin-bottom: 1.25rem;
}

.ec-footer__contact-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ec-footer__contact-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.ec-footer__contact-line .ec-footer__social {
    flex-shrink: 0;
}

.ec-footer__contact-line .ec-footer__contact-text-link {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    line-height: 1.45;
}

.ec-footer__contact-text-link {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.ec-footer__contact-text-link:hover {
    color: #7dccb8;
}

.ec-footer__follow-block {
    margin-top: 0.25rem;
}

.ec-footer__follow-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.ec-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 16px;
    line-height: 1;
    text-decoration: none !important;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ec-footer__social:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #7dccb8 !important;
    border-color: rgba(125, 204, 184, 0.4);
}

.ec-footer__stores {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ec-footer__store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ec-footer__store-btn:hover {
    background: rgba(61, 139, 122, 0.25);
    border-color: rgba(61, 139, 122, 0.45);
    color: #fff !important;
}

.ec-footer__store-btn--badge {
    padding: 0;
    border: none;
    background: transparent;
    display: block;
    line-height: 0;
}

.ec-footer__store-btn--badge:hover {
    background: transparent;
    border: none;
    opacity: 0.88;
}

.ec-footer__store-img {
    display: block;
    height: auto;
    max-width: min(160px, 100%);
    width: auto;
}

.ec-footer__bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0 1.5rem;
}

.ec-footer__bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ec-footer__copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
}

.ec-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ec-footer__legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ec-footer__legal a:hover {
    color: #7dccb8;
}

.ec-footer__sep {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

@media (max-width: 991px) {
    .ec-footer__brand-col {
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 0.5rem;
    }
}

/* 僅手機版：品牌 logo + 介紹置中 */
@media (max-width: 767px) {
    .ec-footer__brand-col {
        text-align: center;
    }

    .ec-footer__tagline {
        margin-left: auto;
        margin-right: auto;
    }

    /* 聯絡我們：只顯示電郵 + WhatsApp icon，單行並排，隱藏右側文字 */
    .ec-footer__contact-rows {
        flex-direction: row;
        align-items: start;
        justify-content: start;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .ec-footer__contact-line {
        gap: 0;
    }

    .ec-footer__contact-line .ec-footer__contact-text-link {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .ec-footer__bar-inner {
        flex-direction: column;
        align-items: center;
    }
}

/* ====================================================================
   Mobile & Tablet Optimisation — EasyCart Landing Page
   ==================================================================== */

/* ---- Tablet (max-width: 1024px) ---- */
@media (max-width: 1024px) {

    /* Hero: reduce top padding */
    .ec-hero {
        padding-top: 160px !important;
    }

    /* Pricing: tighten inner padding */
    #ec-pricing > .container > div[style] {
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Feature full-width card: stack image & text */
    .ec-features-section .row .col-12 .ec-feature-card .row {
        flex-direction: column-reverse;
    }

    .ec-features-section .row .col-12 .ec-feature-card .col-md-7,
    .ec-features-section .row .col-12 .ec-feature-card .col-md-5 {
        width: 100%;
    }

    /* AI tabs: stack layout already handled by theme, but tighten */
    .pxl-tabs-slip1 .pxl-tabs-title {
        position: static !important;
        min-width: unset !important;
    }
}

/* Mobile-only tab headers — hidden on desktop */
.ec-mobile-tab-header {
    display: none;
}

/* ---- Mobile (max-width: 767px) ---- */
@media (max-width: 767px) {

    /* === Hero === */
    .ec-hero {
        padding-top: 90px !important;
        padding-bottom: 0 !important;
    }

    .ec-hero__top-inner {
        padding: 0 16px;
        justify-content: flex-start;
        padding-top: 24px;
    }

    .ec-hero__text {
        margin-top: 0;
    }

    .ec-hero__title {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .ec-hero__title-line--1 {
        font-size: 42px !important;
        line-height: 1.15;
    }

    .ec-hero__title-line--2 {
        font-size: 30px !important;
        margin-top: 2px;
    }

    .ec-hero__desc {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .ec-hero__cta {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        display: block;
        margin-bottom: 20px;
    }

    .ec-hero__mockup--desktop {
        display: none;
    }
    .ec-hero__mockup--mobile {
        display: block;
        max-width: 88%;
        margin: 0 auto;
    }

    /* Hero floating elements — inline row below CTA, no animation */
    .ec-hero__float-row {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 16px;
    }

    /* .ec-hero__float {
        animation: none !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
    } */

    .ec-hero__float--payment{
        bottom:30%;
        top:unset
    }

    .ec-hero__float--bubble {
        margin-bottom: 0 !important;
        padding: 8px 14px;
        box-shadow: 0 2px 10px rgba(0,0,0,.07);
        border-radius: 40px;
        gap: 6px;
        top:45%;
    }

    .ec-hero__bubble-num {
        font-size: 16px;
    }

    .ec-hero__bubble-label {
        font-size: 11px;
    }

    .ec-hero__float--payment {
        margin: 0 !important;
        text-align: center;
    }

    .ec-hero__float--payment img {
        width: 200px !important;
        filter: drop-shadow(0 2px 8px rgba(0,0,0,.06));
    }

    /* === Logo marquee === */
    .elementor-element-3cff666 {
        padding: 24px 0 !important;
    }

    .ec-logo-item {
        flex: 0 0 100px;
    }

    .ec-logo-item img {
        max-height: 40px;
        max-width: 100px;
        margin-left: 16px;
    }

    .elementor-element-3cff666 h4 {
        font-size: 20px !important;
        margin-bottom: 4px !important;
    }

    /* === Pain Points — 2-col compact grid on mobile === */
    .ec-painpoints-section {
        padding: 0 12px 0 !important;
    }

    .ec-painpoints-section .ec-section-header {
        margin-bottom: 20px;
    }

    .ec-painpoints-section .ec-section-header__lead {
        font-size: 14px;
        line-height: 1.6;
    }

    .ec-painpoints-grid {
        padding-bottom: 36px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    /* Override Bootstrap col sizing inside grid */
    .ec-painpoints-grid > div[class*="col-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding: 0 !important;
        margin-bottom: 0 !important;
    }

    .ec-painpoint-card {
        padding: 14px 12px;
        height: 100%;
    }

    .ec-painpoint-card__icon {
        width: 36px;
        height: 36px;
        font-size: 22px;
        border-radius: 10px;
        margin-bottom: 8px;
    }

    .ec-painpoint-card__title {
        font-size: 14px;
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .ec-painpoint-card__desc {
        font-size: 12px;
        line-height: 1.55;
    }

    /* === Feature section header === */
    .ec-section-header {
        padding: 48px 12px 0 !important;
        margin-bottom: 28px !important;
    }

    .ec-section-header__subtitle {
        font-size: 13px;
    }

    .ec-section-header__title {
        font-size: 22px !important;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    /* === Feature Cards === */
    .ec-features-section {
        padding: 0 8px;
    }

    .ec-features-section .ec-feature-card {
        border-radius: 16px;
        padding: 24px 16px 24px;
    }

    .ec-features-section .ec-feature-card__title {
        font-size: 18px;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .ec-features-section .ec-feature-card__desc {
        font-size: 14px;
        line-height: 1.55;
        margin-bottom: 14px;
    }

    .ec-features-section .ec-feature-card__img {
        margin-top: 0;
        border-radius: 10px;
    }

    .ec-features-section .row.g-3 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }

    .ec-features-section .row[style*="padding-bottom:80px"] {
        padding-bottom: 24px !important;
    }

    /* Full-width feature card (last row) — stack on mobile */
    .ec-features-section .row .col-12 .ec-feature-card .row {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .ec-features-section .row .col-12 .ec-feature-card .col-md-7,
    .ec-features-section .row .col-12 .ec-feature-card .col-md-5 {
        width: 100%;
        padding: 0;
    }

    /* === AI Helper Tabs (dark section) — unified mobile layout === */
    .elementor-element-d43bf35 {
        padding: 0 !important;
    }

    .elementor-element-d43bf35 .e-con-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .elementor-element-d43bf35 .pxl-item--title .pxl-item--text {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }

    .elementor-element-d43bf35 .pxl-item--title .text-shine {
        font-size: 28px;
    }

    /* Hide tab sidebar entirely on mobile */
    .pxl-tabs-slip1 .pxl-tabs-title {
        display: none !important;
    }

    /* Show ALL tab content panels (override JS hide) */
    .pxl-tabs-slip1 .pxl-tabs--content {
        width: 100% !important;
        padding: 0;
    }

    .pxl-tabs-slip1 .pxl-tab-content {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
    }

    /* Separator between content panels */
    .pxl-tabs-slip1 .pxl-tab-content + .pxl-tab-content {
        margin-top: 36px !important;
        padding-top: 36px !important;
        border-top: 1px solid rgba(255,255,255,.12) !important;
    }

    /* Show mobile-only tab headers */
    .ec-mobile-tab-header {
        display: block !important;
        margin-bottom: 12px;
    }

    .ec-mobile-tab-title {
        font-size: 22px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 6px;
        font-family: 'DM Serif Display', serif;
    }

    .ec-mobile-tab-desc {
        font-size: 14px;
        color: rgba(255,255,255,.55);
        margin: 0 0 8px;
        font-family: 'Noto Sans HK', sans-serif;
        line-height: 1.5;
    }

    .ec_helper_description {
        font-size: 14px;
        line-height: 1.7;
        padding: 0;
    }

    /* Tab content video/image container */
    .pxl-tabs-slip1 .pxl-tab-content .e-con-inner {
        padding: 0 !important;
    }

    .pxl-tabs-slip1 .pxl-tab-content div[style*="padding:30px"],
    .pxl-tabs-slip1 .pxl-tab-content div[style*="padding:15px 30px"] {
        padding: 12px !important;
    }

    /* === Pricing === */
    #ec-pricing {
        padding: 48px 0 32px !important;
    }

    #ec-pricing > .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    #ec-pricing .text-center[style*="margin-bottom:48px"] {
        margin-bottom: 28px !important;
    }

    #ec-pricing h2 {
        font-size: 26px !important;
    }

    #ec-pricing .text-center p {
        font-size: 14px;
    }

    .ec-pricing-box {
        padding: 24px 14px !important;
        border-radius: 14px !important;
        margin-bottom: 28px !important;
    }

    .ec-price-card {
        padding: 22px 16px 20px;
        margin-bottom: 20px;
    }

    .ec-price-card__ribbon {
        font-size: 11px;
        padding: 5px 14px;
    }

    .ec-price-card__amount {
        font-size: 40px;
    }

    .ec-price-card__save-badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Pricing feature columns — tighter */
    .ec-pricing-box .col-lg-4 {
        margin-bottom: 8px;
    }

    .ec-pricing-box .col-lg-4 div[style*="font-size:12px;font-weight:700"] {
        margin-bottom: 8px !important;
    }

    #ec-pricing .col-lg-4 ul li {
        font-size: 13px !important;
        gap: 6px !important;
    }

    #ec-pricing .col-lg-4 ul li i {
        font-size: 14px !important;
    }

    #ec-pricing .col-lg-4 ul {
        gap: 6px !important;
    }

    .ec-pricing-box .col-lg-4 .col-12[style*="margin-bottom:28px"] {
        margin-bottom: 16px !important;
    }

    /* === Testimonials === */
    #ec-testimonials {
        padding: 48px 0 40px !important;
    }

    #ec-testimonials .text-center[style*="margin-bottom:56px"] {
        margin-bottom: 28px !important;
    }

    #ec-testimonials h2 {
        font-size: 26px !important;
    }

    #ec-testimonials .text-center div[style*="font-size:18px"] {
        font-size: 14px !important;
        margin-top: 10px !important;
    }

    #ec-testimonials .ec-testimonial-track-wrap {
        padding: 0 8px 8px !important;
    }

    #ec-testimonials .pxl-swiper-slide {
        width: 280px !important;
    }

    #ec-testimonials .pxl-swiper-slide > div {
        padding: 22px 18px !important;
        border-radius: 14px;
    }

    /* Testimonial highlight label */
    #ec-testimonials .pxl-swiper-slide > div > div > div:first-child {
        font-size: 13px !important;
        margin-bottom: 8px !important;
    }

    #ec-testimonials .pxl-swiper-slide p {
        font-size: 13px !important;
        line-height: 1.7 !important;
        margin-bottom: 18px !important;
    }

    /* Testimonial avatar row */
    #ec-testimonials .pxl-swiper-slide > div > div:last-child {
        gap: 10px !important;
    }

    #ec-testimonials .pxl-swiper-slide > div > div:last-child > div:first-child {
        width: 38px !important;
        height: 38px !important;
        font-size: 14px !important;
    }

    #ec-testimonials .pxl-swiper-slide > div > div:last-child div[style*="font-size:15px"] {
        font-size: 14px !important;
    }

    #ec-testimonials .pxl-swiper-slide > div > div:last-child div[style*="font-size:13px"] {
        font-size: 12px !important;
    }

    /* === FAQ === */
    #ec-faq {
        padding: 48px 0 !important;
    }

    #ec-faq .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    #ec-faq h2 {
        font-size: 26px !important;
    }

    #ec-faq .text-center.mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .ec-faq__q {
        font-size: 15px;
        padding: 16px 4px;
        gap: 12px;
    }

    .ec-faq__a {
        padding: 0 4px 14px;
    }

    .ec-faq__a p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* === CTA === */
    #ec-cta {
        padding: 48px 0 40px !important;
    }

    #ec-cta .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #ec-cta h2 {
        font-size: 26px !important;
        margin-bottom: 6px !important;
    }

    #ec-cta .container p {
        font-size: 14px !important;
        margin-bottom: 28px !important;
    }

    .ec-cta-btn {
        font-size: 16px !important;
        padding: 16px 36px !important;
        width: 100%;
        display: block !important;
        text-align: center;
        box-sizing: border-box;
        border-radius: 12px !important;
    }

    #ec-cta p[style*="font-size:13px"] {
        font-size: 12px !important;
        margin-top: 16px !important;
    }

    /* CTA decorative circles — smaller on mobile */
    #ec-cta div[style*="width:600px"] {
        width: 320px !important;
        height: 320px !important;
    }

    #ec-cta div[style*="width:450px"] {
        width: 240px !important;
        height: 240px !important;
    }

    /* === Footer === */
    .ec-footer__inner {
        padding-top: 2rem;
    }

    .ec-footer__grid {
        padding-bottom: 1.5rem;
    }

    .ec-footer__logo-img {
        width: 130px;
    }

    .ec-footer__tagline {
        font-size: 13px;
        line-height: 1.6;
    }

    .ec-footer__heading {
        margin-top: 0.25rem;
        font-size: 14px;
    }

    .ec-footer__list li a {
        font-size: 13px;
    }

    /* Download App column — divider + centered */
    .ec-footer__app-col {
        border-top: 1px solid rgba(255,255,255,.1);
        padding-top: 1.25rem;
        margin-top: 0.5rem;
        text-align: center;
    }

    .ec-footer__app-col .ec-footer__heading {
        text-align: center;
    }

    .ec-footer__app-col .ec-footer__stores {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .ec-footer__store-img {
        height: 38px;
    }

    .ec-footer__bar {
        padding: 14px 0;
    }

    .ec-footer__copy,
    .ec-footer__legal a {
        font-size: 12px;
    }

    /* === Hidden sections (display:none) stay hidden on mobile too === */
    div[style*="display:none !important"] {
        display: none !important;
    }
}

/* ---- Small phones (max-width: 380px) ---- */
@media (max-width: 380px) {

    .ec-hero {
        padding-top: 76px !important;
    }

    .ec-hero__title-line--1 {
        font-size: 30px !important;
    }

    .ec-hero__title-line--2 {
        font-size: 26px !important;
    }

    .ec-hero__desc {
        font-size: 13px;
    }

    .ec-hero__cta {
        font-size: 15px;
        padding: 12px 24px;
    }

    .ec-hero__float--payment img {
        width: 120px !important;
    }

    .ec-section-header__title {
        font-size: 20px !important;
    }

    .ec-painpoints-section .ec-section-header__title {
        font-size: 20px !important;
    }

    .ec-painpoint-card__title {
        font-size: 13px;
    }

    .ec-painpoint-card__desc {
        font-size: 11px;
    }

    .ec-painpoint-card__icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .ec-features-section .ec-feature-card__title {
        font-size: 16px;
    }

    .elementor-element-d43bf35 .pxl-item--title .pxl-item--text {
        font-size: 22px !important;
    }

    #ec-pricing h2,
    #ec-testimonials h2,
    #ec-faq h2,
    #ec-cta h2 {
        font-size: 22px !important;
    }

    #ec-testimonials .pxl-swiper-slide {
        width: 250px !important;
    }

    .ec-price-card__amount {
        font-size: 36px;
    }

    .ec-cta-btn {
        padding: 14px 24px !important;
        font-size: 15px !important;
    }
}
/* ── Language Switcher ── */
.ec-lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
    background: rgba(0,0,0,.06);
    border-radius: 8px;
    padding: 2px;
}
.ec-lang-switcher__link {
    display: inline-block;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all .2s;
    line-height: 1.4;
}
.ec-lang-switcher__link.is-active {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.ec-lang-switcher__link:hover {
    color: #1a1a1a;
    text-decoration: none;
}
.ec-lang-switcher--mobile {
    margin: 20px 0 0;
    justify-content: center;
}
@media (max-width: 1199px) {
    .pxl-header-content .ec-lang-switcher { display: none; }
}
@media (min-width: 1200px) {
    .ec-lang-switcher--mobile { display: none; }
}
