/* ==========================================================================
   TERRAFOS HOLDING S.A.S. - AGRUL MASTER THEME & MOBILE APP PWA STYLES
   Plataforma de Innovación Agro-Biomineral & Biotecnológica
   Sede Principal Planta: Tocancipá Km 22 Autonorte (Colombia)
   Sedes Regionales: Santa Cruz & Cochabamba (Bolivia) • Barinas (Venezuela)
   ========================================================================== */

:root {
    --color-primary: #1e4338;
    --color-primary-dark: #122c24;
    --color-secondary: #f8a42c;
    --color-gold: #f8a42c;
    --color-gold-hover: #d98214;
    --color-earth: #703D19;
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Handlee', cursive;
    --font-heading: 'Outfit', sans-serif;
}

html {
    overflow-x: clip;
    max-width: 100%;
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: #4b5563;
    background-color: #ffffff;
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    line-height: 1.6;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar-area {
    background-color: #1e4338;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(248, 164, 44, 0.2);
}

.top-bar-left-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 10px 0;
}

.top-bar-left-text p {
    margin: 0;
    padding-right: 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-weight: 700;
}

.top-bar-social-box {
    background-color: #f8a42c;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    height: 100%;
}

.social-icon-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: #1e4338;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border: 1.5px solid rgba(30, 67, 56, 0.15);
}

.social-icon-gold:hover {
    transform: scale(1.1);
    background: #1e4338;
    color: #f8a42c;
    border-color: #f8a42c;
}

.footer-social-gold {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: #f8a42c;
    color: #1e4338;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-right: 10px;
    box-shadow: 0 4px 12px rgba(248, 164, 44, 0.35);
    font-weight: 800;
}

.footer-social-gold:hover {
    background: #ffffff;
    color: #1e4338;
    transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION HEADER (LARGER, CLEAR LOGO & MENU)
   ========================================================================== */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.navbar-brand img {
    height: 62px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}

.brand-text-terrafos {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #1e4338;
    letter-spacing: -0.5px;
    line-height: 1;
}

.brand-tag-holding {
    font-size: 10.5px;
    font-weight: 800;
    color: #166534;
    background: #dcfce7;
    padding: 3px 9px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 3px;
    letter-spacing: 0.06em;
}

.nav-link-custom {
    font-family: var(--font-primary);
    font-size: 14.5px;
    font-weight: 700;
    color: #1f2937 !important;
    padding: 8px 14px !important;
    transition: color 0.2s;
}

.nav-link-custom:hover {
    color: #1e4338 !important;
}

.proposal-btn-pill {
    background: #1e4338;
    color: #ffffff !important;
    padding: 9px 22px !important;
    border-radius: 30px;
    font-weight: 800 !important;
    font-size: 13.5px !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(30, 67, 56, 0.25);
    white-space: nowrap;
}

.proposal-btn-pill:hover {
    background: #f8a42c;
    color: #1e4338 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(248, 164, 44, 0.4);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   HERO BANNER (AGRUL STYLE)
   ========================================================================== */
.banner-agrul-hero {
    position: relative;
    background: linear-gradient(rgba(18, 44, 36, 0.65), rgba(18, 44, 36, 0.88)), url('IMAGENES/terrafos-mockup-barn.jpg') center center / cover no-repeat;
    min-height: 640px;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 90px 0;
}

.badge-hand-agrul {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    background: #1e4338;
    padding: 8px 20px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 20px;
    border-left: 4px solid #f8a42c;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.banner-agrul-hero h1 {
    font-family: var(--font-secondary);
    font-size: 76px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.banner-agrul-hero h1 strong {
    color: #f8a42c;
    display: block;
}

.banner-agrul-hero p {
    font-size: 17.5px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 35px;
    max-width: 680px;
}

.btn-theme-yellow {
    background-color: #f8a42c;
    color: #1e4338;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid #f8a42c;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(248, 164, 44, 0.35);
}

.btn-theme-yellow:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-theme-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 34px;
    border-radius: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid #ffffff;
    margin-left: 14px;
    text-decoration: none;
}

.btn-theme-outline-white:hover {
    background-color: #ffffff;
    color: #1e4338;
}

/* ==========================================================================
   PRODUCT CARDS (VT-PRODUCT-CARD AGRUL SHOP)
   ========================================================================== */
.vt-product-card {
    background: #ffffff;
    border: 1.5px solid #eef2f5;
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
}

.vt-product-card:hover {
    box-shadow: 0 16px 36px rgba(30, 67, 56, 0.12);
    transform: translateY(-6px);
    border-color: #1e4338;
}

.vt-product-thumb {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbfdfc;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 12px;
    position: relative;
    cursor: pointer;
}

.vt-product-thumb img {
    max-height: 220px;
    max-width: 92%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.vt-product-card:hover .vt-product-thumb img {
    transform: scale(1.08);
}

.vt-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #1e4338;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vt-product-title {
    font-size: 17px;
    font-weight: 800;
    color: #1e4338;
    margin-bottom: 8px;
    line-height: 1.35;
    min-height: 46px;
}

.vt-product-price {
    font-size: 22px;
    font-weight: 900;
    color: #1e4338;
    margin-bottom: 14px;
}

.vt-product-price del {
    font-size: 14px;
    color: #9ca3af;
    margin-left: 6px;
    font-weight: 500;
}

.btn-add-cart {
    background-color: #1e4338;
    color: #ffffff;
    font-weight: 800;
    font-size: 13.5px;
    padding: 12px 24px;
    border-radius: 30px;
    width: 100%;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(30, 67, 56, 0.2);
}

.btn-add-cart:hover {
    background-color: #f8a42c;
    color: #1e4338;
    transform: scale(1.02);
}

.btn-wa-direct {
    background-color: #25D366;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-wa-direct:hover {
    background-color: #1ebc57;
    color: #ffffff;
}

/* ==========================================================================
   CATEGORY FILTER PILLS
   ========================================================================== */
.category-filter-btn {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    color: #4b5563;
    font-weight: 700;
    font-size: 13.5px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.2s;
    cursor: pointer;
}

.category-filter-btn:hover, .category-filter-btn.active {
    background: #1e4338;
    border-color: #1e4338;
    color: #ffffff;
}

/* ==========================================================================
   LATAM FLAGS & PAYMENT METHOD PILLS
   ========================================================================== */
.latam-country-pill {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    color: #1f2937;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: all 0.2s ease;
}

.latam-country-pill:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.flag-img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 2px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

/* ==========================================================================
   PROPOSAL SECTION
   ========================================================================== */
.proposal-wrapper {
    background: #f8faf9;
    padding: 85px 0;
    border-top: 1px solid #e5e7eb;
}

.proposal-card-box {
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.proposal-heading {
    font-size: 21px;
    font-weight: 800;
    color: #1e4338;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 12px;
}

/* ==========================================================================
   SLIDE-OVER CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1050;
    display: none;
}
.cart-drawer-overlay.open { display: block; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: #ffffff;
    z-index: 1060;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

/* ==========================================================================
   FLOATING MULTIAGENT WHATSAPP WITH REAL COUNTRY FLAGS
   ========================================================================== */
.wa-multiagent-floating-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
}

.wa-floating-btn {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #4ade80 0%, #1e4338 75%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(30, 67, 56, 0.4), inset 0 2px 4px rgba(255,255,255,0.4);
    cursor: pointer;
    transition: transform 0.25s ease;
    text-decoration: none;
    position: relative;
    border: none;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

.wa-badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Multiagent Popup Card */
.wa-country-card-popup {
    position: absolute;
    bottom: 78px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0,0,0,0.25);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: none;
    animation: wa-slide-up 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-country-card-popup.open {
    display: block;
}

@keyframes wa-slide-up {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-country-popup-header {
    background: linear-gradient(135deg, #1e4338 0%, #122c24 100%);
    color: #ffffff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-country-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wa-country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    text-decoration: none;
    color: #1f2937;
    transition: all 0.2s ease;
}

.wa-country-item:hover {
    background: #ffffff;
    border-color: #22c55e;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.wa-country-flag-box {
    width: 36px;
    height: 25px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.wa-country-flag-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wa-country-info h6 {
    font-size: 13.5px;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-country-info p {
    font-size: 11px;
    color: #6b7280;
    margin: 2px 0 0;
}

.wa-online-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
}

/* ==========================================================================
   TOAST NOTIFICATIONS
   ========================================================================== */
.toast-container-custom {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-custom {
    background: #1e4338;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==========================================================================
   MOBILE BOTTOM TAB BAR (APP NATIVA)
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(56px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e5e7eb;
    z-index: 1040;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 10px;
    font-weight: 700;
    gap: 3px;
    width: 20%;
    height: 100%;
    text-decoration: none;
    position: relative;
    background: none;
    border: none;
}

.mobile-nav-item i {
    font-size: 18px;
}

.mobile-nav-item.active {
    color: var(--color-primary);
}

.mobile-nav-item.install-tab-btn i {
    color: #ffffff;
}

.install-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.install-icon-badge i {
    font-size: 14px !important;
}

.mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: 20%;
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* ==========================================================================
   PWA SIMULATOR MODAL
   ========================================================================== */
.pwa-install-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2100;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pwa-install-modal-overlay.open {
    display: flex;
}

.pwa-install-modal-box {
    background: #ffffff;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    padding: 24px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.pwa-modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

/* ==========================================================================
   UNIVERSAL LIGHTBOX WITH 1x / 2x ZOOM
   ========================================================================== */
.universal-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 18, 13, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.universal-lightbox-modal.show {
    display: flex;
}

.lightbox-content-box {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    overflow: auto;
    max-width: 85vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    background: #0b1a12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-image-container img.zoomed {
    transform: scale(2);
    cursor: zoom-out;
}

.lightbox-controls-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.lightbox-control-btn {
    color: #ffffff;
    font-size: 15px;
    padding: 6px 10px;
    border-radius: 20px;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.lightbox-control-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: var(--color-gold);
}

.lightbox-close-top {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
}


/* ==========================================================================
   FIXED APP UX & RESPONSIVE RULES (MOBILE-FIRST)
   ========================================================================== */
section[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 991.98px) {
    .top-bar-area {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 26px !important;
        z-index: 1040 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .header {
        position: fixed !important;
        top: 26px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 58px !important;
        z-index: 1030 !important;
        background: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        padding: 0 12px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    }

    body {
        padding-top: 84px !important;
        padding-bottom: calc(64px + env(safe-area-inset-bottom)) !important;
    }

    .navbar-brand {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .navbar-brand img {
        height: 38px !important;
        width: auto !important;
    }

    .brand-text-terrafos {
        font-size: 18px !important;
        letter-spacing: -0.3px !important;
    }

    .brand-tag-holding {
        display: none !important;
    }

    .proposal-btn-pill {
        padding: 6px 12px !important;
        font-size: 11px !important;
        gap: 5px !important;
        border-radius: 20px !important;
    }

    #desktopNavLinks,
    .navbar-collapse,
    .navbar-nav,
    .navbar-toggler {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .mobile-bottom-bar {
        display: flex !important;
    }

    .banner-agrul-hero {
        min-height: auto !important;
        padding: 35px 15px 45px !important;
        text-align: center !important;
    }

    .badge-hand-agrul {
        font-size: 11px !important;
        padding: 6px 14px !important;
        margin-bottom: 14px !important;
        letter-spacing: 0.5px !important;
        white-space: normal !important;
    }

    .banner-agrul-hero h1 {
        font-size: 34px !important;
        line-height: 1.15 !important;
        margin-bottom: 16px !important;
    }

    .banner-agrul-hero p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    .btn-theme-yellow,
    .btn-theme-outline-white {
        padding: 12px 24px !important;
        font-size: 13.5px !important;
        width: 100% !important;
        justify-content: center !important;
        margin: 5px 0 !important;
    }

    .wa-multiagent-floating-container {
        bottom: calc(76px + env(safe-area-inset-bottom)) !important;
        right: 16px !important;
    }

    .wa-floating-btn {
        width: 52px !important;
        height: 52px !important;
    }
}
