/* Multi Vendor eCommerce Styles */

/* General and Containers */
.block {
    padding: 100px 0;
    background: #fff;
}
.block.alt {
    background: #f8f9fa;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.section-head {
    text-align: center;
    margin-bottom: 50px;
}
.section-head .eyebrow {
    color: var(--espartyox-base, #ff5e14);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}
.section-head h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-head .deck {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    text-align: center;
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.hero h1 {
    font-size: 56px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 25px;
}
.hero .lede {
    font-size: 20px;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto 40px;
}
.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hero-cta-row a {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.hero-cta-row .btn-primary {
    background: var(--espartyox-base, #ff5e14);
    color: #fff;
}
.hero-cta-row .btn-ghost-dark {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* SVG Icon Fixes globally */
.ico svg, .ill svg, .rs-icon svg {
    width: 60px;
    height: 60px;
    fill: var(--espartyox-base, #ff5e14);
    color: var(--espartyox-base, #ff5e14);
    margin-bottom: 20px;
}

/* Packages Grid */
.package {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.package-sub-label {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.package-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.package-card:hover {
    transform: translateY(-5px);
}
.package-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.package-card p {
    color: #666;
    margin-bottom: 15px;
}
.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.package-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #555;
}
.package-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--espartyox-base, #ff5e14);
    font-weight: bold;
}

/* Steps Section */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}
.step {
    text-align: center;
}
.step .ill {
    background: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.step h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Revenue Section */
.revenue {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.rev-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.rev-card .calc {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: var(--espartyox-base, #ff5e14);
}

/* Flow Section */
.flow-wrap {
    margin-top: 40px;
}
.flow {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.flow-step {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
}
.flow-num {
    position: absolute;
    top: -20px;
    left: 30px;
    background: var(--espartyox-base, #ff5e14);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

/* Toggle Tabs */
.toggle-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.toggle-tabs button {
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    background: #eee;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.toggle-tabs button.active {
    background: var(--espartyox-base, #ff5e14);
    color: #fff;
}

/* Superapp Grid & Misc */
.superapp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}
.chip {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}
.chip.active {
    background: var(--espartyox-base, #ff5e14);
    color: #fff;
    border-color: var(--espartyox-base, #ff5e14);
}
img.showcase-img, img.module-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Emojis */
img.emoji {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}
.vc-icon img.emoji {
    width: 32px;
    height: 32px;
}
.oc-img img.emoji {
    width: 40px;
    height: 40px;
}

/* Routing Section */
.routing-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    position: relative;
}
.vendor-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.vendor-card {
    text-align: center;
}
.vc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.vc-name {
    font-size: 14px;
    line-height: 1.2;
}

/* Order Deck */
.order-deck {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.order-card {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.oc-cell {
    font-size: 14px;
}
.oc-status {
    background: #e2e8f0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Reassure Checkmarks */
.reassure {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}
.reassure span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}
.reassure svg {
    width: 24px;
    height: 24px;
    color: var(--espartyox-base, #ff5e14);
    margin-bottom: 0;
}

/* Testimonials */
.testis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testi {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.testi-author .av img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testi-author strong {
    display: block;
    font-weight: 700;
}
.testi-author span {
    color: #666;
    font-size: 14px;
}
.testi-metric {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Manage Tabs */
.manage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}
@media (min-width: 768px) {
    .manage {
        grid-template-columns: 300px 1fr;
    }
}
.manage-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.manage-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    text-align: left;
}
.manage-tab.active {
    border-color: var(--espartyox-base, #ff5e14);
    background: #fff5f0;
    color: var(--espartyox-base, #ff5e14);
}
.manage-tab .ico svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0;
}
.manage-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.manage-img {
    max-width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

/* Showcase Nav */
.showcase-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.showcase-tab {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.showcase-tab.active {
    border-color: var(--espartyox-base, #ff5e14);
}
.tab-eyebrow {
    font-weight: 600;
}
.tab-line {
    font-size: 12px;
    color: #666;
}
.showcase-scene {
    display: none;
    text-align: center;
}
.showcase-scene.active {
    display: block;
}

/* CTA */
.cta-final {
    text-align: center;
    padding: 80px 0;
    background: #f8f9fa;
}
.ctas {
    margin-top: 30px;
}
.ctas .btn {
    background: var(--espartyox-base, #ff5e14);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
}

/* Trust Strip */
.trust-strip {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.trust-label {
    margin-bottom: 20px;
    color: #94a3b8;
}
.trust-track {
    display: flex;
    gap: 30px;
    color: #fff;
    opacity: 0.7;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.help {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.help-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Fix Routing SVG Black Mass */
.routing-paths path,
.routing-down path,
#mapRoute {
    fill: none;
    stroke: var(--espartyox-base, #ff5e14);
    stroke-width: 2px;
}

/* Fix Showcase Nav Controls */
.showcase-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
.showcase-nav-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.showcase-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #666;
    margin-bottom: 0;
}
.showcase-nav-btn:hover {
    border-color: var(--espartyox-base, #ff5e14);
}
.showcase-nav-btn:hover svg {
    stroke: var(--espartyox-base, #ff5e14);
}
.showcase-tabs-wrap {
    overflow: hidden;
    max-width: 100%;
}

/* Fix missing module image grid layout */
.superapp-grid > div:first-child {
    flex: 1;
}
.module-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}


