:root {
    --pink: #f5386d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg, #f5386d 0%, #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #666;
    --light: #fff8f8;
    --iconBg: #fff3f5;
}


/* ==========================================
   E-COMMERCE SOLUTIONS PAGE
=========================================== */

.ecommerce-page {
    width: 100%;
    overflow: hidden;
    color: var(--dark);
    background: #ffffff;
}

.ecommerce-page *,
.ecommerce-page *::before,
.ecommerce-page *::after {
    box-sizing: border-box;
}

.ecommerce-page img {
    max-width: 100%;
}

.ecommerce-page a {
    text-decoration: none;
}


/* ==========================================
   COMMON SECTION HEADING
=========================================== */

.ecommerce-section-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.ecommerce-section-heading h2 span {
    color: var(--pink);
}

.ecommerce-title-line {
    width: 55px;
    height: 3px;
    margin-top: 14px;
    border-radius: 50px;
    background: var(--gradient);
}


/* ==========================================
   BREADCRUMB
=========================================== */

.ecommerce-breadcrumb {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid #f4e8ea;
}

.ecommerce-breadcrumb-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.ecommerce-breadcrumb-wrapper a,
.ecommerce-breadcrumb-wrapper span {
    font-size: 10px;
    font-weight: 600;
}

.ecommerce-breadcrumb-wrapper a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.ecommerce-breadcrumb-wrapper a:hover {
    color: var(--pink);
}

.ecommerce-breadcrumb-wrapper span {
    color: var(--pink);
}

.ecommerce-breadcrumb-wrapper i {
    color: #b8aeb2;
    font-size: 7px;
}


/* ==========================================
   E-COMMERCE HERO
=========================================== */

.ecommerce-hero {
    position: relative;
    min-height: 480px;
    padding: 10px 0 22px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 82% 32%,
            rgba(245, 56, 109, 0.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 62% 80%,
            rgba(255, 138, 30, 0.08),
            transparent 26%
        ),
        #ffffff;
}

.ecommerce-hero::before {
    position: absolute;
    top: 65px;
    right: 5%;
    width: 380px;
    height: 380px;
    content: "";
    border: 1px solid rgba(245, 56, 109, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.ecommerce-hero::after {
    position: absolute;
    right: 18%;
    bottom: 45px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.05);
    filter: blur(10px);
    pointer-events: none;
}

.ecommerce-hero .row {
    min-height: 415px;
}

.ecommerce-hero-content {
    position: relative;
    z-index: 5;
}

.ecommerce-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 16px;
    margin-bottom: 18px;
    color: var(--pink);
    background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.18);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.ecommerce-hero-content h1 {
    max-width: 590px;
    margin: 0 0 20px;
    color: var(--dark);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -1.5px;
}

.ecommerce-hero-content h1 span {
    color: var(--pink);
}

.ecommerce-hero-description {
    max-width: 510px;
    margin: 0 0 27px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.75;
}

.ecommerce-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.ecommerce-primary-btn,
.ecommerce-outline-btn {
    display: inline-flex;
    min-height: 45px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ecommerce-primary-btn {
    color: #ffffff;
    background: var(--gradient);
    border: 1px solid transparent;
    box-shadow: 0 12px 25px rgba(245, 56, 109, 0.22);
}

.ecommerce-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(245, 56, 109, 0.3);
}

.ecommerce-outline-btn {
    color: var(--pink);
    background: #ffffff;
    border: 1px solid var(--pink);
}

.ecommerce-outline-btn:hover {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
}


/* ==========================================
   HERO VISUAL
=========================================== */

.ecommerce-hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-hero-shape {
    position: absolute;
    z-index: 0;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(245, 56, 109, 0.14) 0%,
            rgba(255, 138, 30, 0.07) 43%,
            transparent 72%
        );
}

.ecommerce-hero-main-image {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 650px;
    max-height: 440px;
    object-fit: contain;
    /* filter:
        drop-shadow(
            0 28px 35px rgba(26, 26, 46, 0.18)
        ); */
}

.ecommerce-floating-card {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(245, 56, 109, 0.17);
    box-shadow: 0 12px 28px rgba(26, 26, 46, 0.13);
    backdrop-filter: blur(10px);
}

.ecommerce-floating-cart {
    top: 32px;
    right: 4%;
    width: 72px;
    height: 72px;
    border-radius: 15px;
    transform: rotate(6deg);
    animation: ecommerceFloatCart 4s ease-in-out infinite;
}

.ecommerce-floating-icon {
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 17px;
}

@keyframes ecommerceFloatCart {
    0%,
    100% {
        transform: translateY(0) rotate(6deg);
    }

    50% {
        transform: translateY(-10px) rotate(6deg);
    }
}

.ecommerce-floating-discount {
    position: absolute;
    z-index: 7;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border: 5px solid #ffffff;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(245, 56, 109, 0.25);
}

.ecommerce-discount-one {
    top: 75px;
    left: 4%;
    animation: ecommerceDiscountOne 4.5s ease-in-out infinite;
}

.ecommerce-discount-two {
    right: 8%;
    bottom: 42px;
    width: 42px;
    height: 42px;
    font-size: 12px;
    animation: ecommerceDiscountTwo 5s ease-in-out infinite;
}

@keyframes ecommerceDiscountOne {
    0%,
    100% {
        transform: translateY(0) rotate(-8deg);
    }

    50% {
        transform: translateY(10px) rotate(4deg);
    }
}

@keyframes ecommerceDiscountTwo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.ecommerce-hero-dots {
    position: absolute;
    z-index: 1;
    right: 2%;
    bottom: 50px;
    display: grid;
    grid-template-columns: repeat(6, 4px);
    gap: 8px;
}

.ecommerce-hero-dots span {
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.55;
}


/* ==========================================
   HERO BENEFITS
=========================================== */

.ecommerce-hero-benefits {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
    margin-top: 25px;
}

.ecommerce-hero-benefit {
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #f0dfe2;
}

.ecommerce-hero-benefit:last-child {
    border-right: 0;
}

.ecommerce-benefit-icon {
    display: flex;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border-radius: 50%;
    font-size: 13px;
}

.ecommerce-hero-benefit span {
    color: #504a57;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}


/* ==========================================
   E-COMMERCE SERVICES
=========================================== */

.ecommerce-services-section {
    background: #ffffff;
}

.ecommerce-service-card {
    --mouse-x: 50%;
    --mouse-y: 50%;

    position: relative;
    height: 100%;
    min-height: 270px;
    padding: 25px 16px 50px;
    overflow: hidden;
    text-align: left;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 9px;
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ecommerce-service-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background:
        radial-gradient(
            circle at var(--mouse-x) var(--mouse-y),
            rgba(245, 56, 109, 0.11),
            transparent 37%
        );
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ecommerce-service-card:hover::before {
    opacity: 1;
}

.ecommerce-service-card:hover {
    border-color: rgba(245, 56, 109, 0.35);
    transform: translateY(-7px);
    box-shadow: 0 18px 36px rgba(245, 56, 109, 0.13);
}

.ecommerce-service-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: var(--pink);
    background: #ffffff;
    font-size: 30px;
    transition: all 0.3s ease;
}

.ecommerce-service-card:hover .ecommerce-service-icon {
    background: transparent;
    border-color: transparent;
}

.ecommerce-service-icon i {
    transition: transform 0.3s ease;
}

.ecommerce-service-card:hover .ecommerce-service-icon i {
    transform: rotateY(-180deg);
}

.ecommerce-service-card h3 {
    position: relative;
    z-index: 2;
    min-height: 43px;
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.ecommerce-service-card p {
    position: relative;
    z-index: 2;
    min-height: auto;
    margin: 0;
    color: var(--gray);
    font-size: 9.5px;
    line-height: 1.65;
}

.ecommerce-service-card > a {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-top: 12px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s ease;
    right: 20px;
    bottom: 20px;
}

.ecommerce-service-card > a:hover {
    color: #ffffff;
    background: var(--gradient);
    transform: translateX(4px);
}


/* ==========================================
   E-COMMERCE DEVELOPMENT PROCESS
=========================================== */

/* .ecommerce-process-section {
    background: var(--light);
} */

.ecommerce-process-wrapper {
    position: relative;
}

.ecommerce-process-wrapper::before {
    position: absolute;
    z-index: 0;
    top: 55px;
    left: 8.4%;
    width: 83.2%;
    height: 1px;
    content: "";
    background:
        linear-gradient(
            90deg,
            rgba(245, 56, 109, 0.2),
            rgba(255, 138, 30, 0.55),
            rgba(245, 56, 109, 0.2)
        );
}

.ecommerce-process-item {
    position: relative;
    z-index: 2;
}

.ecommerce-process-icon {
    display: flex;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.58);
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(245, 56, 109, 0.08);
    transition: all 0.3s ease;
}

.ecommerce-process-item:hover .ecommerce-process-icon,
.ecommerce-process-active .ecommerce-process-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(245, 56, 109, 0.2);
}

.ecommerce-process-dot {
    position: absolute;
    z-index: 4;
    width: 9px;
    height: 9px;
    /* margin: 0 auto 10px; */
    background: var(--pink);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(245, 56, 109, 0.3);
        left: -15px;
    top: 27px;
}

.ecommerce-process-number {
    display: block;
    margin-bottom: 4px;
    color: var(--pink);
    font-size: 9px;
    font-weight: 800;
}

.ecommerce-process-item h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
}

.ecommerce-process-item p {
    /* margin: 0 auto; */
    color: var(--gray);
    font-size: 9px;
    line-height: 1.6;
}


/* ==========================================
   E-COMMERCE STATS
=========================================== */

/* .ecommerce-stats-section {
    background: var(--light);
} */

.ecommerce-stats-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    border-radius: 10px;
    box-shadow: 0 17px 38px rgba(245, 56, 109, 0.22);
}

.ecommerce-stats-wrapper::before {
    position: absolute;
    top: -170px;
    right: 5%;
    width: 350px;
    height: 350px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.ecommerce-stats-wrapper::after {
    position: absolute;
    left: 15%;
    bottom: -200px;
    width: 360px;
    height: 360px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.ecommerce-stat-item {
    position: relative;
    z-index: 2;
    min-height: 175px;
    padding: 25px 10px 20px;
    text-align: center;
    color: #ffffff;
}

.ecommerce-stat-item::after {
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 56px);
    content: "";
    background: rgba(255, 255, 255, 0.25);
}

.ecommerce-stat-item-last::after {
    display: none;
}

.ecommerce-stat-icon {
    margin: 0 auto 10px;
    font-size: 35px;
}

.ecommerce-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.ecommerce-stat-number span,
.ecommerce-stat-number strong {
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.ecommerce-stat-number strong {
    font-size: 18px;
}

.ecommerce-stat-item p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}


/* ==========================================
   PLATFORMS & FEATURES SECTION
=========================================== */

.ecommerce-platforms-section {
    background: #ffffff;
}

.ecommerce-platform-card,
.ecommerce-features-card {
    height: 100%;
    min-height: 285px;
    padding: 27px 25px;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 10px;
    box-shadow: 0 9px 28px rgba(26, 26, 46, 0.06);
}

.ecommerce-platform-heading h2 {
    margin: 0 0 27px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}

.ecommerce-platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.ecommerce-platform-item {
    display: flex;
    min-width: 0;
    padding: 9px 5px;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.ecommerce-platform-item:hover,
.ecommerce-platform-active {
    background: var(--light);
    transform: translateY(-5px);
}

.ecommerce-platform-logo {
    display: flex;
    width: 58px;
    height: 58px;
    margin-bottom: 11px;
    padding: 9px;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(26, 26, 46, 0.06);
}

.ecommerce-platform-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ecommerce-platform-item span {
    color: #504a57;
    font-size: 14px;
    font-weight: 700;
}

.ecommerce-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 7px;
}

.ecommerce-feature-item {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.ecommerce-feature-icon {
    display: flex;
    width: 44px;
    height: 44px;
    margin-bottom: 8px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.14);
    border-radius: 50%;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ecommerce-feature-item:hover .ecommerce-feature-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 9px 20px rgba(245, 56, 109, 0.18);
}

.ecommerce-feature-item span {
    color: #504a57;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}


/* ==========================================
   E-COMMERCE PORTFOLIO
=========================================== */

/* .ecommerce-portfolio-section {
    background: var(--light);
} */

.ecommerce-portfolio-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ecommerce-portfolio-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 11px;
    box-shadow: 0 9px 28px rgba(26, 26, 46, 0.06);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ecommerce-portfolio-card:hover {
    border-color: rgba(245, 56, 109, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(245, 56, 109, 0.12);
}

.ecommerce-portfolio-image {
    position: relative;
    min-height: 200px;
    height: 100%;
    overflow: hidden;
}

.ecommerce-portfolio-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ecommerce-portfolio-card:hover .ecommerce-portfolio-image img {
    transform: scale(1.05);
}

.ecommerce-portfolio-image-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(26, 26, 46, 0.18),
            rgba(26, 26, 46, 0.02)
        );
}

.ecommerce-portfolio-number {
    position: absolute;
    z-index: 4;
    top: 18px;
    left: 18px;
    display: flex;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(245, 56, 109, 0.25);
}

.ecommerce-portfolio-type {
    position: absolute;
    z-index: 4;
    left: 10px;
    bottom: 18px;
    display: inline-flex;
    min-height: 34px;
    padding: 0 13px;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(26, 26, 46, 0.12);
    backdrop-filter: blur(10px);
}

.ecommerce-portfolio-type i {
    color: var(--pink);
    font-size: 10px;
}

.ecommerce-portfolio-type span {
    font-size: 8px;
    font-weight: 800;
}

.ecommerce-portfolio-content {
    padding: 15px;
}

.ecommerce-portfolio-content h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 22px;
    font-weight: 800;
}

.ecommerce-portfolio-content > p {
    max-width: 620px;
    margin: 0 0 17px;
    color: var(--gray);
    font-size: 10px;
    line-height: 1.7;
}

.ecommerce-portfolio-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px 15px;
    margin-bottom: 18px;
}

.ecommerce-portfolio-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ecommerce-portfolio-feature i {
    display: flex;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 6px;
}

.ecommerce-portfolio-feature span {
    color: #504a57;
    font-size: 8.5px;
    font-weight: 600;
}

.ecommerce-portfolio-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.ecommerce-portfolio-technologies span {
    display: inline-flex;
    min-height: 25px;
    padding: 0 10px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.13);
    border-radius: 50px;
    font-size: 7.5px;
    font-weight: 700;
}

.ecommerce-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--pink);
    font-size: 9px;
    font-weight: 800;
    transition: gap 0.3s ease;
}

.ecommerce-portfolio-link:hover {
    color: var(--orange);
    gap: 13px;
}


/* ==========================================
   WHY CHOOSE THIXPRO
=========================================== */

.ecommerce-why-section {
    background: #ffffff;
}

.ecommerce-why-card,
.ecommerce-testimonial-wrapper {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 11px;
    box-shadow: 0 9px 28px rgba(26, 26, 46, 0.06);
}

.ecommerce-why-card {
    padding: 34px 30px;
    background:
        linear-gradient(
            135deg,
            #fff8f8 0%,
            #ffffff 58%,
            #fff7f0 100%
        );
}

.ecommerce-why-card::before {
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 330px;
    height: 330px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.07);
}

.ecommerce-why-content {
    position: relative;
    z-index: 4;
    max-width: 70%;
}

.ecommerce-why-tag {
    display: inline-flex;
    padding: 6px 13px;
    margin-bottom: 13px;
    color: var(--pink);
    background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.16);
    border-radius: 50px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.ecommerce-why-content h2 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.ecommerce-why-content h2 span {
    color: var(--pink);
}

.ecommerce-why-description {
    margin: 18px 0;
    color: var(--gray);
    font-size: 9.5px;
    line-height: 1.65;
}

.ecommerce-why-list {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 11px;
}

.ecommerce-why-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.ecommerce-why-check {
    display: flex;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 6px;
}

.ecommerce-why-item span {
    color: #514b58;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.ecommerce-why-image {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: -4px;
    width: 235px;
}

.ecommerce-why-image img {
    width: 100%;
    max-height: 290px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 17px 22px rgba(26, 26, 46, 0.17)
        );
}


/* ==========================================
   TESTIMONIALS
=========================================== */

.ecommerce-testimonial-wrapper {
    padding: 34px 35px;
}

.ecommerce-testimonial-heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--pink);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.ecommerce-testimonial-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.ecommerce-testimonial-heading h2 strong {
    color: var(--pink);
    font-weight: 800;
}

/* #ecommerceTestimonialCarousel {
    position: relative;
    margin-top: 25px;
    padding-bottom: 38px;
} */

.ecommerce-testimonial-card {
    position: relative;
    min-height: 260px;
    padding: 27px 28px;
    background: var(--light);
    border: 1px solid #f0e3e5;
    border-radius: 9px;
}

.ecommerce-testimonial-quote {
    display: flex;
    width: 42px;
    height: 42px;
    margin-bottom: 17px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 15px;
}

.ecommerce-testimonial-card > p {
    max-width: 570px;
    margin: 0 0 14px;
    color: var(--gray);
    font-size: 10px;
    font-style: italic;
    line-height: 1.75;
}

.ecommerce-testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--orange);
    font-size: 9px;
}

.ecommerce-testimonial-client {
    display: flex;
    align-items: center;
    gap: 11px;
}

.ecommerce-testimonial-client img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 3px solid #ffe1e8;
    border-radius: 50%;
}

.ecommerce-testimonial-client h4 {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
}

.ecommerce-testimonial-client span {
    color: #8b838f;
    font-size: 8px;
}

/* .ecommerce-testimonial-controls {
    position: absolute;
    z-index: 7;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 7px;
}

.ecommerce-testimonial-controls button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.25);
    border-radius: 50%;
    font-size: 9px;
    transition: all 0.3s ease;
}

.ecommerce-testimonial-controls button:hover {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
}

.ecommerce-testimonial-indicators {
    position: absolute;
    z-index: 6;
    left: 0;
    bottom: 11px;
    display: flex;
    gap: 5px;
}

.ecommerce-testimonial-indicators button {
    width: 7px;
    height: 7px;
    padding: 0;
    opacity: 0.3;
    background: var(--pink);
    border: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ecommerce-testimonial-indicators button.active {
    width: 22px;
    opacity: 1;
    border-radius: 50px;
    background: var(--gradient);
} */


/* ==========================================
   CUSTOM TESTIMONIAL SLIDER
=========================================== */

.ecommerce-custom-slider {
    position: relative;
    margin-top: 25px;
}

.ecommerce-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 9px;
}

.ecommerce-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.65s cubic-bezier(
        0.22,
        1,
        0.36,
        1
    );
    will-change: transform;
}

.ecommerce-slider-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}


/* ==========================================
   TESTIMONIAL CARD
=========================================== */

.ecommerce-slider-slide .ecommerce-testimonial-card {
    width: 100%;
    min-height: 260px;
}


/* ==========================================
   SLIDER FOOTER
=========================================== */

.ecommerce-slider-footer {
    display: flex;
    min-height: 40px;
    margin-top: 12px;
    align-items: center;
    justify-content: space-between;
}


/* ==========================================
   SLIDER DOTS
=========================================== */

.ecommerce-slider-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ecommerce-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    opacity: 0.3;
    background: var(--pink);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.ecommerce-slider-dot:hover {
    opacity: 0.7;
    transform: scale(1.15);
}

.ecommerce-slider-dot.active {
    width: 22px;
    opacity: 1;
    border-radius: 50px;
    background: var(--gradient);
}


/* ==========================================
   SLIDER CONTROLS
=========================================== */

.ecommerce-slider-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ecommerce-slider-controls button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.25);
    border-radius: 50%;
    cursor: pointer;
    font-size: 9px;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ecommerce-slider-controls button:hover {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow:
        0 8px 18px
        rgba(245, 56, 109, 0.2);
}

.ecommerce-slider-controls button:active {
    transform: scale(0.92);
}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 767px) {

    .ecommerce-slider-slide .ecommerce-testimonial-card {
        min-height: 285px;
    }

    .ecommerce-slider-footer {
        margin-top: 10px;
    }

    .ecommerce-slider-controls button {
        width: 34px;
        height: 34px;
    }

}


@media (max-width: 420px) {

    .ecommerce-slider-slide .ecommerce-testimonial-card {
        min-height: 310px;
    }

}

/* ==========================================
   FINAL E-COMMERCE CTA
=========================================== */

.ecommerce-final-cta-section {
    background: #ffffff;
}

.ecommerce-final-cta {
    position: relative;
    overflow: hidden;
    padding: 42px 55px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            #17172b 0%,
            #29213c 48%,
            #4b1f3a 100%
        );
    border-radius: 13px;
    box-shadow: 0 18px 42px rgba(26, 26, 46, 0.23);
}

.ecommerce-final-cta::before {
    position: absolute;
    top: -180px;
    right: -70px;
    width: 450px;
    height: 450px;
    content: "";
    border: 1px solid rgba(245, 56, 109, 0.23);
    border-radius: 50%;
}

.ecommerce-final-cta::after {
    position: absolute;
    right: 180px;
    bottom: -220px;
    width: 400px;
    height: 400px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.07);
}

.ecommerce-final-cta-content {
    position: relative;
    z-index: 4;
}

.ecommerce-final-cta-tag {
    display: inline-flex;
    padding: 6px 13px;
    margin-bottom: 15px;
    color: #ffffff;
    background: rgba(245, 56, 109, 0.18);
    border: 1px solid rgba(245, 56, 109, 0.35);
    border-radius: 50px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.ecommerce-final-cta-content h2 {
    max-width: 620px;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.22;
}

.ecommerce-final-cta-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ecommerce-final-cta-content p {
    max-width: 590px;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.7;
}

.ecommerce-final-cta-btn {
    display: inline-flex;
    min-height: 43px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 10px 23px rgba(245, 56, 109, 0.23);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.ecommerce-final-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 28px rgba(245, 56, 109, 0.32);
}


/* ==========================================
   FINAL CTA VISUAL
=========================================== */

.ecommerce-final-cta-visual {
    position: relative;
    z-index: 4;
    min-height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecommerce-final-cta-image {
    width: 100%;
    max-width: 410px;
    max-height: 280px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 22px 28px rgba(0, 0, 0, 0.28)
        );
}

.ecommerce-sales-card {
    position: absolute;
    right: -5px;
    bottom: 0;
    display: flex;
    min-width: 225px;
    padding: 10px 12px;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 9px;
    box-shadow: 0 12px 27px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.ecommerce-sales-icon {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 14px;
}

.ecommerce-sales-content {
    flex: 1;
}

.ecommerce-sales-content span,
.ecommerce-sales-content strong {
    display: block;
}

.ecommerce-sales-content span {
    margin-bottom: 2px;
    color: #918894;
    font-size: 7px;
}

.ecommerce-sales-content strong {
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
}

.ecommerce-sales-status {
    color: #22c55e;
    font-size: 11px;
    font-weight: 800;
}


/* ==========================================
   LARGE DESKTOP
=========================================== */

@media (min-width: 1400px) {

    .ecommerce-page .container {
        max-width: 1320px;
    }

    .ecommerce-hero-content h1 {
        font-size: 50px;
    }

}


/* ==========================================
   LAPTOP
=========================================== */

@media (max-width: 1199px) {

    .ecommerce-hero-content h1 {
        font-size: 40px;
    }

    .ecommerce-hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }

    .ecommerce-hero-benefit:nth-child(2) {
        border-right: 0;
    }

    .ecommerce-platform-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .ecommerce-features-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .ecommerce-why-content {
        max-width: 75%;
    }

    .ecommerce-why-image {
        width: 190px;
    }

}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 991px) {

    .ecommerce-process-item{
        text-align: center;
    }

    .ecommerce-process-item p{
        margin: 0 auto;
    }

    .ecommerce-process-wrapper::before, .ecommerce-process-dot {
        display: none;
    }

    .ecommerce-hero {
        min-height: auto;
        padding-top: 50px;
    }

    .ecommerce-hero .row {
        min-height: auto;
    }

    .ecommerce-hero-content {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .ecommerce-hero-content h1,
    .ecommerce-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-hero-buttons {
        justify-content: center;
    }

    .ecommerce-hero-visual {
        min-height: 430px;
        margin-top: 30px;
    }

    .ecommerce-hero-benefits {
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-stat-item:nth-child(3)::after {
        display: none;
    }

    .ecommerce-platform-card,
    .ecommerce-features-card {
        min-height: auto;
    }

    .ecommerce-portfolio-image {
        min-height: 200px;
    }

    .ecommerce-why-card,
    .ecommerce-testimonial-wrapper {
        min-height: auto;
    }

    .ecommerce-why-content {
        max-width: 65%;
    }

    .ecommerce-why-image {
        width: 240px;
    }

    .ecommerce-final-cta {
        text-align: center;
    }

    .ecommerce-final-cta-content h2,
    .ecommerce-final-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ecommerce-sales-card {
        right: 50%;
        transform: translateX(50%);
    }

}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 767px) {

    .ecommerce-section-heading {
        margin-bottom: 32px !important;
    }

    .ecommerce-section-heading h2 {
        font-size: 20px;
    }


    /* ======================================
       BREADCRUMB
    ======================================= */

    .ecommerce-breadcrumb {
        padding: 10px 0;
    }

    .ecommerce-breadcrumb-wrapper {
        gap: 7px;
    }

    .ecommerce-breadcrumb-wrapper a,
    .ecommerce-breadcrumb-wrapper span {
        font-size: 9px;
    }


    /* ======================================
       HERO
    ======================================= */

    .ecommerce-hero {
        padding: 38px 0 30px;
    }

    .ecommerce-hero-content h1 {
        font-size: 35px;
        line-height: 1.14;
        letter-spacing: -1px;
    }

    .ecommerce-hero-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .ecommerce-hero-buttons {
        flex-direction: column;
    }

    .ecommerce-primary-btn,
    .ecommerce-outline-btn {
        width: 100%;
        max-width: 320px;
    }

    .ecommerce-hero-visual {
        min-height: 350px;
        margin-top: 28px;
    }

    .ecommerce-hero-main-image {
        width: 95%;
    }

    .ecommerce-hero-shape {
        width: 280px;
        height: 280px;
    }

    .ecommerce-floating-cart {
        top: 10px;
        right: 0;
        width: 58px;
        height: 58px;
    }

    .ecommerce-floating-icon {
        width: 37px;
        height: 37px;
        font-size: 14px;
    }

    .ecommerce-floating-discount {
        width: 42px;
        height: 42px;
        border-width: 4px;
        font-size: 12px;
    }

    .ecommerce-discount-one {
        top: 50px;
        left: 0;
    }

    .ecommerce-discount-two {
        right: 2%;
        bottom: 30px;
        width: 38px;
        height: 38px;
    }

    .ecommerce-hero-dots {
        right: 0;
        bottom: 30px;
        grid-template-columns: repeat(5, 3px);
        gap: 6px;
    }

    .ecommerce-hero-dots span {
        width: 3px;
        height: 3px;
    }

    .ecommerce-hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
        margin-top: 28px;
    }

    .ecommerce-hero-benefit {
        padding: 0 10px;
    }

    .ecommerce-hero-benefit:first-child {
        padding-left: 10px;
    }

    .ecommerce-hero-benefit:nth-child(even) {
        border-right: 0;
    }

    .ecommerce-hero-benefit span {
        font-size: 10px;
    }


    /* ======================================
       SERVICES
    ======================================= */

    .ecommerce-service-card {
        min-height: auto;
    }

    .ecommerce-service-card h3 {
        min-height: auto;
        font-size: 11px;
    }

    .ecommerce-service-card p {
        min-height: auto;
        font-size: 8.5px;
    }


    /* ======================================
       PROCESS
    ======================================= */

    .ecommerce-process-icon {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .ecommerce-process-item h3 {
        font-size: 11px;
    }

    .ecommerce-process-item p {
        font-size: 8px;
    }


    /* ======================================
       STATS
    ======================================= */

    .ecommerce-stat-item {
        min-height: 155px;
        padding: 20px 8px;
    }

    .ecommerce-stat-item:nth-child(2)::after,
    .ecommerce-stat-item:nth-child(4)::after,
    .ecommerce-stat-item:nth-child(6)::after {
        display: none;
    }

    .ecommerce-stat-icon {
        font-size: 25px;
    }

    .ecommerce-stat-number span,
    .ecommerce-stat-number strong {
        font-size: 21px;
    }


    /* ======================================
       PLATFORMS & FEATURES
    ======================================= */

    .ecommerce-platform-card,
    .ecommerce-features-card {
        padding: 24px 17px;
    }

    .ecommerce-platform-heading h2 {
        margin-bottom: 23px;
        font-size: 18px;
        text-align: center;
    }

    .ecommerce-platform-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 8px;
    }

    .ecommerce-platform-logo {
        width: 53px;
        height: 53px;
    }

    .ecommerce-features-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 20px 4px;
    }

    .ecommerce-feature-icon {
        width: 39px;
        height: 39px;
        font-size: 13px;
    }

    .ecommerce-feature-item span {
        font-size: 7px;
    }


    /* ======================================
       PORTFOLIO
    ======================================= */

    .ecommerce-portfolio-image {
        min-height: 200px;
    }

    .ecommerce-portfolio-content {
        padding: 25px 20px;
    }

    .ecommerce-portfolio-content h3 {
        font-size: 20px;
    }

    .ecommerce-portfolio-content > p {
        font-size: 9.5px;
    }

    .ecommerce-portfolio-features {
        grid-template-columns: 1fr;
    }

    .ecommerce-portfolio-feature span {
        font-size: 8.5px;
    }


    /* ======================================
       WHY CHOOSE
    ======================================= */

    .ecommerce-why-card {
        padding: 30px 22px;
    }

    .ecommerce-why-content {
        max-width: 100%;
    }

    .ecommerce-why-content h2 {
        font-size: 20px;
    }

    .ecommerce-why-description {
        max-width: 100%;
        font-size: 9.5px;
    }

    .ecommerce-why-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 220px;
        margin: 20px auto -25px;
    }


    /* ======================================
       TESTIMONIALS
    ======================================= */

    .ecommerce-testimonial-wrapper {
        padding: 30px 20px;
    }

    .ecommerce-testimonial-heading h2 {
        font-size: 20px;
    }

    .ecommerce-testimonial-card {
        min-height: 285px;
        padding: 25px 21px;
    }

    .ecommerce-testimonial-card > p {
        font-size: 9.5px;
    }


    /* ======================================
       FINAL CTA
    ======================================= */

    .ecommerce-final-cta {
        padding: 35px 20px;
    }

    .ecommerce-final-cta-content h2 {
        font-size: 27px;
    }

    .ecommerce-final-cta-content p {
        font-size: 10px;
    }

    .ecommerce-final-cta-btn {
        width: 100%;
        max-width: 310px;
    }

    .ecommerce-final-cta-visual {
        min-height: 280px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 420px) {

    .ecommerce-hero-content h1 {
        font-size: 31px;
    }

    .ecommerce-hero-visual {
        min-height: 315px;
    }

    .ecommerce-service-card {
        min-height: auto;
    }

    .ecommerce-service-card h3 {
        font-size: 10px;
    }

    .ecommerce-service-card p {
        min-height: auto;
        font-size: 8px;
    }

    .ecommerce-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ecommerce-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 8px;
    }

    .ecommerce-feature-item span {
        font-size: 8px;
    }

    .ecommerce-portfolio-image {
        min-height: 230px;
    }

    .ecommerce-portfolio-content {
        padding: 22px 17px;
    }

    .ecommerce-why-content h2,
    .ecommerce-testimonial-heading h2 {
        font-size: 20px;
    }

    .ecommerce-testimonial-card {
        min-height: 310px;
    }

    .ecommerce-final-cta-content h2 {
        font-size: 24px;
    }

    .ecommerce-sales-card {
        min-width: 205px;
    }

}


/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .ecommerce-floating-cart,
    .ecommerce-discount-one,
    .ecommerce-discount-two {
        animation: none;
    }

    .ecommerce-page *,
    .ecommerce-page *::before,
    .ecommerce-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* .ecommercePortfolioSwiper{
    padding:20px 0 60px;
} */

.ecommercePortfolioSwiper .swiper-slide{
    height:auto;
}

.ecommercePortfolioSwiper .swiper-button-next,
.ecommercePortfolioSwiper .swiper-button-prev{
    color:#0d6efd;
}

.ecommercePortfolioSwiper .swiper-pagination-bullet-active{
    background:#0d6efd;
}

/* =========================================
   E-COMMERCE HERO BENEFITS
========================================= */

.ecommerce-hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 35px;
}


/* =========================================
   BENEFIT CARD
========================================= */

.ecommerce-hero-benefit {
    position: relative;
    align-items: center;
    gap: 14px;

    padding: 18px 16px;

    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(245, 56, 109, 0.12);

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;
}


/* Animated shine layer */

.ecommerce-hero-benefit::before {
    content: "";
    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.7s ease;

    pointer-events: none;
}


/* Gradient bottom line */

.ecommerce-hero-benefit::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 0;

    height: 3px;

    border-radius: 20px 20px 0 0;

    background: linear-gradient(
        90deg,
        #f5386d 0%,
        #ff8a1e 100%
    );

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.45s ease;
}


/* =========================================
   HOVER CARD
========================================= */

.ecommerce-hero-benefit:hover {

    transform:
        translateY(-10px)
        scale(1.025);

    border-color: rgba(245, 56, 109, 0.35);

    background: rgba(255, 255, 255, 0.95);

    box-shadow:
        0 18px 40px rgba(245, 56, 109, 0.13),
        0 8px 20px rgba(255, 138, 30, 0.08);
}


/* Shine animation */

.ecommerce-hero-benefit:hover::before {
    left: 130%;
}


/* Bottom gradient line */

.ecommerce-hero-benefit:hover::after {
    transform: scaleX(1);
}


/* =========================================
   ICON
========================================= */

.ecommerce-benefit-icon {

    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #f5386d 0%,
            #ff8a1e 100%
        );

    color: #fff;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(245, 56, 109, 0.22);

    transition:
        transform 0.45s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.45s ease;
}


/* Icon hover */

.ecommerce-hero-benefit:hover .ecommerce-benefit-icon {

    transform:
        rotate(-8deg)
        scale(1.12);

    box-shadow:
        0 10px 25px rgba(245, 56, 109, 0.35);
}


/* =========================================
   ICON ANIMATION
========================================= */

.ecommerce-benefit-icon i {

    display: inline-block;

    transition:
        transform 0.4s ease;
}

.ecommerce-hero-benefit:hover
.ecommerce-benefit-icon i {

    transform:
        scale(1.15)
        rotate(8deg);
}


/* =========================================
   TEXT
========================================= */

.ecommerce-benefit-text {

    position: relative;

    z-index: 2;

    font-size: 14px;

    line-height: 1.5;

    font-weight: 600;

    color: #242424;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* Text hover */

.ecommerce-hero-benefit:hover
.ecommerce-benefit-text {

    transform: translateX(4px);

    color: #f5386d;
}

/* =====================================
   PROCESS SECTION - PROFESSIONAL STYLE
===================================== */

.process-line {
    position: relative;
    padding: 20px 0 10px;
}

/* Timeline */
.process-line:before {
    content: "";
    position: absolute;
    top: 47px;
    left: 4%;
    right: 4%;
    height: 2px;

    background: repeating-linear-gradient(
        to right,
        #f8bfd0 0px,
        #f8bfd0 8px,
        transparent 8px,
        transparent 15px
    );

    z-index: 0;
    opacity: 0.9;

    animation: timelineMove 2s linear infinite;
}

@keyframes timelineMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 30px 0;
    }
}


/* =====================================
   PROCESS ITEM
===================================== */

.process-item {
    position: relative;
    z-index: 2;

    text-align: left;

    padding: 0 12px 25px;

    border: 1px solid transparent;
    border-radius: 18px;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;

    background: rgba(255, 255, 255, 0.85);
}


/* Hover Card */

.process-item:hover {
    transform: translateY(-10px);

    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #fff6f9 100%
    );

    border-color: rgba(245, 56, 109, 0.18);

    box-shadow:
        0 15px 35px rgba(245, 56, 109, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.05);
}


/* =====================================
   PROCESS ICON
===================================== */

.process-icon {
    width: 58px;
    height: 58px;
    color: var(--pink);

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #ffffff,
        #fff1f5
    );

    border: 1px solid rgba(245, 56, 109, 0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    position: relative;
    z-index: 5;

    box-shadow:
        0 8px 20px rgba(245, 56, 109, 0.10);

    transition:
        transform 0.5s cubic-bezier(.34,1.56,.64,1),
        box-shadow 0.4s ease,
        background 0.4s ease;
}


/* Icon Image */

.process-icon img {
    width: 32px;
    height: 32px;

    object-fit: contain;

    transition:
        transform 0.5s ease,
        filter 0.4s ease;
}


/* Icon Hover */

.process-item:hover .process-icon {
    transform: translateY(-5px) scale(1.08);

    background: linear-gradient(    
        135deg,
        #f5386d,
        #ff7b9d
    );
    color: var(--pink);

    box-shadow:
        0 12px 28px rgba(245, 56, 109, 0.28);
}

.process-item:hover .process-icon i {
    color: #fff;
}

.process-item:hover .process-icon img {
    transform: rotate(8deg) scale(1.12);

    filter: brightness(0) invert(1);
}


/* =====================================
   ICON OUTER GLOW
===================================== */

.process-icon:before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 1px solid rgba(245, 56, 109, 0.18);

    transform: scale(1);

    opacity: 0;

    transition:
        transform 0.5s ease,
        opacity 0.5s ease;
}

.process-item:hover .process-icon:before {
    transform: scale(1.3);
    opacity: 1;
}


/* =====================================
   TIMELINE DOT
===================================== */

.timeline-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    background: #f5386d;

    border: 2px solid #fff;

    border-radius: 50%;

    top: 43px;
    right: 14%;

    z-index: 6;

    box-shadow:
        0 0 0 4px rgba(245, 56, 109, 0.10),
        0 0 15px rgba(245, 56, 109, 0.35);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Dot Hover */

.process-item:hover .timeline-dot {
    transform: scale(1.6);

    box-shadow:
        0 0 0 6px rgba(245, 56, 109, 0.12),
        0 0 25px rgba(245, 56, 109, 0.55);
}


/* =====================================
   STEP TEXT
===================================== */

.step {
    display: inline-flex;
    align-items: center;

    color: #f5386d;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    margin-top: 3px;
    margin-bottom: 6px;

    position: relative;

    transition: 0.3s ease;
}


/* Small line before Step */

.step:before {
    content: "";

    width: 18px;
    height: 2px;

    background: #f5386d;

    margin-right: 7px;

    border-radius: 10px;

    transition: width 0.3s ease;
}

.process-item:hover .step:before {
    width: 28px;
}


/* =====================================
   HEADING
===================================== */

.process-item h5 {
    font-size: 16px;

    color: #222;

    margin: 6px 0 8px;

    font-weight: 700;

    line-height: 1.4;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.process-item:hover h5 {
    color: #f5386d;

    transform: translateX(3px);
}


/* =====================================
   DESCRIPTION
===================================== */

.process-item p {
    font-size: 13px;

    color: #707070;

    line-height: 1.8;

    margin-bottom: 0;

    transition:
        color 0.3s ease;
}

.process-item:hover p {
    color: #555;
}


/* =====================================
   FLOATING EFFECT
===================================== */

.process-icon {
    animation: processFloat 4s ease-in-out infinite;
}

.process-item:nth-child(2) .process-icon {
    animation-delay: .4s;
}

.process-item:nth-child(3) .process-icon {
    animation-delay: .8s;
}

.process-item:nth-child(4) .process-icon {
    animation-delay: 1.2s;
}

.process-item:nth-child(5) .process-icon {
    animation-delay: 1.6s;
}

.process-item:nth-child(6) .process-icon {
    animation-delay: 2s;
}

@keyframes processFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* Stop floating while hovering */

.process-item:hover .process-icon {
    animation-play-state: paused;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .process-line {
        padding-top: 10px;
    }

    .process-line:before,
    .timeline-dot {
        display: none;
    }

    .process-item {
        padding: 20px;

        height: 100%;
    }

    .process-item:hover {
        transform: translateY(-7px);
    }

    .process-icon {
        margin-bottom: 15px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .process-line {
        padding: 10px 0;
    }

    .process-item {
        padding: 18px 14px;
        border: 1px dashed pink;
        border-radius: 16px;
    }

    .process-icon {
        width: 52px;
        height: 52px;
    }

    .process-icon img {
        width: 29px;
        height: 29px;
    }

    .process-item h5 {
        font-size: 14px;
    }

    .process-item p {
        font-size: 12px;
        line-height: 1.7;
    }

    .step {
        font-size: 11px;
    }

    .ecommerce-benefit-icon {
        height: 35px;
        width: 35px;
        font-size: 16px;
    }

    .ecommerce-hero-benefit{
        padding: 12px 6px;
    }
}


/* =====================================
   REDUCED MOTION
===================================== */

@media (prefers-reduced-motion: reduce) {

    .process-line:before,
    .process-icon {
        animation: none;
    }

    .process-item,
    .process-icon,
    .process-icon img {
        transition: none;
    }
}