/**
 * eCommerce Hosting - Page Specific Styles
 * ==========================================
 * Hero section, platform capacity benchmarks,
 * growth path, and responsive overrides.
 *
 * Shared component styles (pricing, features, FAQ,
 * CTA, support, marquee) come from style.css + hosting.css.
 */


/* ===================================
   eCommerce Color Variables
   =================================== */
:root {
    --ecom-primary: #f59e0b;
    --ecom-secondary: #f97316;
    --ecom-tertiary: #ef4444;
    --ecom-gradient: linear-gradient(135deg, #f59e0b, #f97316, #ef4444);
    --ecom-glow: rgba(245, 158, 11, 0.4);
}


/* ===================================
   Gradient Text - eCommerce
   =================================== */
.gradient-text-ecom {
    background: var(--ecom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ===================================
   HERO SECTION
   =================================== */
.ecom-hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f4f8 100%);
}

/* Background Elements */
.ecom-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.ecom-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.ecom-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.ecom-glow-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    top: -20%;
    right: -10%;
    animation: ecomFloat 20s ease-in-out infinite;
}

.ecom-glow-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    bottom: -10%;
    left: -5%;
    animation: ecomFloat 25s ease-in-out infinite reverse;
}

.ecom-glow-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    top: 40%;
    left: 30%;
    animation: ecomFloat 30s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes ecomFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -10px) scale(1.02); }
}

/* Hero Wrapper - Two Column */
.ecom-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content (Left) */
.ecom-hero-content {
    max-width: 560px;
}

.ecom-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.ecom-hero-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--ecom-gradient);
    border-radius: 50%;
}

.ecom-hero-badge .badge-icon i {
    font-size: 0.75rem;
    color: #fff;
}

.ecom-hero-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, #d97706, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecom-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111111;
}

.ecom-hero-title .title-sub {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.ecom-hero-desc {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero CTAs */
.ecom-hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.ecom-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--ecom-gradient);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.ecom-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
    color: #fff;
}

.ecom-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a2e;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ecom-btn-secondary:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
}

/* Hero Trust Row */
.ecom-hero-trust {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.ecom-hero-trust .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.5);
}

.ecom-hero-trust .trust-item i {
    color: var(--ecom-primary);
    font-size: 1rem;
}


/* Hero Visual (Right) - Store Dashboard */
.ecom-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.ecom-dashboard-card {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.ecom-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ecom-dashboard-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.ecom-dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--ecom-primary);
}

.ecom-dashboard-status .status-dot {
    width: 8px;
    height: 8px;
    background: var(--ecom-primary);
    border-radius: 50%;
    animation: ecomStatusPulse 2s ease-in-out infinite;
}

@keyframes ecomStatusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0); }
}

/* Metrics Row */
.ecom-metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

.ecom-metric .metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
}

.ecom-metric .metric-label {
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Orders List */
.ecom-orders-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.ecom-order-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.ecom-order-row:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(245, 158, 11, 0.2);
}

.ecom-order-row .order-id {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.ecom-order-row .order-product {
    color: rgba(0, 0, 0, 0.7);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ecom-order-row .order-amount {
    color: #111111;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.ecom-order-row .order-status {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.ecom-order-row .order-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ecom-order-row .order-status.completed {
    color: #22c55e;
}

.ecom-order-row .order-status.completed .dot {
    background: #22c55e;
}

.ecom-order-row .order-status.processing {
    color: var(--ecom-primary);
}

.ecom-order-row .order-status.processing .dot {
    background: var(--ecom-primary);
}

/* Dashboard Footer */
.ecom-dashboard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ecom-dashboard-footer .stat {
    text-align: center;
}

.ecom-dashboard-footer .stat-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
}

.ecom-dashboard-footer .stat-label {
    font-size: 0.65rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero Floating Badges */
.ecom-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    font-weight: 600;
    color: #d97706;
    white-space: nowrap;
}

.ecom-float-badge i {
    font-size: 0.9rem;
    color: var(--ecom-primary);
}

.float-badge-1 {
    top: -10px;
    right: -20px;
    animation: floatBadge 6s ease-in-out infinite;
}

.float-badge-2 {
    bottom: 20px;
    left: -30px;
    animation: floatBadge 8s ease-in-out infinite reverse;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/* ===================================
   MARQUEE - eCommerce variant
   =================================== */
.marquee-ecommerce {
    background: linear-gradient(135deg, #1a1408, #1a150b);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.marquee-ecommerce .marquee-inner span {
    color: rgba(255, 255, 255, 0.6);
}

.marquee-ecommerce .marquee-inner .divider {
    color: var(--ecom-primary);
}


/* ===================================
   PLATFORM CAPACITY SECTION
   =================================== */
.ecom-capacity {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.ecom-capacity-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ecom-capacity-bg .capacity-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
}

.capacity-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--ecom-primary);
    top: -10%;
    right: -5%;
}

.capacity-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--ecom-secondary);
    bottom: -10%;
    left: -5%;
}

/* Platform Tabs */
.ecom-platform-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.platform-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary, #6b7280);
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-tab:hover {
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--ecom-primary);
    background: rgba(245, 158, 11, 0.05);
}

.platform-tab.active {
    background: var(--ecom-gradient);
    border-color: transparent;
    color: #fff;
}

.platform-tab i {
    font-size: 1rem;
}

/* Capacity Cards Grid */
.ecom-capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.capacity-card {
    padding: 3.75rem 2rem 2.5rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.capacity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ecom-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capacity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 158, 11, 0.15);
}

.capacity-card:hover::before {
    opacity: 1;
}

.capacity-card.featured {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.1);
    padding-top: 1.5rem;
}

.capacity-card.featured::before {
    opacity: 1;
}

.capacity-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--ecom-gradient);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.capacity-card-plan {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text, #111827);
    margin-bottom: 0.5rem;
}

.capacity-card-specs {
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 0.75rem;
}

.capacity-card-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--ecom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* Capacity Metrics */
.capacity-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.capacity-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.capacity-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text, #111827);
    line-height: 1.2;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.capacity-unit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.capacity-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary, #6b7280);
    margin-bottom: 1.5rem;
}

.capacity-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.04);
    color: var(--text, #111827);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.capacity-cta:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    color: var(--text, #111827);
}

.capacity-cta.featured {
    background: var(--ecom-gradient);
    color: #fff;
}

.capacity-cta.featured:hover {
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    color: #fff;
}

.capacity-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary, #6b7280);
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


/* ===================================
   FEATURES - eCommerce accent override
   =================================== */
.ecom-features .feature-card-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(249, 115, 22, 0.08));
}

.ecom-features .feature-card-icon i {
    background: var(--ecom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ecom-features .feature-card:hover {
    border-color: rgba(245, 158, 11, 0.15);
}

.ecom-features .feature-card::after {
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.05), transparent 70%);
}

.ecom-features .feature-list li i {
    color: var(--ecom-primary);
}


/* ===================================
   GROWTH PATH SECTION
   =================================== */
.ecom-growth {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.growth-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.growth-path.growth-path-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.growth-path::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(90deg, var(--ecom-primary), rgba(245, 158, 11, 0.4), rgba(99, 102, 241, 0.3));
    z-index: 0;
    border-radius: 2px;
}

.growth-path.growth-path-2::before {
    left: 25%;
    right: 25%;
}

.growth-stage {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.growth-stage-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.growth-stage-dot i {
    font-size: 1.25rem;
    color: #6b7280;
}

.growth-stage:hover .growth-stage-dot {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.growth-stage.current .growth-stage-dot {
    background: var(--ecom-gradient);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.growth-stage.current .growth-stage-dot i {
    color: #fff;
}

.growth-stage h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.growth-stage.current h3 {
    background: var(--ecom-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.growth-stage .stage-clients {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.growth-stage .stage-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.growth-stage .stage-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
    color: var(--ecom-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.growth-stage .stage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.08);
    color: #6366f1;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.growth-stage .stage-link:hover {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-1px);
}


/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet */
@media (max-width: 991px) {
    .ecom-hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .ecom-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ecom-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .ecom-hero-title {
        font-size: 2.75rem;
    }

    .ecom-hero-ctas {
        justify-content: center;
    }

    .ecom-hero-trust {
        justify-content: center;
    }

    .ecom-hero-visual {
        display: flex;
        justify-content: center;
    }

    .ecom-float-badge {
        display: none;
    }

    .ecom-capacity-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .growth-path {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .growth-path::before {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ecom-hero-title {
        font-size: 2.25rem;
    }

    .ecom-hero-title .title-sub {
        font-size: 1.35rem;
    }

    .ecom-hero-desc {
        font-size: 1rem;
    }

    .ecom-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .ecom-btn-primary,
    .ecom-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ecom-hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .ecom-dashboard-card {
        max-width: 100%;
    }

    .ecom-platform-tabs {
        gap: 0.375rem;
    }

    .platform-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .capacity-card {
        padding: 2rem 1.5rem;
    }

    .growth-stage {
        padding: 1.5rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .ecom-hero {
        padding: 100px 0 40px;
    }

    .ecom-hero-title {
        font-size: 2rem;
    }

    .ecom-hero-title .title-sub {
        font-size: 1.2rem;
    }

    .ecom-dashboard-footer {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ecom-dashboard-footer .stat {
        flex: 1;
        min-width: 60px;
    }

    .ecom-metrics-row {
        gap: 8px;
    }

    .ecom-metric .metric-value {
        font-size: 1rem;
    }

    .ecom-order-row {
        grid-template-columns: auto 1fr auto;
        gap: 6px;
    }

    .ecom-order-row .order-status {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .capacity-value {
        font-size: 1.25rem;
    }
}
