/* ============================================================
   Gradient Header Theme
   Matches the login page auth panel:
   linear-gradient(150deg, #111827 0%, #1f2440 55%, #312e81 100%)
   Pure CSS overrides — no markup changes needed.
   ============================================================ */

/* ---------- Top bar ---------- */
.header .header-top {
    background: linear-gradient(150deg, #111827 0%, #1f2440 55%, #312e81 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.header .header-top a,
.header .header-top .header-dropdown > a,
.header .header-top .header-menu a {
    color: #e5e7eb !important;
}
.header .header-top a:hover {
    color: #a5b4fc !important;
}
.header .header-top .separator {
    background: rgba(255, 255, 255, .25) !important;
}
.header .header-top .social-icon {
    background: rgba(255, 255, 255, .12) !important;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: background .2s, transform .15s;
}
.header .header-top .social-icon,
.header .header-top .icon-facebook::before,
.header .header-top .icon-twitter::before,
.header .header-top .icon-instagram::before {
    color: #fff !important;
}
.header .header-top .social-icon:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    transform: translateY(-1px);
}

/* ---------- Middle bar (white, indigo accents) ---------- */
.header .header-middle {
    background: #fff !important;
}
.header .header-middle .icon-user-2::before,
.header .header-middle .icon-shopping-cart::before {
    color: #312e81 !important;
}
.header .header-middle .header-icon {
    color: #1f2440 !important;
    font-weight: 600;
}
.header .header-middle .header-icon:hover {
    color: #4f46e5 !important;
}
.header .header-middle .header-search .form-control {
    border-radius: 30px;
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.header .header-middle .header-search .form-control:focus {
    border-color: #6366f1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}
.header .header-middle .header-search .btn.icon-search-3::before {
    color: #4f46e5;
}
.header .header-search {
    position: relative;
}
.header .search-response-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1006;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .18);
}
.header .search-response-panel.dispnone {
    display: none !important;
}
.header .search-response-panel:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 42px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, .95);
    border-top: 1px solid rgba(226, 232, 240, .95);
    transform: rotate(45deg);
}
.header .search-result-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}
.header .search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 9px;
    border-radius: 7px;
    color: #111827;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.header .search-result-item:hover {
    background: #eef2ff;
    color: #111827;
    text-decoration: none;
    transform: translateX(3px);
}
.header .search-result-img {
    width: 56px;
    height: 56px;
    border-radius: 7px;
    overflow: hidden;
    flex: 0 0 56px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}
.header .search-result-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.header .search-result-content {
    min-width: 0;
    display: block;
}
.header .search-result-name {
    display: block;
    color: #111827;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.header .search-result-name small {
    color: #dc2626;
    font-size: 11px;
    font-weight: 800;
    margin-left: 4px;
}
.header .search-result-price {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.2;
}
.header .search-result-price del {
    color: #94a3b8;
}
.header .search-result-price strong {
    color: #111827;
    font-weight: 800;
}
.header .search-empty-state {
    padding: 16px 14px;
    position: relative;
    z-index: 1;
}
.header .search-empty-title {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}
.header .search-empty-text {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}
.header .header-contact h6 a {
    color: #312e81 !important;
}

/* ---------- Account dropdown ---------- */
.header .account-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-right: 14px;
}
.header .account-dropdown:after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 14px;
}
.header .account-dropdown .account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 42px;
    color: #1f2440 !important;
    font-weight: 700;
    line-height: 1;
}
.header .account-dropdown .account-name {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.header .account-dropdown .dropdown-arrow {
    margin-left: 2px;
    transition: transform .22s ease;
}
.header .account-dropdown .account-dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    right: auto;
    left: 50%;
    top: calc(100% + 10px);
    width: 178px;
    min-width: 178px;
    margin: 0;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .16);
    transform: translate(-50%, -10px) scale(.98);
    transform-origin: top center;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    z-index: 1005;
}
.header .account-dropdown .account-dropdown-menu:before {
    content: "";
    position: absolute;
    top: -7px;
    right: auto;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, .95);
    border-top: 1px solid rgba(226, 232, 240, .95);
    transform: translateX(-50%) rotate(45deg);
}
.header .account-dropdown:hover .account-dropdown-menu,
.header .account-dropdown:focus-within .account-dropdown-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
    transition-delay: 0s;
}
.header .account-dropdown:hover .dropdown-arrow,
.header .account-dropdown:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}
.header .account-dropdown .dropdownmenu-wrapper {
    border: 0;
    box-shadow: none;
    padding: 0;
    width: auto !important;
    min-width: 0;
    left: auto !important;
    right: auto !important;
    position: relative;
}
.header .account-dropdown .user-elements {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
}
.header .account-dropdown .user-elements li {
    margin: 0;
}
.header .account-dropdown .user-elements a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 6px;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.header .account-dropdown .user-elements a:hover {
    background: #eef2ff;
    color: #312e81;
    transform: translateX(3px);
}

/* ---------- Mini cart dropdown ---------- */
.header .cart-dropdown {
    position: relative;
}
.header .cart-dropdown > .dropdown-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: #1f2440 !important;
}
.header .cart-dropdown > .dropdown-toggle:after {
    margin-left: 8px;
}
.header .cart-dropdown .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    right: 0;
    left: auto;
    top: calc(100% + 12px);
    width: 330px;
    min-width: 330px;
    max-width: calc(100vw - 24px);
    margin: 0;
    padding: 0;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(15, 23, 42, .18);
    transform: translateY(-10px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
    z-index: 1007;
}
.header .cart-dropdown:hover .dropdown-menu,
.header .cart-dropdown:focus-within .dropdown-menu,
.header .cart-dropdown .dropdown-menu.show {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}
.header .cart-dropdown .dropdown-menu:before {
    content: "";
    position: absolute;
    top: -7px;
    right: 28px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(226, 232, 240, .95);
    border-top: 1px solid rgba(226, 232, 240, .95);
    transform: rotate(45deg);
}
.header .cart-dropdown .dropdownmenu-wrapper {
    min-width: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
}
.header .cart-dropdown .dropdownmenu-wrapper:before,
.header .cart-dropdown .dropdownmenu-wrapper:after {
    display: none;
}
.header .dropdown-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 15px 16px 13px;
    border-bottom: 1px solid #eef2f7;
    color: #111827;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.header .dropdown-cart-products {
    max-height: 310px;
    overflow-y: auto;
    padding: 8px;
}
.header .cart-dropdown .product {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 10px 8px;
    border-bottom: 1px solid #f1f5f9;
}
.header .cart-dropdown .product:last-child {
    border-bottom: 0;
}
.header .cart-dropdown .product-details {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
}
.header .cart-dropdown .product-title {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}
.header .cart-dropdown .product-title a {
    display: -webkit-box;
    color: #111827;
    overflow: hidden;
    text-decoration: none;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.header .cart-dropdown .product-title a:hover {
    color: #4f46e5;
}
.header .cart-dropdown .cart-product-info {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.2;
}
.header .cart-dropdown .cart-product-qty {
    color: #312e81;
    font-weight: 800;
}
.header .cart-dropdown .product-image-container {
    order: -1;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    margin: 0;
}
.header .cart-dropdown .product-image {
    display: block;
    width: 58px;
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    overflow: hidden;
    background: #f8fafc;
}
.header .cart-dropdown .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header .cart-dropdown .btn-remove {
    top: -7px;
    right: -7px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 14px rgba(15,23,42,.16);
    color: #ef4444;
    opacity: 1;
}
.header .dropdown-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-top: 1px solid #eef2f7;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}
.header .dropdown-cart-total .cart-total-price {
    float: none !important;
    color: #312e81;
    font-size: 15px;
}
.header .dropdown-cart-action {
    padding: 0 16px 16px;
    margin: 0;
}
.header .dropdown-cart-action .btn {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg,#4f46e5,#7c3aed);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 12px 24px rgba(79,70,229,.24);
}
.header .mini-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 26px 18px;
    text-align: center;
}
.header .mini-cart-empty i {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.header .mini-cart-empty strong {
    color: #111827;
    font-size: 14px;
    font-weight: 800;
}
.header .mini-cart-empty span {
    margin-top: 5px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.45;
}

/* ---------- Bottom nav (gradient) ---------- */
.header .header-bottom {
    background: linear-gradient(150deg, #111827 0%, #1f2440 55%, #312e81 100%) !important;
}
.header .header-bottom .main-nav .menu > li > a {
    color: #e5e7eb !important;
    font-weight: 600;
    background-color: transparent !important;
}
.header .header-bottom .main-nav .menu > li:hover > a,
.header .header-bottom .main-nav .menu > li.active > a {
    color: #fff !important;
}

/* animated underline accent on nav items */
.header .header-bottom .main-nav .menu > li {
    position: relative;
}
.header .header-bottom .main-nav .menu > li::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #818cf8, #c084fc);
    transform: translateX(-50%);
    transition: width .25s ease;
}
.header .header-bottom .main-nav .menu > li:hover::after,
.header .header-bottom .main-nav .menu > li.active::after {
    width: 60%;
}

/* sticky-state logo sits on the gradient — give the jpeg a clean white chip */
.header .header-bottom .logo img {
    background: #fff;
    padding: 4px 8px;
    border-radius: 8px;
}

/* ---------- Sticky state: user / cart / search icons moved into the
   gradient bar by the sticky JS — force them white so they stay visible ---------- */
.header .header-bottom .header-icon,
.header .header-bottom .account-dropdown .account-toggle,
.header .header-bottom .cart-dropdown > a,
.header .header-bottom .cart-dropdown .dropdown-toggle,
.header .header-bottom .search-toggle {
    color: #fff !important;
}
.header .header-bottom .icon-user-2::before,
.header .header-bottom .icon-shopping-cart::before,
.header .header-bottom .icon-search-3::before,
.header .header-bottom .search-toggle::before {
    color: #fff !important;
}
.header .header-bottom .header-icon:hover,
.header .header-bottom .account-dropdown .account-toggle:hover,
.header .header-bottom .cart-dropdown > a:hover {
    color: #a5b4fc !important;
}
.header .header-bottom .cart-count.badge-circle {
    background: linear-gradient(135deg, #ec4899, #d946ef) !important;
    color: #fff !important;
}
/* caret / dropdown arrows on the gradient bar */
.header .header-bottom .dropdown-arrow::after,
.header .header-bottom .dropdown-toggle::after {
    color: #fff !important;
    border-top-color: #fff !important;
}
/* moved search popup icon spacing + vertical alignment */
.header .header-bottom .header-search.header-search-popup {
    margin-right: 12px;
    min-width: 44px;
    min-height: 44px;
    overflow: visible;
}
.header .header-bottom .header-search.header-search-popup.show {
    width: 320px;
}
.header .header-bottom .header-search.header-search-popup.show .header-search-wrapper {
    display: flex !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 320px;
    height: 42px;
    margin: 0;
    border: 0;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .18);
    overflow: hidden;
    z-index: 1010;
}
.header .header-bottom .header-search.header-search-popup.show .form-control {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 46px 0 18px;
    border: 0;
    border-radius: 30px;
    background: #fff;
    font-size: 14px;
}
.header .header-bottom .header-search.header-search-popup.show .header-search-wrapper .btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 44px;
    min-width: 44px;
    height: 42px;
    border: 0;
    background: #f3f4f6;
}
.header .header-bottom .header-search.header-search-popup.show .search-response-panel {
    top: calc(100% + 58px);
    right: 0;
    left: auto;
    width: 320px;
    max-height: 330px;
    border-radius: 8px;
    z-index: 1009;
}
.header .header-bottom .header-search.header-search-popup.show .search-response-panel:before {
    left: auto;
    right: 28px;
}
.header .header-bottom .cart-dropdown,
.header .header-bottom .account-dropdown,
.header .header-bottom .header-icon {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}
.header .header-bottom .header-icon i {
    margin-right: 5px;
}
.header .header-bottom .account-dropdown {
    margin-right: 12px;
}
.header .header-bottom .account-dropdown .account-dropdown-menu {
    top: calc(100% + 14px);
}

@media (max-width: 991px) {
    .header .search-response-panel {
        left: 0;
        right: 0;
        top: 100%;
        width: auto;
        max-height: 70vh;
        border-radius: 8px;
    }
    .header .search-response-panel:before {
        display: none;
    }
}

@media (max-width: 575px) {
    .header .search-response-panel {
        left: 10px;
        right: 10px;
        padding: 6px;
    }
    .header .search-result-item {
        min-height: 66px;
        gap: 10px;
        padding: 8px;
    }
    .header .search-result-img {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }
    .header .search-result-name {
        font-size: 13px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .header .header-bottom .header-search.header-search-popup.show,
    .header .header-bottom .header-search.header-search-popup.show .header-search-wrapper,
    .header .header-bottom .header-search.header-search-popup.show .search-response-panel {
        width: calc(100vw - 24px);
    }
    .header .header-bottom .header-search.header-search-popup.show {
        position: static;
    }
    .header .header-bottom .header-search.header-search-popup.show .header-search-wrapper {
        left: 12px;
        right: auto;
    }
    .header .header-bottom .header-search.header-search-popup.show .search-response-panel {
        left: 12px;
        right: auto;
    }
    .header .cart-dropdown .dropdown-menu {
        right: -10px;
        width: calc(100vw - 20px);
        min-width: 0;
    }
    .header .cart-dropdown .dropdown-menu:before {
        right: 22px;
    }
    .header .dropdown-cart-products {
        max-height: 58vh;
    }
}

/* ============================================================
   Gradient Footer Theme (same palette as header / login panel)
   ============================================================ */
.footer {
    background: linear-gradient(150deg, #111827 0%, #1f2440 55%, #312e81 100%) !important;
    color: #9ca3af;
}
.footer .footer-middle {
    background: transparent !important;
    border-bottom: none !important;
    padding: 48px 0 28px;
}

/* --- brand strip --- */
.footer .footer-brandbar {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 26px 0;
}
.footer .footer-brandbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer .footer-brandbar h3 {
    color: #fff;
    font-weight: 800;
    margin: 0;
    font-size: 24px;
    letter-spacing: -.5px;
}
.footer .footer-brandbar h3 span { color: #818cf8; }
.footer .footer-brandbar p {
    margin: 2px 0 0;
    font-size: 13px;
    color: #9ca3af;
}
.fb-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #e5e7eb !important;
    font-size: 13px;
    font-weight: 600;
    margin-left: 10px;
    transition: background .2s, transform .15s;
}
.fb-chip:first-child { margin-left: 0; }
.fb-chip:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff !important;
    transform: translateY(-1px);
    text-decoration: none;
}
.fb-chip i { color: #a5b4fc; }
.fb-chip:hover i { color: #fff; }

/* --- widgets / links --- */
.footer .widget-title {
    color: #fff !important;
    font-weight: 700;
    letter-spacing: .5px;
    position: relative;
    padding-bottom: 10px !important;
    margin-bottom: 16px !important;
}
.footer .widget-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #818cf8, #c084fc);
}
.footer .links li a,
.footer .contact-info li a {
    color: #9ca3af !important;
    transition: color .2s, padding-left .2s;
}
.footer .links li a:hover,
.footer .contact-info li a:hover {
    color: #a5b4fc !important;
    padding-left: 6px;
    text-decoration: none;
}

/* --- newsletter --- */
.footer .newsletter-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 40px;
    padding: 5px;
}
.footer .newsletter-group .form-control {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    height: 44px;
    padding-left: 18px;
    font-size: 13.5px;
}
.footer .newsletter-group .form-control::placeholder { color: rgba(255, 255, 255, .45); }
.footer .newsletter-group .btn-subscribe {
    border: none;
    border-radius: 30px !important;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .8px;
    padding: 0 22px;
    height: 44px;
    cursor: pointer;
    transition: transform .15s, opacity .2s;
}
.footer .newsletter-group .btn-subscribe:hover { transform: translateY(-1px); opacity: .95; }

/* --- social icons --- */
.footer .footer-middle .social-icons { margin-top: 20px; }
.footer .footer-middle .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    margin-right: 10px;
    transition: background .2s, transform .15s;
}
.footer .footer-middle .social-icon:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    transform: translateY(-2px);
}

/* --- bottom bar --- */
.footer .footer-bottom {
    background: rgba(0, 0, 0, .28) !important;
    border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer .footer-copyright {
    color: #9ca3af !important;
    font-size: 13px;
}
.footer .footer-payments {
    background: #fff;
    border-radius: 10px;
    padding: 6px 10px !important;
    margin: 12px 0;
}

/* --- scroll-top button --- */
#scroll-top {
    background: linear-gradient(135deg, #4f46e5, #7c3aed) !important;
    color: #fff !important;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .footer .footer-brandbar .container { justify-content: center; text-align: center; }
    .fb-chip { margin-left: 0; }
}
