/* E-commerce Fulfillment Custom Styles */
:root {
    --ecom-primary: #1a1a2e;
    --ecom-secondary: #FF7F35;
    --ecom-text: #666666;
    --ecom-light: #f8f9fa;
    --ecom-border: #eaeaea;
}

/* =========================================
   Section: About (What is...)
   ========================================= */
.ecom-about {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.ecom-about__wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ecom-about__image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.ecom-about__image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.7s ease;
    border-radius: 20px;
}

.ecom-about__image-box:hover img {
    transform: scale(1.05);
}

.ecom-about__content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--ecom-primary);
}

.ecom-about__content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--ecom-text);
    margin-bottom: 30px;
}

/* =========================================
   Section: Process (How It Works)
   ========================================= */
.ecom-process {
    background-color: var(--ecom-light);
    padding: 100px 0;
    position: relative;
}

.ecom-process__steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 30px;
}

.ecom-process__step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.ecom-process__step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--ecom-secondary);
}

.ecom-process__number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(26, 26, 46, 0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.ecom-process__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF7F35 0%, #ff9f66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(255, 127, 53, 0.3);
}

.ecom-process__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--ecom-primary);
}

.ecom-process__text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ecom-text);
}


/* =========================================
   Section: Fulfillment Flow
   ========================================= */
.ecom-flow {
    padding: 100px 0;
    background-color: #fff;
}

.ecom-flow__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ecom-flow__card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

/* Connecting arrows (desktop only) */
.ecom-flow__card:not(:last-child)::after {
    content: "\f105"; /* FontAwesome right arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 35%;
    right: -20px;
    font-size: 24px;
    color: #ddd;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 991px) {
    .ecom-flow__card:not(:last-child)::after {
        content: "\f107"; /* Down arrow */
        right: 50%;
        top: auto;
        bottom: -25px;
        transform: translateX(50%);
    }
}

.ecom-flow__icon-box {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--ecom-secondary);
    transition: all 0.3s ease;
}

.ecom-flow__card:hover .ecom-flow__icon-box {
    border-color: var(--ecom-secondary);
    background: var(--ecom-secondary);
    color: #fff;
    transform: scale(1.1);
}

.ecom-flow__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--ecom-primary);
}

.ecom-flow__text {
    font-size: 14px;
    color: #888;
}

/* =========================================
   Section: Benefits (Why Choose)
   ========================================= */
.ecom-benefits {
    background-color: var(--ecom-primary);
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Background Pattern */
.ecom-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.ecom-benefits__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.ecom-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.ecom-benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--ecom-secondary);
}

.ecom-benefit-card__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ecom-benefit-card__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 127, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ecom-secondary);
    font-size: 24px;
}

.ecom-benefit-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.ecom-benefit-card__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* =========================================
   Section: Pricing
   ========================================= */
.ecom-pricing {
    padding: 100px 0;
    background: #f8f9fa;
}

.ecom-pricing__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.ecom-pricing__card::top {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FF7F35, #ff9f66);
}

.ecom-pricing__header {
    text-align: center;
    margin-bottom: 40px;
}

.ecom-pricing__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--ecom-primary);
    margin-bottom: 10px;
}

.ecom-pricing__subtitle {
    font-size: 16px;
    color: #888;
}

.ecom-pricing__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.ecom-pricing__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.ecom-pricing__item:last-child {
    border-bottom: none;
}

.ecom-pricing__icon {
    width: 30px;
    height: 30px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 14px;
    flex-shrink: 0;
}

.ecom-pricing__label {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--ecom-primary);
}

.ecom-pricing__value {
    font-weight: 700;
    color: var(--ecom-secondary);
    font-size: 18px;
}
