:root {
    --brand: #0f172a;
    --brand-dark: #000000;
    --brand-soft: #f1f5f9;
    --brand-gradient: #0f172a;
    --brand-2: #1e3a8a;
    --accent: #f59e0b;
    --accent-gradient: #f59e0b;
    --dark: #0f172a;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --line: #cbd5e1;
    --text: #1e293b;
    --muted: #475569;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius: 0px;
    --radius-lg: 0px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--surface);
    color: var(--text);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    padding-bottom: 72px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

h1, h2, h3, h4, h5, h6, .brand-title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Promo ticker */
.promo-ticker {
    background: var(--dark);
    color: #fff;
    overflow: hidden;
    font-size: 0.82rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.promo-ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    padding: 0.55rem 0;
    animation: ticker 28s linear infinite;
}

.promo-ticker-track span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
    opacity: 0.92;
}

.promo-ticker-track i {
    color: var(--brand);
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Top bar */
.topbar {
    background: #fff;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0.45rem 0;
}

.topbar a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.topbar a:hover {
    color: var(--brand);
}

.topbar span i {
    color: var(--brand);
}

/* Header & navbar */
.site-header {
    background: #ffffff;
    border-bottom: 2px solid var(--brand);
    z-index: 1030;
}

.catalog-navbar {
    background: #ffffff;
    padding: 0;
}

.catalog-navbar .navbar-brand {
    font-size: 1.15rem;
    color: var(--dark);
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.brand-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.search-shell {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 0.4rem 0.35rem 1rem;
    border: 2px solid var(--line);
    border-radius: 0px;
    background: #ffffff;
    transition: border-color 0.15s;
}

.search-shell:focus-within {
    border-color: var(--brand);
    background: #ffffff;
}

.search-shell input {
    font-size: 0.92rem;
}

.search-shell .form-control {
    box-shadow: none !important;
    background: transparent;
}

.btn-brand {
    background: var(--brand);
    border: 0;
    color: #fff;
    border-radius: 0px;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.45rem 1.1rem;
    transition: background 0.15s;
}

.btn-brand:hover {
    background: var(--brand-dark);
    color: #fff;
}

.btn-brand-soft {
    background: var(--brand-soft);
    color: var(--brand);
    border: 1px solid rgba(232, 93, 4, 0.2);
    border-radius: 999px;
    font-weight: 600;
}

.btn-brand-soft:hover {
    background: #ffe8d9;
    color: var(--brand-dark);
}

.btn-header-soft {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.btn-header-soft:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.btn-header-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 0px;
    background: var(--accent);
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: background 0.15s;
}

.btn-header-cart:hover {
    background: #d97706;
    color: #0f172a;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Category navigation bar */
.category-nav {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.category-nav-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 48px;
}

.btn-category-all {
    background: var(--brand);
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.btn-category-all:hover,
.btn-category-all:focus {
    background: var(--brand-dark);
    color: #fff;
}

.category-mega {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-width: 650px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.category-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.category-mega-grid .dropdown-item {
    border-radius: 6px;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    white-space: normal;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
}

.category-mega-grid .dropdown-item:hover {
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 500;
}

.category-links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
}

.category-links::-webkit-scrollbar {
    display: none;
}

.category-links a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background 0.15s, color 0.15s;
}

.category-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.category-nav-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    white-space: nowrap;
}

.category-nav-meta a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.category-nav-meta a:hover {
    color: var(--brand);
}

.meta-divider {
    color: rgba(255, 255, 255, 0.25);
}

/* Mobile bottom nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
    z-index: 1040;
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}

.mobile-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.25rem;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 600;
    position: relative;
}

.mobile-bottom-nav a i {
    font-size: 1.15rem;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
    color: var(--brand);
}

.mobile-cart-dot {
    position: absolute;
    top: 2px;
    right: calc(50% - 22px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-style: normal;
    font-size: 0.62rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Home layout */
.home-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.home-sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.home-sidebar-head {
    background: var(--dark);
    color: #fff;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.home-sidebar-head i {
    color: var(--brand);
}

.sidebar-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.72rem 1rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--line);
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.sidebar-category-link:hover {
    background: var(--brand);
    color: #ffffff;
    padding-left: 1.15rem;
}

.sidebar-category-link:last-child {
    border-bottom: 0;
}

.sidebar-promo {
    margin: 0.75rem;
    padding: 0.85rem;
    background: var(--brand-soft);
    border-radius: var(--radius);
    font-size: 0.85rem;
}

.sidebar-promo i {
    color: var(--brand);
    font-size: 1.1rem;
}

.home-sidebar.sticky {
    position: sticky;
    top: 130px;
}

.hero-carousel-shell {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    border-radius: 0;
}

.hero-carousel .carousel-item img {
    width: 100%;
    aspect-ratio: 16 / 6;
    object-fit: cover;
    min-height: 220px;
}

.hero-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
}

.hero-overlay .badge {
    background: var(--brand) !important;
    border: 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-overlay h1,
.hero-overlay .h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin-bottom: 0.35rem;
}

.placeholder-block {
    min-height: 280px;
    background: var(--surface-2);
    color: var(--muted);
    border: 2px dashed var(--line);
}

/* Section headers */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-head.compact {
    margin-bottom: 0.75rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-title {
    font-size: 1.35rem;
    margin: 0.35rem 0 0;
}

.section-head a {
    color: var(--brand);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.section-head a:hover {
    text-decoration: underline;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Category cards */
.cat-card {
    background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem 1rem; text-align: center; text-decoration: none; color: var(--text); display: block; box-shadow: var(--shadow-sm); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cat-card:hover {
    transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-soft);
}
.cat-img-wrapper {
    width: 90px; height: 90px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--brand-soft); padding: 0.5rem; display: flex; align-items: center; justify-content: center; transition: transform 0.3s;
}
.cat-card:hover .cat-img-wrapper {
    transform: scale(1.05); background: #fff; box-shadow: 0 8px 20px rgba(37,99,235,0.1);
}
.cat-img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.cat-name { font-weight: 800; font-size: 1.05rem; color: var(--text); }

/* Product cards - Depo12 Style */
.product-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}
.product-card {
    background: #fff; border: 1px solid var(--line); border-radius: 0px; padding: 1.2rem; position: relative; height: 100%; display: flex; flex-direction: column; transition: border-color 0.15s; box-shadow: none;
}
.product-card:hover {
    border-color: var(--brand); box-shadow: var(--shadow-lg); transform: none;
}
.badge-stock {
    position: absolute; top: 12px; left: 12px; background: #10b981; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 0.3rem 0.6rem; border-radius: 6px; z-index: 10; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
}
.badge-kargo {
    position: absolute; top: 12px; right: 12px; background: #ef4444; color: #fff; font-size: 0.7rem; font-weight: 800; padding: 0.3rem 0.6rem; border-radius: 6px; z-index: 10; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(239, 68, 68, 0.2);
}

@media (max-width: 576px) {
    .badge-stock, .badge-kargo {
        font-size: 0.55rem;
        padding: 0.2rem 0.4rem;
        top: 8px;
    }
    .badge-stock { left: 8px; }
    .badge-kargo { right: 8px; }
}
.product-img-box {
    width: 100%; height: 200px; background: #fff; margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: transform 0.3s;
}
.product-card:hover .product-img-box {
    transform: scale(1.02);
}
.product-img {
    max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply;
}
.product-brand {
    font-size: 0.8rem; color: var(--brand); font-weight: 800; text-transform: uppercase; margin-bottom: 0.3rem; letter-spacing: 0.5px;
}
.product-title {
    font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 0.8rem; flex-grow: 1; color: var(--text); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color 0.2s;
}
.product-title:hover {
    color: var(--brand);
}
.product-code-bar {
    display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); font-weight: 500; margin-bottom: 1rem; border-top: 1px dashed var(--line); padding-top: 0.8rem;
}
.product-price-box {
    margin-bottom: 1.2rem; text-align: center; background: var(--surface-2); padding: 0.8rem; border-radius: 8px;
}
.product-price {
    font-size: 1.6rem; font-weight: 900; color: var(--text); line-height: 1;
}
.product-price-old {
    font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin-bottom: 0.2rem;
}
.btn-add {
    width: 100%; background: var(--accent); color: #0f172a; border: none; border-radius: 0px; padding: 0.8rem; font-weight: 800; text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: background 0.15s; text-decoration: none; text-transform: uppercase; font-size: 0.9rem; box-shadow: none;
}
.btn-add:hover {
    transform: none; box-shadow: none; background: #d97706; color: #0f172a;
}

/* Promo & trust */
.promo-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.promo-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.promo-item .bi {
    font-size: 1.35rem;
    color: var(--brand);
    flex-shrink: 0;
}

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem 0;
    margin-top: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.1rem;
}

.trust-item span {
    font-size: 0.78rem;
    color: var(--muted);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.85);
}

.footer-brand {
    color: #fff;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-contact {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--brand);
}

.footer-heading {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--brand);
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.footer-social a:hover {
    background: var(--brand);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Catalog pages */
.catalog-panel,
.catalog-sidebar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.catalog-sidebar.sticky,
.catalog-panel.sticky,
.catalog-filters {
    position: sticky;
    top: 130px;
}

.catalog-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
}

.catalog-menu-link:hover {
    color: var(--brand);
}

.catalog-menu-link:last-child {
    border-bottom: 0;
}

.catalog-toolbar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-link {
    display: block;
    padding: 0.6rem 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
}

.sidebar-link:hover {
    color: var(--brand);
}

.sidebar-link:last-child {
    border-bottom: 0;
}

/* Product detail */
.product-detail {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-detail .detail-media {
    min-height: 100%;
    background: var(--surface);
}

.stepper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.85rem;
}

.step-no {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.soft-text {
    color: var(--muted);
}

/* Pagination */
.pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    color: var(--text);
    border-color: var(--line);
}

.pagination .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}

/* Forms */
.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.2rem rgba(232, 93, 4, 0.15);
}

.btn-primary {
    background: var(--brand);
    border-color: var(--brand);
}

.btn-primary:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 991.98px) {
    .home-layout,
    .category-strip,
    .promo-band,
    .trust-grid,
    .stepper {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-filters,
    .catalog-sidebar.sticky,
    .catalog-panel.sticky,
    .home-sidebar.sticky {
        position: static;
    }

    .hero-carousel .carousel-item img {
        aspect-ratio: 16 / 9;
        min-height: 180px;
    }

    .mobile-category-row {
        display: flex;
        gap: 0.65rem;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .mobile-category-row::-webkit-scrollbar {
        display: none;
    }

    .mobile-category-row .category-chip {
        flex-direction: row;
        min-width: 180px;
        scroll-snap-align: start;
        text-align: left;
    }

    .product-card-actions {
        opacity: 1;
        transform: none;
        position: static;
        background: transparent;
        padding: 0 1rem 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .home-layout,
    .category-strip,
    .promo-band,
    .trust-grid,
    .stepper {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-item {
        padding: 0.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .header-actions .btn-header-soft span {
        display: none !important;
    }
}
