/* =============================================================================
   mobile.css - Optimización completa para vista móvil de Xebra
   ============================================================================= */

/* --------------------------------------------------------------------------
   BURGER ICON - Botón hamburguesa del header
   -------------------------------------------------------------------------- */

.burger-icon {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    background: var(--xebra-soft, #f6f8fc);
    border: 1px solid var(--xebra-border, #e5eaf2);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
    z-index: 10 !important;
}

.burger-icon:hover {
    background: rgba(56, 86, 164, 0.08);
    border-color: rgba(56, 86, 164, 0.25);
}

.burger-icon span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--xebra-ink, #1f2937) !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative !important;
    top: auto !important;
    left: auto !important;
}

.burger-icon span::before,
.burger-icon span::after {
    display: none !important;
}

.burger-icon.burger-close span:nth-child(1) {
    transform: translateY(6px) rotate(45deg) !important;
}

.burger-icon.burger-close span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.burger-icon.burger-close span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg) !important;
}

/* --------------------------------------------------------------------------
   BODY OVERLAY - Fondo oscuro al abrir menu
   -------------------------------------------------------------------------- */

.body-overlay-1 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px);
    z-index: 1002;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.mobile-menu-active .body-overlay-1 {
    display: block;
    opacity: 1;
}

/* --------------------------------------------------------------------------
   MOBILE MENU SIDEBAR - Panel lateral móvil
   -------------------------------------------------------------------------- */

.mobile-header-wrapper-style {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 88vw;
    height: 100%;
    min-height: 100vh;
    background: #ffffff;
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.12);
    z-index: 1003;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.32s ease,
                opacity 0.32s ease;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}

.mobile-header-wrapper-style.sidebar-visible {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

/* Prevenir scroll del body al abrir menú */
body.mobile-menu-active {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   HEADER RESPONSIVO
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .burger-icon {
        display: flex !important;
    }

    .premium-header-main {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.6rem 0;
        gap: 0.5rem;
        min-height: 60px;
    }

    .premium-header-brand {
        width: auto !important;
        display: flex !important;
        align-items: center !important;
    }

    .premium-logo-link img {
        max-height: 42px !important;
    }

    .premium-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin: 0 !important;
    }

    .premium-header-actions .premium-header-action {
        display: none !important;
    }

    .premium-header-cart {
        display: inline-flex !important;
        padding: 0 0.75rem;
        min-height: 38px;
        font-size: 0.82rem;
        gap: 0.4rem;
    }

    .premium-header-search {
        display: none !important;
    }

    .premium-header-nav {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .premium-header-main {
        padding: 0.5rem 0;
        min-height: 56px;
    }

    .premium-logo-link img {
        max-height: 36px !important;
    }

    .premium-header-actions {
        gap: 0.4rem !important;
    }

    .premium-header-cart {
        padding: 0 0.6rem;
        min-height: 36px;
        font-size: 0.78rem;
    }

    .premium-header-cart small {
        display: none;
    }

    .burger-icon {
        width: 36px;
        height: 36px;
    }

    /* Topbar oculta en móvil */
    .premium-topbar {
        display: none !important;
    }
}

/* Barra superior PHP también oculta */
@media (max-width: 767px) {
    .premium-topbar,
    [class*="topbar"],
    [class*="barra-superior"] {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   STICKY HEADER en móvil
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .header.sticky-bar {
        position: sticky;
        top: 0;
        z-index: 999;
        box-shadow: 0 2px 12px rgba(15, 23, 42, 0.07);
    }
}

/* --------------------------------------------------------------------------
   BANNER PRINCIPAL
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .premium-home-banner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 1.2rem 1.2rem 1.5rem;
    }

    .premium-home-banner--main,
    .premium-home-banner--workwear {
        background-size: cover;
        background-position: center right;
    }

    .premium-home-banner__benefits {
        display: none;
    }

    .premium-home-banner__content {
        max-width: 100%;
    }

    .premium-home-banner__content h1 {
        font-size: clamp(1.6rem, 5.5vw, 2.4rem);
        line-height: 1.05;
    }

    .premium-home-banner__content p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .premium-home-banner__pills {
        position: static;
        max-width: 100%;
        justify-content: flex-start;
        margin-top: 0.9rem;
    }
}

@media (max-width: 576px) {
    .premium-home-banner {
        border-radius: 14px;
        padding: 1rem 1rem 1.25rem;
    }

    .premium-home-banner__content h1 {
        font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    }

    .premium-home-banner__count {
        font-size: 0.78rem;
        min-height: 34px;
    }
}

/* --------------------------------------------------------------------------
   HERO GRID - Categorías + banner
   -------------------------------------------------------------------------- */

@media (max-width: 1199px) {
    .premium-hero-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .premium-hero-sidecards,
    .premium-hero-categories {
        display: none !important;
    }

    .premium-hero-banner {
        grid-template-columns: 1fr;
    }

    .premium-banner-card {
        display: none !important;
    }

    .premium-banner-copy h1 {
        font-size: clamp(1.5rem, 4.5vw, 2.4rem);
    }
}

/* --------------------------------------------------------------------------
   GRILLA DE PRODUCTOS
   -------------------------------------------------------------------------- */

@media (max-width: 991px) {
    .premium-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .premium-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

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

    .premium-product-title {
        font-size: 0.78rem;
        min-height: auto;
        margin-top: 0.2rem;
    }

    .premium-product-description {
        display: none;
    }

    .premium-product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
        margin-top: 0.45rem;
    }

    .premium-product-card .btn-cart {
        width: 100%;
        min-width: unset;
        min-height: 32px;
        font-size: 0.7rem;
        justify-content: center;
    }

    .premium-product-price strong {
        font-size: 0.88rem;
    }

    .premium-product-price span {
        font-size: 0.62rem;
    }
}

/* --------------------------------------------------------------------------
   FILTER BAR
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .premium-filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        padding: 0.85rem;
        border-radius: 16px;
        margin-bottom: 0.85rem;
    }

    .premium-filter-search {
        width: 100%;
    }

    .premium-filter-sort {
        width: 100%;
    }

    .premium-filter-sort select {
        width: 100%;
        min-width: unset;
        min-height: 44px;
    }

    .premium-filter-search .btn {
        min-width: 80px;
        font-size: 0.8rem;
    }
}

/* --------------------------------------------------------------------------
   STORE HEADER
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .premium-store-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .premium-store-pills {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 0.4rem;
    }

    .premium-store-header h2 {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .premium-footer-top {
        grid-template-columns: 1fr !important;
        padding: 1.1rem;
        gap: 1.1rem;
    }

    .premium-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .premium-footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* --------------------------------------------------------------------------
   MOBILE MENU PANEL - Estilos detallados del navMobil.php
   -------------------------------------------------------------------------- */

/* Estructura del panel */
.premium-mobile-nav .mobile-header-content-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Buscador */
.premium-mobile-search {
    padding: 0.85rem 1.1rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.premium-mobile-search form {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    padding: 0 0.6rem;
    gap: 0.4rem;
}

.premium-mobile-search form:focus-within {
    border-color: var(--xebra-primary, #3856a4);
    box-shadow: 0 0 0 3px rgba(56, 86, 164, 0.1);
    background: #fff;
}

.premium-mobile-search svg {
    position: static;
    flex-shrink: 0;
    color: #94a3b8;
}

.premium-mobile-search input {
    flex: 1;
    width: 100%;
    background: transparent;
    border: 0;
    padding: 0.75rem 0.5rem;
    font-size: 0.88rem;
    color: #334155;
    min-width: 0;
}

.premium-mobile-search input:focus {
    outline: none;
    box-shadow: none;
}

/* Lista de nav */
.premium-mobile-nav .mobile-menu-wrap {
    padding: 0.6rem 0.85rem;
    border-bottom: 1px solid #f1f5f9;
}

.premium-mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-mobile-menu-list li {
    margin-bottom: 0.2rem;
}

.premium-mobile-menu-list li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    color: #334155;
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
    border: none;
}

.premium-mobile-menu-list li a svg {
    flex-shrink: 0;
    color: #94a3b8;
    transition: color 0.15s ease;
}

.premium-mobile-menu-list li a:hover {
    background: #f1f5f9;
    color: #1e293b;
    padding-left: 1.15rem;
}

.premium-mobile-menu-list li a:hover svg {
    color: var(--xebra-primary, #3856a4);
}

/* Enlace destacado (Ropa de Trabajo) */
.premium-highlight-link {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    color: #1d4ed8 !important;
    border: 1px solid rgba(59, 130, 246, 0.12) !important;
}

.premium-highlight-link svg {
    color: #3b82f6 !important;
}

.premium-highlight-link:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%) !important;
    padding-left: 1.15rem !important;
}

/* Sección de cuenta */
.premium-mobile-account {
    margin: 0.65rem 0.85rem 0.5rem;
    padding: 0.9rem 1rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e8edf4;
}

.premium-mobile-account .mobile-header-top {
    padding: 0;
    margin-bottom: 0.75rem;
    border: none;
    background: transparent;
}

.premium-mobile-account .user-account {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.premium-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.premium-mobile-account .user-name {
    margin: 0 0 0.12rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: #1e293b;
}

.premium-mobile-account .user-status {
    font-size: 0.76rem;
    color: #64748b;
    display: block;
}

.premium-mobile-account .text-brand {
    color: var(--xebra-primary, #3856a4);
}

.premium-mobile-account .premium-mobile-menu-list li a {
    padding: 0.5rem 0;
    border-radius: 0;
    font-size: 0.86rem;
    font-weight: 500;
    color: #475569;
    gap: 0.6rem;
}

.premium-mobile-account .premium-mobile-menu-list li a:hover {
    background: transparent;
    color: var(--xebra-primary, #3856a4);
    padding-left: 0.3rem;
}

/* Copyright */
.premium-mobile-copyright {
    margin-top: auto;
    padding: 0.85rem 1.25rem 1.5rem;
    text-align: center;
}

.premium-mobile-copyright p {
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 0;
}

/* --------------------------------------------------------------------------
   BARRA DE ACCIONES RÁPIDAS (bottom bar) en móvil
   -------------------------------------------------------------------------- */

.mobile-quick-bar {
    display: none;
}

@media (max-width: 767px) {
    .mobile-quick-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 500;
        background: #fff;
        border-top: 1px solid #e5eaf2;
        box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
        padding: 0.3rem 0;
        safe-area-inset-bottom: env(safe-area-inset-bottom);
    }

    .mobile-quick-bar a {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.18rem;
        padding: 0.35rem 0.3rem;
        color: #6b7280;
        font-size: 0.62rem;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.2s ease;
        min-height: 48px;
    }

    .mobile-quick-bar a i {
        font-size: 1.25rem;
        display: block;
    }

    .mobile-quick-bar a:hover,
    .mobile-quick-bar a.active {
        color: var(--xebra-primary, #3856a4);
    }

    body {
        padding-bottom: 64px;
    }

    /* WhatsApp que no choque con barra inferior */
    .whatsapp-fixed {
        bottom: 78px !important;
        top: auto !important;
        right: 14px !important;
    }

    .whatsapp-fixed img {
        width: 42px !important;
        height: 42px !important;
    }
}

/* --------------------------------------------------------------------------
   CONTAINER Y OVERFLOW
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding-left: 0.9rem;
        padding-right: 0.9rem;
    }

    .premium-marketplace {
        padding-top: 0.75rem;
    }

    .premium-store-section {
        padding-bottom: 1.4rem;
    }
}

/* --------------------------------------------------------------------------
   PÁGINA COTIZACIÓN - mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .premium-quote-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .premium-quote-table thead th,
    .premium-quote-table tbody td,
    .premium-quote-table tfoot th {
        padding: 0.65rem 0.7rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .premium-quote-product-cell {
        min-width: 200px;
    }

    .premium-quote-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .premium-quote-btn {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   PRODUCTO INDIVIDUAL - mobile
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .gallery-image .galleries {
        border-radius: 14px;
        padding: 0.7rem;
    }

    .box-product-price {
        padding: 0.8rem 0.9rem;
        border-radius: 12px;
    }

    body.product-detail-page .related-products-mobile-slider {
        display: flex;
        gap: 0.85rem;
        overflow-x: auto;
        padding: 0.1rem 0 0.45rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    body.product-detail-page .related-products-mobile-slider::-webkit-scrollbar {
        display: none;
    }

    body.product-detail-page .related-products-mobile-slider > .card-grid-style-3 {
        flex: 0 0 82%;
        min-width: 82%;
        margin-bottom: 0;
        scroll-snap-align: start;
    }

    body.product-detail-page .related-products-mobile-slider > .card-grid-style-3 .card-grid-inner {
        height: 100%;
    }
}

/* --------------------------------------------------------------------------
   PAGINATION - mobile
   -------------------------------------------------------------------------- */

@media (max-width: 576px) {
    .pagination {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination .page-item .page-link {
        min-width: 34px;
        height: 34px;
        font-size: 0.76rem;
        border-radius: 8px;
    }
}

/* --------------------------------------------------------------------------
   BANNER PROMO ROPA DE TRABAJO EN EL INICIO
   -------------------------------------------------------------------------- */

.premium-workwear-promo-section {
    padding: 1.25rem 0 0.5rem;
}

.premium-workwear-promo {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 60%, #4f46e5 100%);
    color: #ffffff;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 14px 32px rgba(30, 58, 138, 0.22);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.premium-workwear-promo::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.premium-workwear-promo__label {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 0.6rem;
}

.premium-workwear-promo__info h2 {
    margin: 0 0 0.45rem;
    color: #ffffff;
    font-size: clamp(1.3rem, 3.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.15;
}

.premium-workwear-promo__info p {
    margin: 0 0 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.premium-workwear-promo__actions .btn-primary {
    background: #f4c524 !important;
    border-color: #f4c524 !important;
    color: #1f2937 !important;
    font-weight: 800;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.premium-workwear-promo__actions .btn-primary:hover {
    background: #ddb114 !important;
    transform: translateY(-2px);
}

.premium-workwear-promo__features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.workwear-feature-pill {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.9rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
}

.workwear-feature-pill i {
    color: #f4c524;
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .premium-workwear-promo {
        grid-template-columns: 1fr;
        padding: 1.25rem 1.2rem;
        gap: 1rem;
    }

    .premium-workwear-promo__features {
        display: none;
    }
}

@media (max-width: 576px) {
    .premium-workwear-promo {
        border-radius: 16px;
        padding: 1.1rem 1rem;
    }

    .premium-workwear-promo__info h2 {
        font-size: 1.25rem;
    }

    .premium-workwear-promo__info p {
        font-size: 0.82rem;
        margin-bottom: 0.85rem;
    }

    .premium-workwear-promo__actions .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 0.55rem 1rem;
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------------------------
   LIMITACIÓN DE 4 PRODUCTOS EN MÓVIL Y BOTÓN VER MÁS
   -------------------------------------------------------------------------- */

@media (max-width: 767px) {
    .premium-product-card.mobile-hide-product {
        display: none !important;
    }

    .premium-product-card.mobile-show-product {
        display: block !important;
        animation: fadeInMobile 0.35s ease forwards;
    }

    @keyframes fadeInMobile {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-load-more-wrap {
        padding: 0.75rem 0 1rem;
    }

    .btn-load-more-mobile {
        font-weight: 700;
        font-size: 0.84rem;
        padding: 0.55rem 1.3rem;
        border-color: var(--xebra-primary, #3856a4);
        color: var(--xebra-primary, #3856a4);
        box-shadow: 0 4px 14px rgba(56, 86, 164, 0.12);
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
    }

    .btn-load-more-mobile:hover {
        background: var(--xebra-primary, #3856a4);
        color: #ffffff;
    }
}

/* --------------------------------------------------------------------------
   SUBMENÚ DESPLEGABLE DE CATEGORÍAS EN MENÚ MÓVIL
   -------------------------------------------------------------------------- */

.premium-mobile-menu-list .sub-menu {
    list-style: none;
    padding: 0.4rem 0 0.4rem 1rem !important;
    margin: 0.25rem 0 0.5rem !important;
    border-left: 2px solid rgba(56, 86, 164, 0.2);
}

.premium-mobile-menu-list .sub-menu li a {
    font-size: 0.84rem !important;
    padding: 0.45rem 0.75rem !important;
    font-weight: 500 !important;
    color: #475569 !important;
}

.premium-mobile-menu-list .sub-menu li a:hover {
    color: var(--xebra-primary, #3856a4) !important;
    background: rgba(56, 86, 164, 0.06) !important;
    padding-left: 0.95rem !important;
}
