/* =========================================================
   IFECORE
   PREMIUM UNIFIED DESIGN SYSTEM
   VERSION: 2026.3
   ---------------------------------------------------------
   PURPOSE
   ---------------------------------------------------------
   Premium marketplace + services ecosystem UI.

   DESIGN PRINCIPLES
   - Product-first commerce
   - Professional African marketplace feel
   - Strong Ifecore green identity
   - Clean white surfaces
   - Mobile-first usability
   - Desktop / tablet / mobile support
   - Accessible interactions
   - Smooth but controlled motion
   - Performance-conscious CSS
   - Backward-compatible class aliases

   IMPORTANT
   ---------------------------------------------------------
   This stylesheet intentionally supports:
   .ifecore-*
   .ifc-*
   .marketplace-*
   .product-*
   .category-*
   and existing marketplace page classes.
========================================================= */


/* =========================================================
   01. DESIGN TOKENS
========================================================= */

:root {

    /* -----------------------------------------------------
       BRAND
    ----------------------------------------------------- */

    --if-green-950: #032d1b;
    --if-green-900: #064225;
    --if-green-800: #07552e;
    --if-green-700: #0b6b3a;
    --if-green-600: #0d7c43;
    --if-green-500: #11934e;
    --if-green-400: #2aa965;
    --if-green-300: #67c88d;
    --if-green-200: #b7e8c9;
    --if-green-100: #e5f5eb;
    --if-green-50: #f2faf5;


    /* -----------------------------------------------------
       NEUTRALS
    ----------------------------------------------------- */

    --if-black: #101713;
    --if-heading: #17211b;
    --if-text: #526059;
    --if-muted: #78847e;
    --if-subtle: #9aa49f;

    --if-white: #ffffff;

    --if-bg: #f5f7f6;
    --if-bg-soft: #f8faf9;
    --if-bg-dark: #edf2ef;

    --if-surface: #ffffff;
    --if-surface-alt: #f0f4f1;


    /* -----------------------------------------------------
       BORDERS
    ----------------------------------------------------- */

    --if-border: #e2e8e4;
    --if-border-dark: #d1dbd5;
    --if-border-green: #c8ddd0;


    /* -----------------------------------------------------
       STATUS
    ----------------------------------------------------- */

    --if-success: #16834b;
    --if-success-bg: #e8f7ee;

    --if-warning: #a66a00;
    --if-warning-bg: #fff6df;

    --if-danger: #c73545;
    --if-danger-bg: #fff0f2;

    --if-info: #2468a8;
    --if-info-bg: #edf5fc;


    /* -----------------------------------------------------
       RADIUS
    ----------------------------------------------------- */

    --if-radius-xs: 6px;
    --if-radius-sm: 8px;
    --if-radius-md: 12px;
    --if-radius-lg: 16px;
    --if-radius-xl: 22px;
    --if-radius-2xl: 28px;
    --if-radius-pill: 999px;


    /* -----------------------------------------------------
       SHADOWS
    ----------------------------------------------------- */

    --if-shadow-xs:
        0 2px 7px rgba(16, 23, 19, .04);

    --if-shadow-sm:
        0 5px 18px rgba(16, 23, 19, .06);

    --if-shadow-md:
        0 12px 32px rgba(16, 23, 19, .08);

    --if-shadow-lg:
        0 20px 55px rgba(16, 23, 19, .12);

    --if-shadow-green:
        0 10px 28px rgba(11, 107, 58, .18);


    /* -----------------------------------------------------
       LAYOUT
    ----------------------------------------------------- */

    --if-max-width: 1380px;
    --if-content-width: 1240px;

    --if-page-padding: 20px;


    /* -----------------------------------------------------
       TYPOGRAPHY
    ----------------------------------------------------- */

    --if-font:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        Helvetica,
        sans-serif;


    /* -----------------------------------------------------
       TRANSITIONS
    ----------------------------------------------------- */

    --if-fast: .16s ease;
    --if-normal: .24s ease;
    --if-slow: .35s ease;

    --if-motion:
        cubic-bezier(.22, .61, .36, 1);

    --if-motion-pop:
        cubic-bezier(.16, 1, .3, 1);
}


/* =========================================================
   02. GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;

    scroll-behavior: smooth;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    font-family: var(--if-font);

    background: var(--if-bg);
    color: var(--if-text);

    font-size: 15px;
    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

button,
input,
textarea,
select {
    -webkit-tap-highlight-color: transparent;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--if-heading);
}

main,
section,
article,
aside {
    width: 100%;
}

table {
    max-width: 100%;
}

::selection {
    background: var(--if-green-100);
    color: var(--if-green-950);
}


/* =========================================================
   03. GLOBAL CONTAINERS
========================================================= */

.marketplace-container,
.ifecore-container,
.container {

    width: min(
        calc(100% - 40px),
        var(--if-content-width)
    );

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. HEADER
========================================================= */

header,
.ifecore-header {

    position: sticky;
    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(6, 66, 37, .97);

    color: var(--if-white);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);

    box-shadow:
        0 4px 20px rgba(0,0,0,.10);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.ifecore-header-inner {

    width: min(
        calc(100% - 40px),
        var(--if-max-width)
    );

    min-height: 72px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 18px;
}


/* =========================================================
   05. BRAND
========================================================= */

.brand,
.ifecore-brand {

    display: inline-flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;

    color: #fff;
}

.brand-logo,
.ifecore-logo {

    width: 46px !important;
    height: 46px !important;

    min-width: 46px !important;
    min-height: 46px !important;

    max-width: 46px !important;
    max-height: 46px !important;

    object-fit: contain;

    display: block;
}

.ifecore-brand-text {

    display: flex;
    flex-direction: column;

    justify-content: center;

    line-height: 1;
}

.ifecore-brand-text strong {

    color: #fff;

    font-size: 20px;
    font-weight: 850;

    letter-spacing: -.2px;
}

.ifecore-brand-text span {

    margin-top: 5px;

    color:
        rgba(255,255,255,.62);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}

.brand {
    font-size: 21px;
    font-weight: 800;
}


/* =========================================================
   06. NAVIGATION
========================================================= */

nav,
.ifecore-nav {

    display: flex;
    align-items: center;

    justify-content: flex-end;

    gap: 3px;

    margin-left: auto;
}

nav a,
.ifecore-nav > a {

    min-height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 8px 13px;

    color:
        rgba(255,255,255,.88);

    border-radius:
        var(--if-radius-sm);

    font-size: 13px;
    font-weight: 650;

    white-space: nowrap;

    transition:
        background var(--if-fast),
        color var(--if-fast),
        transform var(--if-fast);
}

nav a:hover,
.ifecore-nav > a:hover {

    color: #fff;

    background:
        rgba(255,255,255,.10);

    transform:
        translateY(-1px);
}


/* =========================================================
   07. HEADER CTA
========================================================= */

.ifecore-nav .nav-cta,
nav .nav-cta {

    margin-left: 5px;

    background: #fff;

    color:
        var(--if-green-800);

    box-shadow:
        0 3px 10px rgba(0,0,0,.08);
}

.ifecore-nav .nav-cta:hover,
nav .nav-cta:hover {

    background:
        var(--if-green-50);

    color:
        var(--if-green-900);
}


/* =========================================================
   08. MOBILE MENU
========================================================= */

.ifecore-menu-button {

    display: none;

    width: 42px;
    height: 42px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius:
        var(--if-radius-sm);

    background:
        rgba(255,255,255,.08);

    color: #fff;

    font-size: 21px;

    transition:
        background var(--if-fast),
        transform var(--if-fast);
}

.ifecore-menu-button:hover {
    background:
        rgba(255,255,255,.15);

    transform:
        translateY(-1px);
}

.ifecore-menu-button:active {
    transform:
        scale(.96);
}


/* =========================================================
   09. HEADER PROFILE
========================================================= */

.header-profile,
.ifecore-header-profile {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #fff;
}

.header-profile-image,
.ifecore-header-profile-image {

    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
    min-height: 38px !important;

    max-width: 38px !important;
    max-height: 38px !important;

    object-fit: cover !important;

    border:
        2px solid
        rgba(255,255,255,.9);

    border-radius: 50% !important;

    display: block;
}

.header-profile-initial,
.ifecore-header-profile-initial {

    width: 38px !important;
    height: 38px !important;

    min-width: 38px !important;
    min-height: 38px !important;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color:
        var(--if-green-800);

    font-weight: 800;
}

.header-profile-name,
.ifecore-header-profile-name {

    max-width: 125px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   10. NOTIFICATIONS
========================================================= */

.notification-wrapper {

    position: relative;

    display: inline-flex;
}

.notification-bell,
.ifecore-notification-link {

    position: relative;

    width: 40px;
    height: 40px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: transparent;

    color: #fff;

    transition:
        background var(--if-fast),
        transform var(--if-fast);
}

.notification-bell:hover,
.ifecore-notification-link:hover {

    background:
        rgba(255,255,255,.10);

    transform:
        translateY(-1px);
}

.ifecore-bell {
    font-size: 19px;
}

.notification-badge,
.ifecore-notification-badge {

    position: absolute;

    top: 1px;
    right: 0;

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        2px solid
        var(--if-green-800);

    border-radius:
        var(--if-radius-pill);

    background:
        var(--if-danger);

    color: #fff;

    font-size: 9px;
    font-weight: 800;
}


/* =========================================================
   11. ANNOUNCEMENT BAR
========================================================= */

.announcement-bar,
.ifc-announcement {

    width: 100%;

    background:
        linear-gradient(
            90deg,
            #edf8f1,
            #f5fbf7
        );

    border-bottom:
        1px solid
        #dce9e1;

    color:
        var(--if-green-900);

    padding: 9px 20px;

    animation:
        ifcAnnouncementDrop
        .65s
        var(--if-motion)
        both;
}

.announcement-content {

    width: min(
        calc(100% - 20px),
        1240px
    );

    margin: 0 auto;

    min-height: 28px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    flex-wrap: wrap;

    font-size: 12px;
}

.announcement-message {

    display: flex;

    align-items: center;

    gap: 9px;

    flex-wrap: wrap;
}

.announcement-message strong {
    font-weight: 800;
}

.launch-info {

    color:
        var(--if-green-700);

    font-weight: 750;
}


/* =========================================================
   12. HERO
========================================================= */

.marketplace-hero,
.ifc-hero {

    position: relative;

    width: 100%;

    min-height: 570px;

    overflow: hidden;

    display: flex;

    align-items: center;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(44,169,101,.30),
            transparent 30%
        ),
        radial-gradient(
            circle at 5% 95%,
            rgba(17,147,78,.18),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #032d1b 0%,
            #064225 43%,
            #0b6b3a 100%
        );
}

.marketplace-hero::before {

    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -300px;
    right: -170px;

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius: 50%;

    pointer-events: none;
}

.marketplace-hero::after {

    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    bottom: -280px;
    left: -190px;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 50%;

    pointer-events: none;
}

.marketplace-hero-overlay {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.13),
            transparent 65%
        );
}

.hero-layout {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        var(--if-content-width)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(330px, .75fr);

    align-items: center;

    gap: 70px;

    padding:
        80px 0;
}

.hero-main-content,
.hero-content,
.ifc-hero-content {

    max-width: 790px;

    animation:
        ifcHeroContentIn
        .8s
        var(--if-motion)
        both;
}

.hero-badge,
.hero-eyebrow,
.ifc-hero-eyebrow {

    display: inline-flex;

    align-items: center;

    min-height: 34px;

    padding: 7px 13px;

    border:
        1px solid
        rgba(255,255,255,.17);

    border-radius:
        var(--if-radius-pill);

    background:
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.92);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.25px;

    text-transform: uppercase;

    animation:
        ifcHeroEyebrow
        .65s
        var(--if-motion)
        .1s
        both;
}

.hero-main-content h1,
.ifc-hero h1 {

    max-width: 800px;

    margin:
        20px 0 18px;

    color: #fff;

    font-size:
        clamp(38px, 4.8vw, 62px);

    line-height: 1.04;

    letter-spacing: -2.2px;

    font-weight: 800;

    animation:
        ifcHeroTitle
        .8s
        var(--if-motion-pop)
        .18s
        both;
}

.hero-main-content h1 span,
.ifc-hero h1 span {

    display: inline;

    color:
        #a9efc3;
}

.hero-description,
.ifc-hero p {

    max-width: 690px;

    margin:
        0 0 28px;

    color:
        rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.75;

    animation:
        ifcHeroParagraph
        .7s
        ease-out
        .32s
        both;
}


/* =========================================================
   13. SEARCH
========================================================= */

.marketplace-search,
.hero-search,
.ifc-hero-search {

    width: 100%;
    max-width: 730px;

    min-height: 62px;

    display: flex;

    align-items: center;

    padding: 6px;

    background: #fff;

    border-radius:
        var(--if-radius-md);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.18);

    animation:
        ifcSearchFlyIn
        .75s
        var(--if-motion)
        .42s
        both;
}

.search-icon {

    width: 48px;
    min-width: 48px;

    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--if-green-700);

    font-size: 20px;
}

.marketplace-search input {

    flex: 1;

    min-width: 0;

    height: 48px;

    padding: 0 9px;

    border: none;
    outline: none;

    background: transparent;

    color:
        var(--if-heading);

    font-size: 14px;
}

.marketplace-search input::placeholder {
    color: #89948e;
}

.marketplace-search button {

    min-width: 108px;
    height: 48px;

    padding: 0 20px;

    border: none;

    border-radius:
        var(--if-radius-sm);

    background:
        var(--if-green-700);

    color: #fff;

    font-size: 13px;
    font-weight: 800;

    transition:
        background var(--if-fast),
        transform var(--if-fast),
        box-shadow var(--if-fast);
}

.marketplace-search button:hover {

    background:
        var(--if-green-900);

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 16px
        rgba(11,107,58,.18);
}


/* =========================================================
   14. HERO QUICK LINKS
========================================================= */

.hero-quick-links {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 16px;

    color:
        rgba(255,255,255,.62);

    font-size: 11px;
}

.hero-quick-links a,
.hero-quick-link,
.ifc-quick-link {

    padding: 5px 10px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius:
        var(--if-radius-pill);

    background:
        rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.84);

    transition:
        background var(--if-fast),
        transform var(--if-fast),
        border-color var(--if-fast);
}

.hero-quick-links a:hover,
.hero-quick-link:hover,
.ifc-quick-link:hover {

    background:
        rgba(255,255,255,.13);

    border-color:
        rgba(255,255,255,.20);

    transform:
        translateY(-3px);
}


/* =========================================================
   15. HERO ACTIONS
========================================================= */

.hero-actions,
.ifc-hero-actions {

    animation:
        ifcActionsRise
        .7s
        var(--if-motion)
        .52s
        both;
}


/* =========================================================
   16. HERO ECOSYSTEM PANEL
========================================================= */

.hero-shopping-card,
.hero-visual,
.ifc-hero-visual {

    position: relative;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius:
        var(--if-radius-xl);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.055)
        );

    box-shadow:
        0 25px 65px
        rgba(0,0,0,.16);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    animation:
        ifcHeroCardFly
        .9s
        var(--if-motion-pop)
        .22s
        both;

    transition:
        transform var(--if-normal),
        border-color var(--if-normal),
        box-shadow var(--if-normal);
}

.hero-shopping-card:hover,
.hero-visual:hover,
.ifc-hero-visual:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(255,255,255,.24);

    box-shadow:
        0 30px 70px
        rgba(0,0,0,.20);
}

.hero-shopping-card::after {

    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    right: -70px;
    bottom: -70px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}

.hero-shopping-icon {

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius:
        var(--if-radius-md);

    background: #fff;

    color:
        var(--if-green-700);

    font-size: 27px;

    box-shadow:
        0 8px 20px
        rgba(0,0,0,.10);
}

.hero-card-label {

    display: block;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,.58);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}

.hero-shopping-card h2 {

    margin:
        0 0 10px;

    color: #fff;

    font-size: 26px;

    line-height: 1.2;

    letter-spacing: -.5px;

    font-weight: 750;
}

.hero-shopping-card p {

    margin:
        0 0 23px;

    color:
        rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.7;
}

.hero-card-button {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding:
        10px 18px;

    border-radius:
        var(--if-radius-sm);

    background: #fff;

    color:
        var(--if-green-800);

    font-size: 12px;

    font-weight: 800;

    transition:
        transform var(--if-fast),
        background var(--if-fast),
        box-shadow var(--if-fast);
}

.hero-card-button:hover {

    background:
        var(--if-green-50);

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px
        rgba(0,0,0,.10);
}


/* =========================================================
   17. BENEFITS STRIP
========================================================= */

.marketplace-benefits {

    width: 100%;

    background: #fff;

    border-bottom:
        1px solid
        var(--if-border);
}

.benefits-grid {

    width: min(
        calc(100% - 40px),
        var(--if-content-width)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding: 17px 0;
}

.benefit-item {

    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 11px;

    padding:
        5px 22px;

    border-right:
        1px solid
        var(--if-border);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {

    width: 40px;
    height: 40px;

    min-width: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        var(--if-radius-sm);

    background:
        var(--if-green-50);

    color:
        var(--if-green-700);

    font-size: 18px;
}

.benefit-item strong {

    display: block;

    color:
        var(--if-heading);

    font-size: 12px;

    font-weight: 800;
}

.benefit-item span {

    display: block;

    color:
        var(--if-muted);

    font-size: 10px;
}


/* =========================================================
   18. SECTIONS
========================================================= */

.marketplace-section {

    padding:
        72px 0;
}

.categories-section,
.products-section {
    background: #fff;
}

.promotion-section,
.professional-services-section,
.grow-section {
    background:
        var(--if-bg);
}


/* =========================================================
   19. SECTION HEADER
========================================================= */

.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 30px;
}

.section-heading > div:first-child {
    min-width: 0;
}

.section-label {

    display: inline-block;

    color:
        var(--if-green-700);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.section-heading h2 {

    margin:
        7px 0 5px;

    color:
        var(--if-heading);

    font-size:
        clamp(24px, 2.7vw, 34px);

    line-height: 1.15;

    letter-spacing:
        -.7px;

    font-weight: 750;
}

.section-heading p {

    max-width: 650px;

    margin: 0;

    color:
        var(--if-muted);

    font-size: 12px;

    line-height: 1.65;
}

.section-view-all,
.section-heading > a {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    min-height: 38px;

    padding:
        8px 13px;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-sm);

    background:
        #fff;

    color:
        var(--if-green-700);

    font-size: 11px;

    font-weight: 750;

    transition:
        border-color var(--if-fast),
        background var(--if-fast),
        transform var(--if-fast),
        box-shadow var(--if-fast);
}

.section-view-all:hover,
.section-heading > a:hover {

    border-color:
        var(--if-green-400);

    background:
        var(--if-green-50);

    transform:
        translateY(-2px);

    box-shadow:
        var(--if-shadow-xs);
}


/* =========================================================
   20. CATEGORY GRID
========================================================= */

.category-grid,
.ifc-category-grid {

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 13px;
}

.category-card,
.ifc-category-card {

    position: relative;

    min-height: 142px;

    padding: 20px 16px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-lg);

    background:
        #fff;

    box-shadow:
        var(--if-shadow-xs);

    transition:
        transform .28s var(--if-motion),
        border-color var(--if-normal),
        box-shadow var(--if-normal);
}

.category-card::after,
.ifc-category-card::after {

    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    right: -35px;
    bottom: -35px;

    border-radius: 50%;

    background:
        var(--if-green-50);

    opacity: .75;

    transition:
        transform .35s var(--if-motion);
}

.category-card:hover,
.ifc-category-card:hover {

    transform:
        translateY(-6px);

    border-color:
        #c9ddd1;

    box-shadow:
        var(--if-shadow-md);
}

.category-card:hover::after,
.ifc-category-card:hover::after {

    transform:
        scale(1.35);
}

.category-icon,
.ifc-category-icon {

    position: relative;

    z-index: 1;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        var(--if-radius-sm);

    background:
        var(--if-green-50);

    color:
        var(--if-green-700);

    font-size: 19px;

    transition:
        transform var(--if-normal),
        background var(--if-normal);
}

.category-card:hover .category-icon,
.ifc-category-card:hover .ifc-category-icon {

    transform:
        translateY(-2px)
        scale(1.04);

    background:
        var(--if-green-100);
}

.category-card h3,
.ifc-category-card h3 {

    position: relative;

    z-index: 1;

    margin:
        14px 0 4px;

    color:
        var(--if-heading);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 750;
}

.category-card span,
.ifc-category-card span {

    position: relative;

    z-index: 1;

    color:
        var(--if-muted);

    font-size: 10px;
}


/* =========================================================
   21. PRODUCT DISCOVERY
========================================================= */

.products-section {

    position: relative;

    overflow: hidden;
}

.products-section::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    top: -160px;
    right: -100px;

    border-radius: 50%;

    background:
        var(--if-green-50);

    opacity: .5;

    pointer-events: none;
}


/* =========================================================
   22. PRODUCT GRID
========================================================= */

.product-grid,
.ifc-product-grid {

    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   23. PRODUCT CARD
========================================================= */

.product-card,
.ifc-product-card {

    position: relative;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-lg);

    background:
        #fff;

    box-shadow:
        var(--if-shadow-xs);

    opacity: 0;

    transform:
        translateY(14px);

    animation:
        ifcProductReveal
        .55s
        var(--if-motion)
        forwards;

    transition:
        transform .28s var(--if-motion),
        border-color var(--if-normal),
        box-shadow var(--if-normal);
}

.product-card:hover,
.ifc-product-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #c7d9ce;

    box-shadow:
        0 16px 38px
        rgba(16,23,19,.10);
}


/* =========================================================
   24. PRODUCT REVEAL STAGGER
========================================================= */

.product-card:nth-child(1),
.ifc-product-card:nth-child(1) {
    animation-delay: .02s;
}

.product-card:nth-child(2),
.ifc-product-card:nth-child(2) {
    animation-delay: .05s;
}

.product-card:nth-child(3),
.ifc-product-card:nth-child(3) {
    animation-delay: .08s;
}

.product-card:nth-child(4),
.ifc-product-card:nth-child(4) {
    animation-delay: .11s;
}

.product-card:nth-child(5),
.ifc-product-card:nth-child(5) {
    animation-delay: .14s;
}

.product-card:nth-child(6),
.ifc-product-card:nth-child(6) {
    animation-delay: .17s;
}

.product-card:nth-child(7),
.ifc-product-card:nth-child(7) {
    animation-delay: .20s;
}

.product-card:nth-child(8),
.ifc-product-card:nth-child(8) {
    animation-delay: .23s;
}

.product-card:nth-child(9),
.ifc-product-card:nth-child(9) {
    animation-delay: .26s;
}

.product-card:nth-child(10),
.ifc-product-card:nth-child(10) {
    animation-delay: .29s;
}

.product-card:nth-child(11),
.ifc-product-card:nth-child(11) {
    animation-delay: .32s;
}

.product-card:nth-child(12),
.ifc-product-card:nth-child(12) {
    animation-delay: .35s;
}

.product-card:nth-child(n+13),
.ifc-product-card:nth-child(n+13) {
    animation-delay: .38s;
}


/* =========================================================
   25. PRODUCT IMAGE
========================================================= */

.product-image,
.ifc-product-image {

    position: relative;

    width: 100%;

    height: 250px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #f5f8f6,
            #edf3ef
        );
}

.product-image a,
.ifc-product-image a {

    width: 100%;
    height: 100%;

    display: block;

    overflow: hidden;
}

.product-image::before,
.ifc-product-image::before {

    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    top: -75px;
    right: -55px;

    border-radius: 50%;

    background:
        rgba(42,169,101,.07);

    pointer-events: none;

    z-index: 1;
}

.product-image img,
.ifc-product-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .45s
        var(--if-motion),
        filter .35s ease;
}

.product-card:hover .product-image img,
.ifc-product-card:hover .ifc-product-image img {

    transform:
        scale(1.055);

    filter:
        saturate(1.03);
}


/* =========================================================
   26. PRODUCT BADGE
========================================================= */

.product-badge,
.ifc-product-badge {

    position: absolute;

    z-index: 3;

    top: 12px;
    left: 12px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 25px;

    padding:
        4px 9px;

    border:
        1px solid
        rgba(255,255,255,.72);

    border-radius:
        var(--if-radius-pill);

    background:
        rgba(6,66,37,.90);

    color:
        #fff;

    font-size: 9px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .3px;

    box-shadow:
        0 5px 14px
        rgba(0,0,0,.10);

    backdrop-filter:
        blur(6px);

    -webkit-backdrop-filter:
        blur(6px);
}


/* =========================================================
   27. PRODUCT BODY
========================================================= */

.product-body,
.ifc-product-body {

    min-width: 0;

    padding:
        15px 15px 14px;

    display: flex;

    flex-direction: column;

    flex: 1;
}


/* =========================================================
   28. PRODUCT CATEGORY
========================================================= */

.product-category,
.ifc-product-category {

    margin-bottom: 7px;

    color:
        var(--if-green-700);

    font-size: 9px;

    line-height: 1.3;

    font-weight: 750;

    letter-spacing: .65px;

    text-transform: uppercase;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   29. PRODUCT TITLE
========================================================= */

.product-title,
.ifc-product-title {

    min-height: 39px;

    margin:
        0 0 8px;

    color:
        var(--if-heading);

    font-size: 14px;

    line-height: 1.38;

    font-weight: 650;

    display:
        -webkit-box;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;

    transition:
        color var(--if-fast);
}

.product-title:hover,
.ifc-product-title:hover {

    color:
        var(--if-green-700);
}


/* =========================================================
   30. PRODUCT PRICE
========================================================= */

.product-price,
.ifc-product-price {

    margin-top: auto;

    color:
        var(--if-green-800);

    font-size: 17px;

    line-height: 1.25;

    font-weight: 850;

    letter-spacing: -.3px;
}


/* =========================================================
   31. PRODUCT SELLER
========================================================= */

.product-seller,
.ifc-product-seller {

    display: flex;

    align-items: center;

    gap: 5px;

    min-width: 0;

    margin-top: 8px;

    color:
        var(--if-muted);

    font-size: 10px;

    line-height: 1.4;
}

.product-seller-name,
.ifc-product-seller-name {

    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   32. VERIFIED BADGE
========================================================= */

.verified,
.ifc-verified {

    width: 15px;
    height: 15px;

    min-width: 15px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        var(--if-green-600);

    color: #fff;

    font-size: 8px;

    font-weight: 900;
}


/* =========================================================
   33. PRODUCT LOCATION
========================================================= */

.product-location,
.ifc-product-location {

    margin-top: 5px;

    color:
        var(--if-subtle);

    font-size: 9px;

    line-height: 1.4;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   34. PRODUCT ACTIONS
========================================================= */

.product-actions,
.ifc-product-actions {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 7px;

    margin-top: 13px;
}

.product-actions a,
.ifc-product-actions a {

    min-height: 37px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        7px 8px;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-sm);

    background:
        #fff;

    color:
        var(--if-green-800);

    font-size: 10px;

    font-weight: 750;

    transition:
        background var(--if-fast),
        border-color var(--if-fast),
        color var(--if-fast),
        transform var(--if-fast);
}

.product-actions a:hover,
.ifc-product-actions a:hover {

    border-color:
        #bdd2c4;

    background:
        var(--if-green-50);

    transform:
        translateY(-1px);
}

.product-actions form,
.ifc-product-actions form {

    min-width: 0;

    margin: 0;
}

.product-actions button,
.ifc-product-actions button {

    width: 100%;

    min-height: 37px;

    padding:
        7px 8px;

    border:
        1px solid
        var(--if-green-700);

    border-radius:
        var(--if-radius-sm);

    background:
        var(--if-green-700);

    color:
        #fff;

    font-size: 10px;

    font-weight: 800;

    transition:
        background var(--if-fast),
        border-color var(--if-fast),
        transform var(--if-fast),
        box-shadow var(--if-fast);
}

.product-actions button:hover,
.ifc-product-actions button:hover {

    background:
        var(--if-green-900);

    border-color:
        var(--if-green-900);

    transform:
        translateY(-1px);

    box-shadow:
        0 7px 16px
        rgba(11,107,58,.16);
}

.product-actions button:active,
.ifc-product-actions button:active {

    transform:
        translateY(0);
}


/* =========================================================
   35. EMPTY PRODUCT STATE
========================================================= */

.empty-products,
.ifc-empty-products {

    width: 100%;

    padding:
        60px 25px;

    text-align: center;

    border:
        1px dashed
        var(--if-border-dark);

    border-radius:
        var(--if-radius-lg);

    background:
        var(--if-bg-soft);

    color:
        var(--if-muted);
}

.empty-products strong,
.ifc-empty-products strong {

    display: block;

    margin-bottom: 5px;

    color:
        var(--if-heading);

    font-size: 16px;

    font-weight: 750;
}

.empty-products p,
.ifc-empty-products p {

    margin: 0;

    font-size: 12px;
}


/* =========================================================
   36. PROMOTION / FEATURE BANNER
========================================================= */

.promotion-content {

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(280px, .75fr);

    gap: 30px;

    align-items: center;

    padding:
        45px;

    border-radius:
        var(--if-radius-xl);

    background:
        linear-gradient(
            120deg,
            var(--if-green-950),
            var(--if-green-800)
        );

    color: #fff;

    overflow: hidden;

    box-shadow:
        var(--if-shadow-lg);
}

.promotion-content h2 {

    margin:
        0 0 10px;

    color: #fff;

    font-size:
        clamp(25px, 3vw, 38px);

    line-height: 1.15;

    letter-spacing: -.9px;

    font-weight: 750;
}

.promotion-content p {

    max-width: 620px;

    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-size: 13px;

    line-height: 1.7;
}

.promotion-actions {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 9px;

    flex-wrap: wrap;
}


/* =========================================================
   37. GENERAL BUTTONS
========================================================= */

.ifecore-button,
.marketplace-button,
.ifc-btn,
.btn {

    min-height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        9px 17px;

    border:
        1px solid
        transparent;

    border-radius:
        var(--if-radius-sm);

    font-size: 11px;

    font-weight: 800;

    transition:
        transform var(--if-fast),
        background var(--if-fast),
        border-color var(--if-fast),
        color var(--if-fast),
        box-shadow var(--if-fast);
}

.ifecore-button:hover,
.marketplace-button:hover,
.ifc-btn:hover,
.btn:hover {

    transform:
        translateY(-2px);
}

.ifecore-button:active,
.marketplace-button:active,
.ifc-btn:active,
.btn:active {

    transform:
        translateY(1px)
        scale(.98);
}

.button-primary {

    background:
        var(--if-green-700);

    color: #fff;

    border-color:
        var(--if-green-700);
}

.button-primary:hover {

    background:
        var(--if-green-900);

    border-color:
        var(--if-green-900);

    box-shadow:
        var(--if-shadow-green);
}

.button-light {

    background: #fff;

    color:
        var(--if-green-800);
}

.button-light:hover {

    background:
        var(--if-green-50);
}

.button-outline {

    border-color:
        rgba(255,255,255,.20);

    background:
        rgba(255,255,255,.06);

    color: #fff;
}

.button-outline:hover {

    border-color:
        rgba(255,255,255,.35);

    background:
        rgba(255,255,255,.12);
}


/* =========================================================
   38. PROFESSIONAL SERVICES
========================================================= */

.services-grid,
.professional-services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.service-card,
.professional-service-card {

    position: relative;

    padding:
        25px;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-lg);

    background:
        #fff;

    box-shadow:
        var(--if-shadow-xs);

    transition:
        transform var(--if-normal),
        box-shadow var(--if-normal),
        border-color var(--if-normal);
}

.service-card:hover,
.professional-service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #c9ddd1;

    box-shadow:
        var(--if-shadow-md);
}

.service-icon,
.professional-service-icon {

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius:
        var(--if-radius-md);

    background:
        var(--if-green-50);

    color:
        var(--if-green-700);

    font-size: 20px;
}

.service-card h3,
.professional-service-card h3 {

    margin:
        0 0 7px;

    color:
        var(--if-heading);

    font-size: 15px;

    font-weight: 750;
}

.service-card p,
.professional-service-card p {

    margin: 0;

    color:
        var(--if-muted);

    font-size: 11px;

    line-height: 1.7;
}


/* =========================================================
   39. ECOSYSTEM
========================================================= */

.ecosystem-grid,
.ifc-ecosystem-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}

.ecosystem-card,
.ifc-ecosystem-card {

    position: relative;

    min-height: 230px;

    padding:
        28px;

    overflow: hidden;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-lg);

    background:
        #fff;

    box-shadow:
        var(--if-shadow-xs);

    transition:
        transform var(--if-normal),
        box-shadow var(--if-normal),
        border-color var(--if-normal);
}

.ecosystem-card:hover,
.ifc-ecosystem-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #c8ddd0;

    box-shadow:
        var(--if-shadow-md);
}

.ecosystem-card::after,
.ifc-ecosystem-card::after {

    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: -60px;
    bottom: -65px;

    border-radius: 50%;

    background:
        var(--if-green-50);

    pointer-events: none;
}

.ecosystem-icon,
.ifc-ecosystem-icon {

    position: relative;

    z-index: 1;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius:
        var(--if-radius-md);

    background:
        var(--if-green-50);

    color:
        var(--if-green-700);

    font-size: 22px;
}

.ecosystem-card h3,
.ifc-ecosystem-card h3 {

    position: relative;

    z-index: 1;

    margin:
        0 0 7px;

    color:
        var(--if-heading);

    font-size: 16px;

    font-weight: 750;
}

.ecosystem-card p,
.ifc-ecosystem-card p {

    position: relative;

    z-index: 1;

    margin: 0;

    max-width: 420px;

    color:
        var(--if-muted);

    font-size: 11px;

    line-height: 1.7;
}

.ecosystem-card a,
.ifc-ecosystem-card a {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 17px;

    color:
        var(--if-green-700);

    font-size: 10px;

    font-weight: 800;
}


/* =========================================================
   40. GROW / SELLER SECTION
========================================================= */

.grow-section {
    overflow: hidden;
}

.grow-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(300px, .8fr);

    gap: 30px;

    align-items: center;

    padding:
        45px;

    border-radius:
        var(--if-radius-xl);

    background:
        linear-gradient(
            135deg,
            #eaf7ef,
            #f7fbf8
        );

    border:
        1px solid
        #dbe9df;
}

.grow-grid h2 {

    margin:
        0 0 10px;

    color:
        var(--if-heading);

    font-size:
        clamp(26px, 3vw, 40px);

    line-height: 1.15;

    letter-spacing: -.9px;

    font-weight: 750;
}

.grow-grid p {

    max-width: 650px;

    margin: 0;

    color:
        var(--if-muted);

    font-size: 13px;

    line-height: 1.75;
}

.grow-actions {

    display: flex;

    justify-content: flex-end;

    gap: 9px;

    flex-wrap: wrap;
}


/* =========================================================
   41. SELLER BANNER
========================================================= */

.seller-banner,
.ifc-seller-banner {

    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 30px;

    align-items: center;

    padding:
        40px;

    overflow: hidden;

    border-radius:
        var(--if-radius-xl);

    background:
        linear-gradient(
            120deg,
            var(--if-green-950),
            var(--if-green-800)
        );

    color: #fff;

    box-shadow:
        var(--if-shadow-lg);
}

.seller-banner::after,
.ifc-seller-banner::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    bottom: -160px;

    border:
        1px solid
        rgba(255,255,255,.08);

    border-radius: 50%;
}

.seller-banner-content,
.ifc-seller-banner-content {

    position: relative;

    z-index: 1;
}

.seller-banner h2,
.ifc-seller-banner h2 {

    margin:
        0 0 9px;

    color: #fff;

    font-size:
        clamp(25px, 3vw, 38px);

    line-height: 1.15;

    letter-spacing: -.8px;

    font-weight: 750;
}

.seller-banner p,
.ifc-seller-banner p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255,255,255,.70);

    font-size: 12px;

    line-height: 1.75;
}

.seller-actions,
.ifc-seller-actions {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 8px;

    flex-wrap: wrap;
}


/* =========================================================
   42. FINAL CTA
========================================================= */

.final-cta,
.ifc-final-cta {

    padding:
        90px 20px;

    text-align: center;

    background:
        #fff;
}

.final-cta-inner,
.ifc-final-cta-inner {

    max-width: 760px;

    margin: 0 auto;
}

.final-cta h2,
.ifc-final-cta h2 {

    margin:
        0 0 12px;

    color:
        var(--if-heading);

    font-size:
        clamp(27px, 3.4vw, 43px);

    line-height: 1.15;

    letter-spacing:
        -1px;

    font-weight: 750;
}

.final-cta p,
.ifc-final-cta p {

    max-width: 600px;

    margin:
        0 auto 25px;

    color:
        var(--if-muted);

    font-size: 13px;

    line-height: 1.75;
}

.final-cta-actions,
.ifc-final-cta-actions {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    flex-wrap: wrap;
}


/* =========================================================
   43. FOOTER
========================================================= */

footer,
.ifecore-footer {

    width: 100%;

    background:
        var(--if-green-950);

    color:
        rgba(255,255,255,.70);
}

.footer-container,
.ifecore-footer-container {

    width: min(
        calc(100% - 40px),
        var(--if-max-width)
    );

    margin: 0 auto;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.35fr
        repeat(3, 1fr);

    gap: 40px;

    padding:
        60px 0 45px;
}

.footer-brand {

    max-width: 360px;
}

.footer-brand h2 {

    margin:
        0 0 9px;

    color: #fff;

    font-size: 21px;

    font-weight: 800;
}

.footer-brand p {

    margin: 0;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    line-height: 1.8;
}

.footer-column h3 {

    margin:
        0 0 15px;

    color: #fff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.footer-column a {

    display: block;

    width: fit-content;

    margin-bottom: 8px;

    color:
        rgba(255,255,255,.58);

    font-size: 11px;

    transition:
        color var(--if-fast),
        transform var(--if-fast);
}

.footer-column a:hover {

    color: #fff;

    transform:
        translateX(2px);
}

.footer-bottom {

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.43);

    font-size: 10px;
}

.footer-socials {

    display: flex;

    align-items: center;

    gap: 7px;
}

.footer-socials a {

    width: 34px;
    height: 34px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    border-radius:
        var(--if-radius-sm);

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.68);

    font-size: 13px;

    transition:
        background var(--if-fast),
        color var(--if-fast),
        transform var(--if-fast),
        border-color var(--if-fast);
}

.footer-socials a:hover {

    background:
        rgba(255,255,255,.10);

    color: #fff;

    border-color:
        rgba(255,255,255,.18);

    transform:
        translateY(-2px);
}


/* =========================================================
   44. FORM ELEMENTS
========================================================= */

input,
textarea,
select {

    max-width: 100%;

    border:
        1px solid
        var(--if-border);

    border-radius:
        var(--if-radius-sm);

    background:
        #fff;

    color:
        var(--if-heading);

    outline: none;

    transition:
        border-color var(--if-fast),
        box-shadow var(--if-fast),
        background var(--if-fast);
}

input:focus,
textarea:focus,
select:focus {

    border-color:
        var(--if-green-500);

    box-shadow:
        0 0 0 3px
        rgba(17,147,78,.10);
}

textarea {
    resize: vertical;
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled {

    cursor: not-allowed;

    opacity: .65;
}


/* =========================================================
   45. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline:
        3px solid
        rgba(42,169,101,.45);

    outline-offset: 2px;
}


/* =========================================================
   46. STATUS UTILITIES
========================================================= */

.if-success {
    color: var(--if-success);
}

.if-warning {
    color: var(--if-warning);
}

.if-danger {
    color: var(--if-danger);
}

.if-info {
    color: var(--if-info);
}

.if-success-bg {
    background: var(--if-success-bg);
}

.if-warning-bg {
    background: var(--if-warning-bg);
}

.if-danger-bg {
    background: var(--if-danger-bg);
}

.if-info-bg {
    background: var(--if-info-bg);
}


/* =========================================================
   47. MOTION SYSTEM
========================================================= */

@keyframes ifcAnnouncementDrop {

    from {
        opacity: 0;
        transform:
            translateY(-20px);
    }

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

@keyframes ifcHeroContentIn {

    from {
        opacity: 0;
        transform:
            translateX(-34px)
            translateY(10px);
    }

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

@keyframes ifcHeroEyebrow {

    from {
        opacity: 0;
        transform:
            translateX(-24px);
    }

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

@keyframes ifcHeroTitle {

    0% {
        opacity: 0;
        transform:
            translateY(24px)
            scale(.97);
    }

    65% {
        opacity: 1;
        transform:
            translateY(-3px)
            scale(1.005);
    }

    100% {
        opacity: 1;
        transform:
            translateY(0)
            scale(1);
    }
}

@keyframes ifcHeroParagraph {

    from {
        opacity: 0;
        transform:
            translateY(15px);
    }

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

@keyframes ifcSearchFlyIn {

    from {
        opacity: 0;
        transform:
            translateY(20px)
            scale(.98);
    }

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

@keyframes ifcActionsRise {

    from {
        opacity: 0;
        transform:
            translateY(20px);
    }

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

@keyframes ifcHeroCardFly {

    from {
        opacity: 0;
        transform:
            translateX(45px)
            translateY(16px)
            rotate(1.5deg);
    }

    65% {
        opacity: 1;
        transform:
            translateX(-4px)
            translateY(-3px)
            rotate(-.35deg);
    }

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

@keyframes ifcProductReveal {

    from {
        opacity: 0;
        transform:
            translateY(14px);
    }

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

@keyframes ifcFloat {

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

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

@keyframes ifcLaunchPulse {

    0%,
    100% {
        opacity: .55;
        transform:
            scale(1);
    }

    50% {
        opacity: 1;
        transform:
            scale(1.12);
    }
}

@keyframes ifcSectionReveal {

    from {
        opacity: 0;
        transform:
            translateY(24px);
    }

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


/* =========================================================
   48. OPTIONAL MOTION HELPERS
========================================================= */

.ifc-float {
    animation:
        ifcFloat
        4s
        ease-in-out
        infinite;
}

.ifc-float-slow {
    animation:
        ifcFloat
        6s
        ease-in-out
        infinite;
}

.ifc-float-fast {
    animation:
        ifcFloat
        3s
        ease-in-out
        infinite;
}

.ifc-launch-dot {
    animation:
        ifcLaunchPulse
        2s
        ease-in-out
        infinite;
}

.ifc-reveal {
    opacity: 0;

    transform:
        translateY(24px);

    animation:
        ifcSectionReveal
        .7s
        var(--if-motion)
        forwards;
}


/* =========================================================
   49. RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-layout {

        grid-template-columns:
            minmax(0, 1.25fr)
            minmax(280px, .75fr);

        gap: 40px;
    }

    .hero-main-content h1,
    .ifc-hero h1 {

        font-size:
            clamp(36px, 5vw, 54px);
    }

    .product-grid,
    .ifc-product-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .category-grid,
    .ifc-category-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .footer-main {

        grid-template-columns:
            1.3fr
            repeat(3, 1fr);

        gap: 25px;
    }
}


/* =========================================================
   50. RESPONSIVE — TABLET
========================================================= */

@media (max-width: 850px) {

    .ifecore-header-inner {

        min-height: 66px;

        width:
            calc(100% - 28px);
    }

    .ifecore-menu-button {

        display: inline-flex;
    }

    nav,
    .ifecore-nav {

        display: none;
    }

    .hero-layout {

        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            65px 0;
    }

    .hero-main-content {

        max-width: 720px;
    }

    .hero-shopping-card,
    .hero-visual,
    .ifc-hero-visual {

        max-width: 540px;
    }

    .benefits-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .benefit-item:nth-child(2) {

        border-right: none;
    }

    .benefit-item:nth-child(-n+2) {

        border-bottom:
            1px solid
            var(--if-border);

        padding-bottom: 13px;
    }

    .benefit-item:nth-child(n+3) {

        padding-top: 13px;
    }

    .category-grid,
    .ifc-category-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .promotion-content,
    .grow-grid {

        grid-template-columns:
            1fr;

        padding:
            32px;
    }

    .promotion-actions,
    .grow-actions {

        justify-content: flex-start;
    }

    .services-grid,
    .professional-services-grid,
    .ecosystem-grid,
    .ifc-ecosystem-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .seller-banner,
    .ifc-seller-banner {

        grid-template-columns:
            1fr;

        padding:
            32px;
    }

    .seller-actions,
    .ifc-seller-actions {

        justify-content: flex-start;
    }

    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .footer-brand {

        grid-column:
            1 / -1;

        max-width: 600px;
    }
}


/* =========================================================
   51. RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    .marketplace-container,
    .ifecore-container,
    .container {

        width:
            calc(100% - 28px);
    }

    .hero-layout {

        width:
            calc(100% - 28px);
    }

    .marketplace-hero,
    .ifc-hero {

        min-height:
            auto;
    }

    .hero-main-content h1,
    .ifc-hero h1 {

        margin-top: 16px;

        font-size:
            clamp(33px, 10vw, 46px);

        line-height: 1.05;

        letter-spacing:
            -1.5px;
    }

    .hero-description,
    .ifc-hero p {

        font-size: 13px;

        line-height: 1.7;
    }

    .marketplace-search,
    .hero-search,
    .ifc-hero-search {

        min-height: 56px;

        padding: 5px;
    }

    .search-icon {

        width: 40px;
        min-width: 40px;

        height: 44px;
    }

    .marketplace-search input {

        height: 44px;

        font-size: 13px;
    }

    .marketplace-search button {

        min-width: 82px;

        height: 44px;

        padding:
            0 13px;

        font-size: 11px;
    }

    .hero-shopping-card,
    .hero-visual,
    .ifc-hero-visual {

        padding: 23px;
    }

    .hero-shopping-card h2 {

        font-size: 23px;
    }

    .marketplace-section {

        padding:
            55px 0;
    }

    .section-heading {

        align-items: flex-start;

        flex-direction: column;

        gap: 12px;

        margin-bottom: 24px;
    }

    .section-heading h2 {

        font-size: 25px;
    }

    .section-heading p {

        font-size: 11px;
    }

    .category-grid,
    .ifc-category-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .category-card,
    .ifc-category-card {

        min-height: 125px;

        padding: 16px 13px;
    }

    .product-grid,
    .ifc-product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 11px;
    }

    .product-image,
    .ifc-product-image {

        height: 185px;
    }

    .product-body,
    .ifc-product-body {

        padding:
            12px 11px 11px;
    }

    .product-category,
    .ifc-product-category {

        font-size: 8px;
    }

    .product-title,
    .ifc-product-title {

        min-height: 36px;

        font-size: 12px;

        line-height: 1.4;
    }

    .product-price,
    .ifc-product-price {

        font-size: 15px;
    }

    .product-seller,
    .ifc-product-seller {

        font-size: 9px;
    }

    .product-location,
    .ifc-product-location {

        font-size: 8px;
    }

    .product-actions,
    .ifc-product-actions {

        grid-template-columns:
            1fr;

        gap: 5px;

        margin-top: 10px;
    }

    .product-actions a,
    .ifc-product-actions a,
    .product-actions button,
    .ifc-product-actions button {

        min-height: 34px;

        font-size: 9px;
    }

    .product-badge,
    .ifc-product-badge {

        top: 9px;
        left: 9px;

        min-height: 22px;

        padding:
            4px 7px;

        font-size: 8px;
    }

    .benefits-grid {

        grid-template-columns:
            1fr;

        padding:
            10px 0;
    }

    .benefit-item {

        min-height: 52px;

        padding:
            8px 10px;

        border-right: none !important;

        border-bottom:
            1px solid
            var(--if-border);
    }

    .benefit-item:last-child {

        border-bottom: none;
    }

    .services-grid,
    .professional-services-grid,
    .ecosystem-grid,
    .ifc-ecosystem-grid {

        grid-template-columns:
            1fr;
    }

    .promotion-content,
    .grow-grid,
    .seller-banner,
    .ifc-seller-banner {

        padding:
            26px 21px;
    }

    .promotion-content h2,
    .grow-grid h2 {

        font-size: 27px;
    }

    .seller-banner h2,
    .ifc-seller-banner h2 {

        font-size: 27px;
    }

    .footer-main {

        grid-template-columns:
            1fr 1fr;

        gap: 28px 20px;

        padding:
            45px 0 30px;
    }

    .footer-brand {

        grid-column:
            1 / -1;
    }

    .footer-bottom {

        padding:
            13px 0;

        flex-direction: column;

        align-items: flex-start;

        min-height: auto;
    }
}


/* =========================================================
   52. RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .ifecore-header-inner {

        width:
            calc(100% - 20px);

        gap: 10px;
    }

    .ifecore-brand {

        gap: 8px;
    }

    .brand-logo,
    .ifecore-logo {

        width: 40px !important;
        height: 40px !important;

        min-width: 40px !important;
        min-height: 40px !important;

        max-width: 40px !important;
        max-height: 40px !important;
    }

    .ifecore-brand-text strong {

        font-size: 17px;
    }

    .ifecore-brand-text span {

        font-size: 7px;

        letter-spacing:
            1.2px;
    }

    .hero-layout {

        width:
            calc(100% - 20px);

        padding:
            52px 0;
    }

    .hero-badge {

        font-size: 8px;

        letter-spacing:
            1px;
    }

    .hero-main-content h1,
    .ifc-hero h1 {

        font-size:
            34px;
    }

    .hero-description,
    .ifc-hero p {

        font-size: 12px;
    }

    .marketplace-search button {

        min-width: 70px;

        padding:
            0 10px;

        font-size: 10px;
    }

    .category-grid,
    .ifc-category-grid {

        gap: 8px;
    }

    .category-card,
    .ifc-category-card {

        min-height: 115px;

        padding:
            13px 11px;
    }

    .category-card h3,
    .ifc-category-card h3 {

        font-size: 11px;
    }

    .category-card span,
    .ifc-category-card span {

        font-size: 8px;
    }

    .product-grid,
    .ifc-product-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .product-image,
    .ifc-product-image {

        height: 155px;
    }

    .product-body,
    .ifc-product-body {

        padding:
            10px 9px;
    }

    .product-title,
    .ifc-product-title {

        font-size: 11px;

        min-height: 32px;
    }

    .product-price,
    .ifc-product-price {

        font-size: 14px;
    }

    .product-seller,
    .ifc-product-seller {

        font-size: 8px;
    }

    .product-actions a,
    .ifc-product-actions a,
    .product-actions button,
    .ifc-product-actions button {

        min-height: 32px;

        font-size: 8px;
    }

    .footer-main {

        grid-template-columns:
            1fr;
    }
}


/* =========================================================
   53. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

        scroll-behavior:
            auto !important;
    }

    .product-card,
    .ifc-product-card {

        opacity: 1;

        transform:
            none;
    }

    .product-card:hover,
    .ifc-product-card:hover,
    .category-card:hover,
    .ifc-category-card:hover,
    .ecosystem-card:hover,
    .ifc-ecosystem-card:hover,
    .service-card:hover,
    .professional-service-card:hover {

        transform:
            none;
    }

    .product-card:hover .product-image img,
    .ifc-product-card:hover .ifc-product-image img {

        transform:
            none;
    }
}


/* =========================================================
   54. PRINT
========================================================= */

@media print {

    header,
    .ifecore-header,
    nav,
    .ifecore-nav,
    .announcement-bar,
    .marketplace-search,
    .hero-search,
    .product-actions,
    .ifc-product-actions,
    footer,
    .ifecore-footer {

        display: none !important;
    }

    body {

        background: #fff;

        color: #000;
    }

    .marketplace-section {

        padding:
            25px 0;
    }

    .product-card,
    .ifc-product-card {

        opacity: 1;

        transform: none;

        box-shadow: none;

        border:
            1px solid #ccc;
    }
}


/* =========================================================
   END OF IFECORE PREMIUM UNIFIED DESIGN SYSTEM
   VERSION 2026.3
========================================================= */