body {
    background-color: #f5f5f5;
}
/*============== navbar  ==================*/
.nav-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: #FFFFFF;
    border-bottom: 1px solid #dddddd;
}
.navbar-brand {
    padding-right: 2rem;
}
.navbar-brand img {
    max-height: 56px;
    height: auto;
    width: auto;
    max-width: 100%;
}

.nav-menu > .nav-item:not(:last-child) {
    margin-right: 1rem;
}
.nav-menu > .nav-item > .nav-link {
    color: var(--brand-dark);
}

.nav-menu > .nav-item > .nav-link:hover {
    color: var(--brand-primary);
}

.main {
    min-height: 56.25vh;
}


.offcanvas {
    z-index: 1052;
}
.offcanvas-backdrop {
    z-index: 1051;
}
/*=========== Section ==================*/
.section-with-banner {
    position: relative;
}
.section-bg-img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-content {
    position: relative;
    z-index: 1;
}

/*================= section-card ================*/
.section-card {
    border-radius: 0;
    background-color: #FFFFFF;
    border-top: 3px solid var(--brand-secondary);
}
.section-card >* {
    border-radius: 0;
    background-color: transparent;
}
.section-card .card-header {
    padding-top: .75rem;
    padding-bottom: .75rem;
    border-bottom: none;
}
.section-card .card-title {
    font-size: 22px;
    font-weight: 600;
    display: flex;
    display: -webkit-flex;
    margin: 0;
    align-items: center;
}
.section-card .card-title .card-title-icon {
    padding-right: .75rem;
}



/*=========== section-title =============*/
.section-title-inside {
    display: flex;
    display: -webkit-flex;
    margin-bottom: 1rem;
}
.section-title-inside::after {
    position: relative;
    content: '';
    display: block;
    flex-grow: 1;
    height: 2px;
    background-color: var(--brand-secondary);
    align-self: center;
    -webkit-align-self: center;
    margin-left: 1rem;
}

.block-title {
    position: relative;
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid #dddddd;
}
.block-title::before {
    content: '';
    position: absolute;
    height: 3px;
    width: 100%;
    max-width: 80px;
    background-color: var(--brand-primary);
    bottom: -2px;
}

.section-divider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 120px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.section-divider::before {
    content: '';
    height: 12px;
    width: 12px;
    border: 2px solid var(--brand-primary);
    transform: rotate(45deg);
}
.section-divider::after {
    content: '';
    width: 100%;
    flex-grow: 1;
    height: 2px;
    background-color: var(--brand-primary);
}

/*========= icon-box ===========*/
.icon-box {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--brand-border);
}
.circle-group-item {
    border-color: var(--brand-border);
}
.circle-group-item:hover,
.circle-group-item:hover .icon-box {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

/*========= Auth Form ========*/
.auth-form {
    /*max-width: 500px;*/
    background-color: rgba(255, 255, 255, .5);
    background-image: linear-gradient(rgba(255, 255, 255, .1) 10%, #ffffff, #ffffff);
    backdrop-filter: blur(15px);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    padding: 1.5rem;
    border-radius: 1rem;
}
@media screen and (min-width: 1200px) {
    .auth-form {
        padding: 3rem;
    }
}

.auth-form .input-group {
    background-color: #f5f5f5;
    border: 1px solid #eeeeec;
    border-radius: 8px;
}

.auth-form .form-control,
.auth-form .form-select {
    border-color: #dddddd;
    padding: .75rem 1.5rem;
}

.auth-form .form-control.form-control-sm,
.auth-form .form-select.form-select-sm {
    padding: .45rem 1rem;
    font-size: 14px;
}


.auth-form .form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: #dddddd;
}
.auth-form .input-group .form-control {
    border-left: 0;
    background-color: transparent;
    border: none;
}

.auth-form .input-group-text {
    background-color: transparent;
    border: none;
}

.auth-input-label {
    font-size: 14px;
    margin-bottom: 8px;
}


.auth-form .form-control::placeholder,
.auth-form .form-select {
    color: var(--brand-muted);
}



/*========== Image ===============*/
.page-content-with-bg {
    position: relative;
}
.page-bg-covered-image {
    position: fixed;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    z-index: 0;
}
.img-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img-fit-center {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.content-center {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
}

.register-btn {
    position: relative;
    font-size: 14px;
    padding: .5rem 1.5rem;
    background-color: var(--brand-primary);
    color: #ffffff;
}

.register-btn:hover {
    background-color: var(--brand-primary-strong);
    color: #ffffff;
}


/*======= flex-content-center ==========*/
.flex-content-center {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    --webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}

/*========== search-input-group ============*/
.search-input-group {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    display: flex;
    display: -webkit-flex;
    padding: .2rem;
    -webkit-border-radius: 50rem;
    border-radius: 50rem;
}

.search-input-group * {
    border-radius: 0;
    border: none;
    font-size: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
}

@media screen and (min-width: 992px) {
    .search-input-group.search-input-group-lg {
        padding: .25rem;
    }
    .search-input-group.search-input-group-lg * {
        font-size: 17px;
        padding-top: 9px;
        padding-bottom: 9px;
    }
}

.search-input-group *:focus {
    box-shadow: none;
    outline: none;
}

.search-input-group *:first-child {
    border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem;
    padding-left: 1.25rem;
}
.search-input-group *:last-child {
    border-top-right-radius: 50rem;
    border-bottom-right-radius: 50rem;
}


.search-input-group .form-select {
    width: auto;
}
.search-input-group input.form-control {
    flex-grow: 1;
    -webkit-flex-grow: 1;
    padding-left: .25rem;
    padding-right: .25rem;
}
.search-input-group .btn {
    white-space: nowrap;
    background-color: var(--brand-primary);
    color: #FFFFFF;
    -webkit-border-radius: 50rem;
    border-radius: 50rem;
}
.search-input-group .btn:hover {
    background-color: var(--brand-primary-strong);
}



/*============== hero-banner ==============*/
.hero-banner {
    background-color: var(--brand-dark);
    --bs-aspect-ratio: 33.333333%;
}

@media screen and (max-width: 991px) {
    .hero-banner {
        --bs-aspect-ratio: 56.25%;
    }
}
.ratio-4x1 {
    --bs-aspect-ratio: 25%;
}

@media screen and (max-width: 767px) {
    .hero-banner.ratio-4x1 {
        --bs-aspect-ratio: 42.1246%;
    }
}

.hero-banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(135deg, rgba(77, 31, 0, .7) 25%, rgba(255, 255, 0, .001));
}
/*.hero-banner >* {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/
/*.hero-banner:before {*/
/*    content: "";*/
/*    display: block;*/
/*    padding-top: 56.25%;*/
/*}*/

.breadcrumb {
    margin-bottom: 0;
}

/*============== product-card ===================*/
.product-card {
    background-color: #FFFFFF;
    border-color: #eeeeee;
    padding: 1rem;
    height: 100%;
    transition: all .3s ease;
}
.product-list-card {
    transition: all .3s ease;
}
.product-card:hover,
.product-list-card:hover {
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .05);
}
.product-card >*{
    background-color: transparent;
    border: none;
    /*padding: .5rem 1rem;*/
    padding: 0;
}

.product-card > .card-body {
    padding-top: 1rem;
    padding-bottom: 1rem;
}


.product-card .card-header {
    --bs-aspect-ratio: 75%;
    /*background-color: #fafafa;*/
}
.product-card .product-card-img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.product-card-category {
    font-size: 14px;
    color: #6c757d;
    display: inline-block;
    margin-bottom: 8px;
}

.product-card-title {
    position: relative;
    display: inline-block;
    color: var(--brand-dark);
    margin-bottom: .75rem;
    font-size: 16px;
    font-weight: 500;
}
.product-card-title:hover {
    color: var(--brand-primary);
}


.product-card-price, .product-card-quantity {
    display: inline-block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 4px;
}
.product-card-country-origin {
    font-size: 13px;
    color: var(--brand-muted);
}
.product-card .card-footer {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
}

.product-card-contact-btn {
    display: inline-block;
    padding: 3px 8px;
    border: none;
    background-color: var(--brand-primary);
    color: #ffffff;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all .3s ease;
}
.product-card-contact-btn:hover {
    color: #ffffff;
    background-color: var(--brand-primary-strong);
}


/*============ aside-card ===============*/
.aside-card {
    background-color: #FFFFFF;
    border-radius: 0;
    border: 1px solid var(--brand-border);
}

.aside-card >* {
    background-color: transparent;
    border-radius: 0;
    border-color: #eeeeee;
}
.aside-card .card-header {
    padding-top: .8rem;
    padding-bottom: .8rem;
}
.aside-card .card-body {
    padding: 0;
}
.aside-card .card-title {
    font-size: 20px;
    font-weight: 500;
    display: flex;
    display: -webkit-flex;
    margin: 0;
    align-items: center;
}
.aside-card .card-title .card-title-icon {
    padding-right: .75rem;
}

.aside-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aside-link {
    display: flex;
    display: -webkit-flex;
    padding: .75rem 1rem;
    color: var(--brand-dark);
    font-size: 15px;
}
.aside-link:hover,
.aside-link.active {
    background-color: rgba(0, 0, 0, .025);
    color: var(--brand-primary);
}

.aside-item:hover .dropdown-menu {
    display: block;
}
.dropdown-menu.aside-dropdown-menu {
    left: 100%;
    top: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 1rem;
    min-width: 280px;
}
.aside-dropdown-link {
    color: var(--brand-dark);
    font-size: 14px;
    padding: .5rem 0;
    display: inline-block;
}
.aside-dropdown-link:hover,
.aside-dropdown-link.active {
    color: var(--brand-primary);
}

/*================ aside-on-responsive ==================*/
.mw-custom-off-canvas-toggler {
    display: none;
}
@media screen and (max-width: 1199px) {
    .mw-custom-off-canvas {
        position: fixed;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: #FFFFFF;
        top: 0;
        left: -320px;
        z-index: 1100;
        overflow: auto;
        transition: all .3s ease;
    }
    .mw-custom-off-canvas.show {
        left: 0;
    }
    .mw-custom-off-canvas::before {
        background-color: rgba(0, 0, 0, .2);
        content: '';
        position: fixed;
        top: 0;
        right: 0;
        width: 0;
        height: 100vh;
        z-index: -2;
        transition: width .3s ease;
    }
    .mw-custom-off-canvas.show::before {
        width: calc(100vw - 320px);
    }
    .mw-custom-off-canvas-toggler {
        display: inline-block;
    }

}

/*=========== RFQ ============*/
.rfq-banner-content {
    background-image: linear-gradient(160deg, rgba(0, 0, 0, .9) 25%, rgba(255, 255, 255, .1));
}

.rfq-form-group {
    border-radius: .5rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.rfq-button {
    background-image: linear-gradient(160deg, var(--brand-primary-strong) 25%, var(--brand-primary));
    border: none;
    border-radius: .25rem;
    color: #ffffff;
}
.rfq-button:hover {
    color: #ffffff;
}


.rfq-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    position: relative;
}

.rfq-card:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    /*transform: translateY(-4px);*/
}

.rfq-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 0.25rem;
}

.rfq-title:hover {
    color: var(--brand-primary);
}

.rfq-meta {
    color: #6c757d;
    font-size: 0.9rem;
}

.rfq-meta i {
    color: #adb5bd;
    margin-right: 4px;
}

.rfq-footer {
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rfq-footer .badge {
    font-weight: 500;
    border-radius: 10px;
    font-size: 0.8rem;
}



.rfq-quantity {
    background-color: #f8f9fb;
    border-radius: 8px;
    padding: 6px 10px;
    display: inline-block;
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
}



/*================ Footer Css =====================*/
.footer {
    background: linear-gradient(135deg, var(--full-black) 0%, var(--brand-dark) 100%);
    color: #e5e7eb;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    z-index: 1;
    opacity: 0.5;
}
.footer * {
    position: relative;
    z-index: 2;
}
.footer a {
    color: var(--brand-white);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}
.footer a:hover {
    color: #ffffff;
    transform: translateX(5px);
}
.footer-logo {
    max-width: 160px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}
.footer-logo:hover {
    transform: scale(1.05);
}
.footer h5 {
    font-weight: 600;
    color: #ffffff;
    position: relative;
    margin-bottom: 28px;
}
.footer h5::after {
    content: '';
    position: absolute;
    bottom: -.8rem;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-primary);
}
.newsletter-form {
    position: relative;
}
.newsletter-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--brand-primary);
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}
.newsletter-input:focus {
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}
.newsletter-input::placeholder {
    color: var(--bs-light);
}
.btn-newsletter {
    background-color: var(--brand-primary);
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-newsletter:hover {
    background-color: var(--brand-primary);
    transform: translateY(-2px);
}
.social-icons a {
    font-size: 1.8rem;
    margin-right: 20px;
    color: var(--bs-light);
    transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: var(--bs-light);
}
.footer-bottom a:hover {
    color: #ffffff;
    transform: none;
}
.list-unstyled li {
    margin-bottom: 10px;
}
@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer-logo {
        max-width: 120px;
    }
    .social-icons a {
        font-size: 1.5rem;
        margin-right: 15px;
    }
}

/*========== theme-block =================*/
.theme-block {
    background-color: #FFFFFF;
    padding: 1rem;
    border: 1px solid #eeeeee;
}
@media screen and (min-width: 1200px) {
    .theme-block {
        padding: 1.5rem;
    }
}

/*========= Product Details =================*/
.details-image-previewer {
    background-color: #f5f5f5;
}
.product-details-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.details-image-previewer {
    touch-action: none !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Prevent text selection during zoom */
.product-details-img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.details-image-previewer:hover .product-details-img {
    visibility: hidden;
}

.secondary-image-item {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
    -webkit-flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--brand-border);
    border-radius: 4px;
}

@media screen and (min-width: 1200px) {
    .details-product-title {
        font-size: 28px;
        font-weight: 500;
    }
}

/*========== Owl Carousel ==============*/
.owl-between {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.owl-nav-item {
    width: 40px;
}
.owl-content {
    width: calc(100% - 80px);
}
.owl-nav-item button {
    background-color: transparent;
    border: none;
}


/*============= pagination ===================*/
.pagination {
    flex-wrap: wrap;
}
.page-item {
    padding: 4px;
}
.page-link {
    min-width: 40px;
    height: 40px;
    font-size: 13px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    color: #222222;
}

.page-item:hover .page-link,
.page-item.active .page-link {
    background-color: var(--brand-primary);
    color: #FFFFFF;
}

.page-item:first-child  .page-link,
.page-item:last-child  .page-link {
    border: none;
    background-color: transparent;
}


.table-bordered td {
    border-color: #eeeeee;
}



/* Hero Section */
@media screen and (min-width: 1200px) {
    .banner-rounded-bottom {
        border-bottom-left-radius: 5rem;
        border-bottom-right-radius: 5rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
}
.about-section img {
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Mission / Vision Cards */
.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats */
.stats-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.stat-item {
    margin-bottom: 20px;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}


.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20b358;
    color: #FFFFFF;
}
