/* ============================================
   PRESI Landing Page v2 - Stylesheet
   Color Guide: Soft, Happy, Energetic, Innovative
   ============================================ */

:root {
    /* Biru Commerce — Persib-inspired blues (own brand, not club IP) */
    --color-primary: #0057A8;
    --color-primary-dark: #003F7A;
    --color-primary-light: #E6F0FA;

    /* Accent gold (restrained) */
    --color-secondary: #C9A227;
    --color-secondary-dark: #A8861C;
    --color-secondary-light: #F7F1DC;

    /* Accents */
    --color-accent-mint: #2BBBAD;
    --color-accent-violet: #3D5A80;
    --color-accent-yellow: #E8C547;

    /* Neutrals */
    --color-text-primary: #0F1C2E;
    --color-text-secondary: #4A5B6E;
    --color-text-muted: #8A97A6;
    --color-border: #D5DEE8;
    --color-bg: #F3F7FB;
    --color-surface: #FFFFFF;

    /* Semantic */
    --color-success: #27AE60;
    --color-warning: #F39C12;
    --color-danger: #E74C3C;
    --color-info: #3498DB;

    /* Gradients */
    --gradient-sunrise: linear-gradient(135deg, #003F7A, #0057A8 45%, #1A7AD9);
    --gradient-warmth: linear-gradient(135deg, #0057A8, #C9A227);
    --gradient-dream: linear-gradient(135deg, #003F7A, #2BBBAD);
    --gradient-soft-cloud: linear-gradient(180deg, #F3F7FB, #E6F0FA);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 28, 46, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 28, 46, 0.10);
    --shadow-lg: 0 8px 24px rgba(15, 28, 46, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 28, 46, 0.14);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ============================================
   Base & Reset
   ============================================ */
.landing-wrapper {
    background-color: #060a12;
    min-height: 100vh;
    overflow-x: hidden;
}

.landing-main {
    position: relative;
}

/* ============================================
   Topbar — Dark stadium market header
   ============================================ */
.landing-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 10, 18, 0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.85rem 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.landing-topbar.scrolled {
    background: rgba(6, 10, 18, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.topbar-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: auto minmax(180px, 1fr) auto auto;
    align-items: center;
    gap: 1rem 1.25rem;
}

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    flex-shrink: 0;
}

.topbar-logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.topbar-crest {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #2f7fd4 0%, var(--color-primary) 42%, #002a57 100%);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.18), 0 0 0 4px rgba(0, 87, 168, 0.35);
}

.topbar-crest-ring {
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.topbar-crest-letter {
    position: relative;
    z-index: 1;
    font-family: Outfit, sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
}

.topbar-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.topbar-brand-line {
    font-family: Outfit, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.topbar-brand-line-strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
}

.topbar-search {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    justify-self: center;
}

.topbar-search-icon {
    position: absolute;
    left: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    pointer-events: none;
}

.topbar-search input {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.88rem;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.topbar-search input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.topbar-search input:focus {
    border-color: rgba(0, 87, 168, 0.7);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.2);
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.topbar-nav .nav-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.75rem;
    font-family: Outfit, sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.topbar-nav .nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-item-caret {
    font-size: 0.65rem;
    opacity: 0.7;
}

.topbar-nav-mobile-extra {
    display: none;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.topbar-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.topbar-icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.topbar-cart-badge {
    position: absolute;
    top: -0.2rem;
    right: -0.15rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.28rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    border: 2px solid #060a12;
}

.landing-locale-toggle {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-locale-btn {
    min-width: 2rem;
    padding: 0.28rem 0.5rem;
    border-radius: 999px;
    font-family: Outfit, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    text-align: center;
}

.landing-locale-btn:hover { color: #fff; }

.landing-locale-btn.active {
    background: #fff;
    color: #0b1a33;
}

.guest-auth-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-family: Outfit, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.topbar-btn-ghost {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 1px solid transparent;
}

.topbar-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.topbar-btn-solid {
    color: #fff;
    background: var(--color-primary);
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(0, 87, 168, 0.35);
}

.topbar-btn-solid:hover {
    background: #1467bd;
    transform: translateY(-1px);
}

.topbar-user-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.22rem 0.65rem 0.22rem 0.22rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-family: Outfit, sans-serif;
}

.topbar-user-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.topbar-user-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

.topbar-user-name {
    max-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
}

.topbar-mobile-toggle {
    display: none;
    width: 2.4rem;
    height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    cursor: pointer;
}

.topbar-burger {
    position: relative;
    display: block;
    width: 1.05rem;
    height: 0.8rem;
}

.topbar-burger-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}

.topbar-burger-line:nth-child(1) { top: 0; }
.topbar-burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.topbar-burger-line:nth-child(3) { bottom: 0; }

.landing-topbar.menu-open .topbar-burger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.landing-topbar.menu-open .topbar-burger-line:nth-child(2) { opacity: 0; }

.landing-topbar.menu-open .topbar-burger-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 1100px) {
    .topbar-container {
        grid-template-columns: auto minmax(140px, 1fr) auto;
    }

    .topbar-nav {
        display: none;
    }

    .topbar-mobile-toggle {
        display: inline-flex;
    }

    .topbar-nav.mobile-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        position: absolute;
        top: calc(100% + 0.55rem);
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(8, 12, 22, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1rem;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
        z-index: 120;
    }

    .topbar-nav.mobile-open .nav-item {
        padding: 0.85rem 1rem;
        background: rgba(255, 255, 255, 0.04);
    }

    .topbar-nav-mobile-extra {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.35rem;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar-locale-desktop {
        display: none;
    }
}

@media (max-width: 720px) {
    .topbar-search:not(.topbar-search-mobile) {
        display: none;
    }

    .topbar-search-mobile {
        display: flex;
        max-width: none;
        margin-bottom: 0.35rem;
    }

    .topbar-container {
        grid-template-columns: auto 1fr auto;
    }

    .topbar-user-name {
        display: none;
    }

    .guest-auth-links .topbar-btn-ghost {
        display: none;
    }
}
/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(74, 144, 217, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(74, 144, 217, 0.4);
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 127, 107, 0.3);
}

.btn-secondary:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 127, 107, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-get-started {
    background: var(--color-secondary);
    color: #fff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 127, 107, 0.3);
}

.btn-get-started:hover {
    background: var(--color-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 127, 107, 0.4);
}

/* ============================================
   Hero — Dark stadium marketplace
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 7.5rem 1.5rem 6.5rem;
    background: #060a12;
}

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

.hero-stadium-glow {
    position: absolute;
    inset: -10% -5%;
    background:
        radial-gradient(ellipse 55% 45% at 78% 42%, rgba(0, 87, 168, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 18% 70%, rgba(0, 63, 122, 0.28) 0%, transparent 65%),
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 0, 0, 0.7) 0%, transparent 55%),
        linear-gradient(160deg, #05080f 0%, #0a1630 45%, #07101f 100%);
}

.hero-stadium-grid {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.22;
    filter: saturate(0.85) contrast(1.05);
}

.hero-bg-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 10, 18, 0.92) 0%, rgba(6, 10, 18, 0.72) 42%, rgba(6, 10, 18, 0.45) 100%),
        linear-gradient(0deg, rgba(6, 10, 18, 0.9) 0%, transparent 35%, rgba(6, 10, 18, 0.35) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-title {
    font-family: Outfit, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.1rem;
}

.hero-title-accent {
    color: #1f7fe0;
}

.hero-subtitle {
    font-size: 1.02rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 34rem;
    margin-bottom: 1.75rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 87, 168, 0.4);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-cta-primary:hover {
    background: #1467bd;
    transform: translateY(-2px);
}

.hero-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    font-family: Outfit, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.hero-cta-link:hover {
    color: #fff;
    gap: 0.65rem;
}

.hero-emblem {
    justify-self: center;
    text-align: center;
    position: relative;
}

.hero-emblem-logo {
    width: clamp(180px, 28vw, 300px);
    height: auto;
    display: block;
    margin: 0 auto;
    filter:
        drop-shadow(0 0 28px rgba(31, 127, 224, 0.45))
        drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
    animation: hero-emblem-pulse 4.5s ease-in-out infinite;
}

.hero-emblem-caption {
    margin-top: 1rem;
    font-family: Outfit, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@keyframes hero-emblem-pulse {
    0%, 100% { filter: drop-shadow(0 0 28px rgba(31, 127, 224, 0.45)) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45)) brightness(1); }
    50% { filter: drop-shadow(0 0 36px rgba(31, 127, 224, 0.6)) drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45)) brightness(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-emblem-logo {
        animation: none;
    }
}

.hero-trust {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.75rem;
    z-index: 3;
}

.hero-trust-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    background: rgba(12, 18, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.88);
    font-family: Outfit, sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    text-align: left;
}

.hero-trust-icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 87, 168, 0.22);
    color: #4ea1ef;
    flex-shrink: 0;
}

@media (max-width: 960px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .hero-emblem {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .hero-emblem-logo {
        width: 140px;
    }

    .hero-trust-inner {
        grid-template-columns: 1fr 1fr;
        border-radius: 1.25rem;
    }
}

@media (max-width: 560px) {
    .hero-section {
        padding: 6.5rem 1rem 8.5rem;
    }

    .hero-trust {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 1rem;
    }

    .hero-trust-inner {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        padding: 0.9rem 1rem;
    }

    .hero-trust-item {
        justify-content: flex-start;
    }
}
/* ============================================
   Section Common
   ============================================ */
.section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.section-header .section-divider {
    width: 48px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    background: var(--color-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-card .feature-icon.icon-blue { background: var(--color-primary-light); color: var(--color-primary); }
.feature-card .feature-icon.icon-coral { background: var(--color-secondary-light); color: var(--color-secondary); }
.feature-card .feature-icon.icon-mint { background: #E0F9F6; color: var(--color-accent-mint); }
.feature-card .feature-icon.icon-violet { background: #F0EBF8; color: var(--color-accent-violet); }
.feature-card .feature-icon.icon-yellow { background: #FFF8E1; color: #E6A800; }
.feature-card .feature-icon.icon-success { background: #E8F8EF; color: var(--color-success); }

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ============================================
   Stats / Trust Section
   ============================================ */
.stats-section {
    padding: 3rem 0;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.stats-trust-card {
    background: var(--gradient-sunrise);
    border-radius: var(--radius-xl);
    padding: 2rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-trust-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-trust-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.stats-numbers-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

.stats-cta-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stats-cta-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.stats-cta-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
}

/* ============================================
   Trust Badges Section
   ============================================ */
.trust-section {
    padding: 3rem 0 5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-card .trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.trust-card .trust-icon.icon-blue { background: var(--color-primary-light); color: var(--color-primary); }
.trust-card .trust-icon.icon-mint { background: #E0F9F6; color: var(--color-accent-mint); }
.trust-card .trust-icon.icon-coral { background: var(--color-secondary-light); color: var(--color-secondary); }
.trust-card .trust-icon.icon-violet { background: #F0EBF8; color: var(--color-accent-violet); }

.trust-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.trust-card p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ============================================
   Seller CTA — full-bleed stadium banner
   ============================================ */
.seller-cta-section {
    position: relative;
    overflow: hidden;
    background: #0057A8;
    padding: 4.75rem 1.5rem;
    color: #fff;
    min-height: 360px;
    display: flex;
    align-items: center;
}

.seller-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.seller-cta-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 85% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 40% 70% at 10% 80%, rgba(0, 31, 61, 0.35) 0%, transparent 60%),
        linear-gradient(120deg, #003f7a 0%, #0057A8 45%, #1a7ad9 100%);
}

.seller-cta-crowd {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 20% 70%, rgba(0, 0, 0, 0.45) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.35) 0 1.5px, transparent 3px),
        radial-gradient(circle at 65% 75%, rgba(0, 0, 0, 0.4) 0 2px, transparent 3px),
        radial-gradient(circle at 80% 55%, rgba(0, 0, 0, 0.3) 0 1.5px, transparent 3px);
    background-size: 48px 48px, 36px 36px, 52px 52px, 40px 40px;
    mix-blend-mode: multiply;
}

.seller-cta-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    pointer-events: none;
}

.seller-cta-photo {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
    object-fit: cover;
    object-position: center center;
    /* Soft left fade into section blue */
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 12%,
        rgba(0, 0, 0, 0.55) 26%,
        #000 42%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 12%,
        rgba(0, 0, 0, 0.55) 26%,
        #000 42%,
        #000 100%
    );
}

.seller-cta-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #0057A8 0%,
        rgba(0, 87, 168, 0.92) 10%,
        rgba(0, 87, 168, 0.55) 24%,
        rgba(0, 87, 168, 0.18) 38%,
        transparent 55%
    );
    pointer-events: none;
}

.seller-cta-container {
    position: relative;
    z-index: 2;
    width: min(1360px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
}

.seller-cta-copy {
    max-width: 34rem;
    position: relative;
    z-index: 2;
}

.seller-cta-copy h2 {
    font-family: Outfit, sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.85rem;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 31, 61, 0.35);
}

.seller-cta-copy p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 34rem;
    margin: 0 0 1.6rem;
    text-shadow: 0 4px 16px rgba(0, 31, 61, 0.3);
}

.seller-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.55rem;
    border-radius: 0.85rem;
    background: rgba(8, 18, 36, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: Outfit, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.seller-cta-btn:hover {
    transform: translateY(-2px);
    background: rgba(8, 18, 36, 0.58);
    color: #fff;
}

@media (max-width: 860px) {
    .seller-cta-section {
        padding: 3.25rem 1.25rem;
        min-height: 320px;
    }

    .seller-cta-visual {
        opacity: 0.55;
    }

    .seller-cta-photo {
        -webkit-mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 35%,
            #000 70%,
            #000 100%
        );
        mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.4) 35%,
            #000 70%,
            #000 100%
        );
    }

    .seller-cta-visual::after {
        background: linear-gradient(
            180deg,
            #0057A8 0%,
            rgba(0, 87, 168, 0.75) 35%,
            rgba(0, 87, 168, 0.25) 65%,
            transparent 100%
        );
    }

    .seller-cta-copy {
        max-width: 100%;
    }
}

/* ============================================
   Footer
   ============================================ */
.landing-footer {
    background: #060a12;
    color: #fff;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-container {
    width: min(1360px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 0.9rem;
}

.footer-logo img {
    height: 64px;
    width: auto;
    display: block;
}

.footer-crest {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, #2f7fd4 0%, var(--color-primary) 42%, #002a57 100%);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.footer-crest-letter {
    font-family: Outfit, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-family: Outfit, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo-text strong {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.65;
    max-width: 18rem;
    margin: 0;
}

.footer-col h4 {
    font-family: Outfit, sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.35rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-social-link {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-container {
        width: calc(100% - 1.5rem);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-numbers-card {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary {
        width: 100%;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Topbar User Dropdown
   ============================================ */
.topbar-dropdown {
    position: relative;
}

.topbar-dropdown-toggle .dropdown-arrow {
    transition: transform 0.2s ease;
    opacity: 0.85;
}

.topbar-dropdown.active .topbar-dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.topbar-dropdown.active .topbar-user-btn {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(78, 161, 239, 0.45);
}

.topbar-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    box-shadow: 0 14px 36px rgba(0, 31, 61, 0.16);
    padding: 0.45rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.topbar-dropdown-menu::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), #fff 45%, var(--color-secondary) 70%, var(--color-primary-dark));
}

.topbar-dropdown.active .topbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.topbar-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: Outfit, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.topbar-dropdown-item:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.topbar-dropdown-item i {
    width: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-primary);
}

.topbar-dropdown-item-danger {
    color: #c0392b;
}

.topbar-dropdown-item-danger:hover {
    background-color: #fdf0ef;
    color: #c0392b;
}

.topbar-dropdown-item-danger i {
    color: #c0392b;
}

.topbar-dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.35rem 0;
}

.biru-brand-eyebrow {
    font-family: Outfit, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-accent-yellow);
    margin-bottom: 0.75rem;
}

.etalase-section {
    padding: 1.25rem 0 1.5rem;
    background: #060a12;
}

.etalase-container {
    width: min(1360px, calc(100% - 2.5rem));
    margin: 0 auto;
}

.etalase-panel {
    background: #fff;
    border-radius: 1.75rem;
    padding: 2.25rem 2rem 2.5rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    border: none;
}

.etalase-block + .etalase-block {
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid #eef2f6;
}

.etalase-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.etalase-block-header h2 {
    font-family: Outfit, sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 1.75rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin: 0;
}

.etalase-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: Outfit, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease, color 0.2s ease;
}

.etalase-view-all:hover {
    color: var(--color-primary-dark);
    gap: 0.55rem;
}

.category-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.85rem;
}

.category-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--color-text-primary);
    min-height: 6.75rem;
    padding: 1rem 0.5rem 0.95rem;
    border-radius: 1rem;
    background: #fff;
    border: 1.5px solid #e4ebf3;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.category-icon {
    display: grid;
    place-items: center;
    width: 2.4rem;
    height: 2.4rem;
    color: #7a8798;
    font-size: 1.45rem;
    line-height: 1;
    transition: color 0.2s ease;
}

/* Outline / line-icon look from solid FA glyphs */
.category-icon i {
    color: inherit;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.4px currentColor;
    paint-order: stroke fill;
    transition: color 0.2s ease, -webkit-text-stroke-color 0.2s ease;
}

.category-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 87, 168, 0.4);
    box-shadow: 0 8px 20px rgba(15, 28, 46, 0.07);
}

.category-item:hover .category-icon {
    color: var(--color-primary);
}

.category-item.is-active {
    background: #fff;
    border-color: rgba(0, 87, 168, 0.45);
    color: var(--color-primary);
    box-shadow: 0 10px 22px rgba(0, 87, 168, 0.12);
}

.category-item.is-active .category-icon {
    color: var(--color-primary);
}

.category-label {
    font-family: Outfit, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
    color: #4a5b6e;
}

.category-item.is-active .category-label {
    color: var(--color-primary);
}

.category-active-line {
    display: block;
    width: 0;
    height: 2.5px;
    border-radius: 999px;
    background: var(--color-primary);
    transition: width 0.22s ease;
}

.category-item.is-active .category-active-line {
    width: 1.65rem;
}

.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-text-secondary);
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e6ecf3;
    border-radius: 0.75rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 2px rgba(15, 28, 46, 0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    border-color: #d5e0ec;
    box-shadow: 0 10px 24px rgba(15, 28, 46, 0.1);
}

.product-card-media {
    aspect-ratio: 1 / 1;
    background: #f3f6fa;
    overflow: hidden;
    border-radius: 0;
    border-bottom: 1px solid #eef2f6;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.04);
}

.product-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-family: Outfit, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(145deg, #0b2345, #0057A8);
}

.product-card-body {
    padding: 0.7rem 0.75rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.product-card-body h3 {
    font-size: 0.84rem;
    font-weight: 600;
    margin: 0;
    color: #1f2d3d;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.3em;
}

.product-price {
    font-family: Outfit, sans-serif;
    font-weight: 800;
    font-size: 0.98rem;
    color: var(--color-primary);
    margin: 0.15rem 0 0;
    letter-spacing: -0.01em;
}

.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.35rem;
}

.product-likes {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a97a6;
}

.product-likes i {
    color: #b0bac6;
    font-size: 0.72rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.9rem;
}

@media (max-width: 1100px) {
    .category-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 720px) {
    .etalase-section {
        padding: 0 0 1rem;
    }

    .etalase-container {
        width: calc(100% - 1.25rem);
    }

    .etalase-panel {
        padding: 1.35rem 1.1rem 1.6rem;
        border-radius: 1.25rem;
    }

    .category-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .category-item {
        min-height: 5.5rem;
        padding: 0.75rem 0.35rem 0.7rem;
        border-radius: 0.85rem;
        gap: 0.4rem;
    }

    .category-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.2rem;
    }

    .category-icon i {
        -webkit-text-stroke-width: 1.15px;
    }

    .category-label {
        font-size: 0.68rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.65rem;
    }

    .product-card-body {
        padding: 0.55rem 0.55rem 0.65rem;
    }

    .product-card-body h3 {
        font-size: 0.78rem;
        min-height: 2.1em;
    }

    .product-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 420px) {
    .category-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: 1fr;
    }
}

.etalase-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--color-text-secondary);
}

.etalase-empty p {
    margin-bottom: 1rem;
}

.etalase-pagination {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
}

