   /* =========================================
   DESKTOP TOPBAR
========================================= */

.search-box-wrapper {
    position: relative;
    width: 100%;
}

.ajax-search-results {
    position: absolute;
    left: 0;
    right: 0;

    background: #fff;
    border-radius: 8px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    z-index: 99999;
    overflow: hidden;

    display: none;
}

.ajax-search-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 13px;

    background: #fff;
    border-bottom: 1px solid #f0f0f0;

    text-decoration: none;
    color: #333;

    transition: background 0.2s;
}

.ajax-search-item:hover {
    background: #f5f8fc;
    text-decoration: none;
}

.ajax-search-item img {
    width: 55px;
    height: 55px;

    object-fit: contain;
    border-radius: 6px;

    border: 1px solid #eee;
    flex-shrink: 0;
}

.ajax-search-item-info {
    min-width: 0;
    flex: 1;
}

.ajax-search-item-name {
    display: block;

    color: #333;
    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ajax-search-item-price {
    display: block;

    color: #163961;
    font-size: 12px;
    font-weight: 700;

    margin-top: 5px;
}

.ajax-search-empty {
    padding: 15px;

    color: #888;
    font-size: 13px;
    text-align: center;
}

.ajax-search-loading {
    padding: 15px;

    color: #777;
    font-size: 13px;
    text-align: center;
}
.top-header {
    display: block;
}

/* =========================================
   MOBILE SEARCH
   HIDDEN ON DESKTOP
========================================= */

.mobile-search-wrapper {
    display: none;
}

/* =========================================
   MOBILE MODE
========================================= */

@media (max-width: 767px) {

    /* Hide complete desktop topbar */

    .top-header {
        display: none !important;
    }

    /* Display search below navbar */

    .mobile-search-wrapper {
        display: block;
        background: #ffffff;
        padding: 10px 0;
        border-bottom: 1px solid #e9e9e9;
    }

    .mobile-search {
        display: flex;
        width: 100%;
        height: 42px;
    }

    .mobile-search input {
        flex: 1;
        min-width: 0;

        border: 1px solid #ddd;
        border-right: none;

        border-radius: 6px 0 0 6px;

        padding: 8px 12px;

        font-size: 13px;

        box-shadow: none;
    }

    .mobile-search input:focus {
        outline: none;
        box-shadow: none;
        border-color: #ff5e14;
    }

    .mobile-search button {
        width: 48px;

        border: none;

        background: #ff5e14;
        color: #fff;

        border-radius: 0 6px 6px 0;

        cursor: pointer;

        transition: background 0.3s ease;
    }

    .mobile-search button:hover {
        background: #e64b0a;
    }

}

/* Top Header */
.top-header {
    
    height: fit-content;
    background: linear-gradient(90deg, #1c4f7f, #1d629b, #295360);
    padding: 9px 0;
    color: #fff;
}

/* Phone */
.topbar-phone {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.topbar-phone i {
    margin-right: 6px;
}

/* Search Bar */
.topbar-search {
    width: 100%;
    height: 38px;
}

.topbar-search input {
    border: none;
    border-radius: 5px 0 0 5px;
    padding: 8px 14px;
    font-size: 13px;
    box-shadow: none;
}

.topbar-search input:focus {
    box-shadow: none;
    outline: none;
}

.topbar-search button {
    border: none;
    background: #ff5e14;
    color: #fff;
    padding: 0 18px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.topbar-search button:hover {
    background: #e64b0a;
}

/* Social Icons */
.social-icon {
    color: #fff;
    font-size: 17px;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: #ffd700;
}

/* Mobile */
@media (max-width: 767px) {

    .topbar-phone {
        font-size: 13px;
    }

    .topbar-search {
        margin: 5px auto;
    }

    .social-icon {
        margin: 0 8px;
    }

}
.navbar-collapse {
    margin-top: unset !important;
}

  .page-head_agile_info_w3l {
    background: url(../images/common-banner-2.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover;
}
.global-toast {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.global-toast.hide {
    opacity: 0;
    transform: translateX(100%);
}
   /* =========================================
   GLOBAL SESSION TOAST
========================================= */

.global-toast {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 99999;

    width: 360px;
    max-width: calc(100% - 30px);

    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 17px 18px;

    background: #ffffff;
    border-radius: 14px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);

    border-left: 4px solid #16a34a;

    animation: toastSlideIn 0.35s ease;
}

.global-toast.error {
    border-left-color: #dc2626;
}

.toast-icon {
    font-size: 22px;
    color: #16a34a;
}

.global-toast.error .toast-icon {
    color: #dc2626;
}

.toast-content {
    flex: 1;
}

.toast-content strong {
    display: block;

    font-size: 14px;
    font-weight: 700;

    color: #1f2937;
    margin-bottom: 3px;
}

.toast-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.5;

    color: #6b7280;
}

.toast-close {
    border: none;
    background: transparent;

    color: #9ca3af;
    font-size: 20px;

    cursor: pointer;
    padding: 0;
}

.toast-close:hover {
    color: #111827;
}

@keyframes toastSlideIn {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@media (max-width: 576px) {

    .global-toast {
        top: 15px;
        right: 15px;
        left: 15px;

        width: auto;
        max-width: none;
    }

}

.top-header {
    background: linear-gradient(90deg, #1c4f7f, #1d629b, #295360);
}

.gold h3 {
    font-size: 25px;
}

.gold p {
    font-size: 12px;
}

.blog_section .blog_content .blog_item {
    /*  margin-bottom: 30px;*/
    /*box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);*/
    box-shadow: 0 0 11px 0 rgba(6, 22, 58, 0.14);
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    /*  padding-top:5px;*/
    border: #eeeeee 1px solid;
    border-radius: 10px;
    /* padding:5px;*/
}

.blog_section .blog_content .blog_item:hover .blog_image img {
    transform: scale(1.1);
}

.blog_section .blog_content .blog_item .blog_image {
    overflow: hidden;
    padding: 0;
}

.blog_section .blog_content .blog_item .blog_image img {
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.blog_section .blog_content .blog_item .blog_image span i {
    position: absolute;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 45px;
    padding-top: 7px;
    text-align: center;
    right: 20px;
    top: 0;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 79%, 0 100%);
    background-color: #ff5e14;
}

.blog_section .blog_content .blog_item .blog_details {
    padding: 25px 20px 30px 20px;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a {
    color: #020d26;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 32px;
    font-weight: 400;
    transition: all 0.3s;
    text-decoration: none;
}

.blog_section .blog_content .blog_item .blog_details .blog_title h5 a:hover {
    color: #ff5e14;
}

.blog_section .blog_content .blog_item .blog_details ul {
    padding: 0 3px 10px 0;
    margin: 0;
}

.blog_section .blog_content .blog_item .blog_details ul li {
    display: inline-block;
    padding-right: 15px;
    position: relative;
    color: #7f7f7f;
}

.blog_section .blog_content .blog_item .blog_details ul li i {
    padding-right: 7px;
}

.blog_section .blog_content .blog_item .blog_details p {
    border-top: 1px solid #e5e5e5;
    margin-top: 4px;
    padding: 20px 0 4px;
}

.blog_section .blog_content .blog_item .blog_details a {
    font-size: 16px;
    display: inline-block;
    color: #ff5e14;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.blog_section .blog_content .blog_item .blog_details a:hover {
    color: #020d26;
}

.blog_section .blog_content .blog_item .blog_details a i {
    vertical-align: middle;
    font-size: 20px;
}

.blog_section .blog_content .owl-nav {
    display: block;
}

.blog_section .blog_content .owl-nav .owl-prev {
    position: absolute;
    left: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: #324089;
    transition: all 0.3s;
    color: #fff;
}

.blog_section .blog_content .owl-nav .owl-prev span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}

.blog_section .blog_content .owl-nav .owl-prev:hover {
    background: #fff;
    border-color: #324089;
    color: #324089;
}

.blog_section .blog_content .owl-nav .owl-next {
    position: absolute;
    right: -27px;
    top: 33%;
    border: 5px solid #fff;
    text-align: center;
    z-index: 5;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 0;
    background: #324089;
    color: #fff;
    transition: all 0.3s;
}

.blog_section .blog_content .owl-nav .owl-next span {
    font-size: 25px;
    margin-top: -6px;
    display: inline-block;
}

.blog_section .blog_content .owl-nav .owl-next:hover {
    background: #fff;
    border-color: #324089;
    color: #324089;
}

.owl-theme .owl-nav {
    margin: 0 !important;
}

@media only screen and (max-width: 577px) {
    .blog_section .owl-nav .owl-prev {
        left: -17px !important;
    }

    .blog_section .owl-nav .owl-next {
        right: -17px !important;
    }
}
.fashion {
    background: #ffffff;
}

.fashion-1 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}
.essential img {
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 10px;
}
.pocket img {
    border-radius: 10px;
}
.banner2 {
    margin-top: 10px;
    margin-bottom: 30px;
}
.gift-of-gold img {
    border-radius: 5px;
    margin-top: 10px;
}
.shop img {
    margin-bottom: 10px;
}
.fashion {
    background: #ffffff;
}

.fashion-1 {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}