:root {
    --primary-color: #034EA2;
    --bs--primary-color: #034EA2;
}

body {
    font-family: Segoe UI, Tahoma
}

body::-webkit-scrollbar {
    display: none;
}

.nav-top {
    position: relative;
}


.topbar {
    background: #0b3c7a;
    color: #fff;
    font-size: 14px
}

.btn-b {
    background-color: #034EA2;
    color: #fff;
    text-align: center;
}

.text-b {
    color: #034EA2;
}

.hero img {
    max-width: 100%
}

.brand-box img {
    height: 50px;
    object-fit: contain
}

.product-card img {
    height: 160px;
    object-fit: contain
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px
}

.price {
    color: #0b3c7a;
    font-weight: 600
}

.btn-cart {
    font-size: 14px
}



.slider-wrapper,
.tmt-slider {

    width: 100%;

}

@media (max-width: 992px) {
    .topbar {
        display: none;
    }
}

.slider {
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.brand-card {
    min-width: 180px;
    height: 160px;
    background: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.brand-card img {
    max-width: 100%;
    height: 80px;
    object-fit: contain;
}

.mobile {
    display: none;
}

.pc {
    display: block;
}

@media (max-width: 760px) {
    .mobile {
        display: block;
    }

    .pc {
        display: none;
    }

    .m-p {
        font-size: 12px;
    }
}




.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.hero-left {
    background: linear-gradient(120deg, #f6c343 85%, transparent 85%);
    padding: 60px;
    height: 100%;
}

.hero-left h1 {
    color: #0a4fa3;
    font-weight: 700;
}

.hero-left h2 {
    font-weight: 700;
}

.hero-tag {
    background: #9b1c1c;
    color: #fff;
    padding: 6px 12px;
    display: inline-block;
    margin: 15px 0;
    font-size: 14px;
}

.hero-right {
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slash-blue {
    position: absolute;
    left: 40px;
    top: 0;
    width: 30px;
    height: 100%;
    background: #0a4fa3;
    transform: skewX(-24deg);
}

.slash-red {
    position: absolute;
    left: 68px;
    top: 0;
    width: 25px;
    height: 100%;
    background: #b11212;
    transform: skewX(-24deg);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-dots span {
    height: 10px;
    width: 10px;
    background: #c4a67f;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    opacity: 0.5;
}

.slider-dots span.active {
    opacity: 1;
}

.arrow {
    position: absolute;
    bottom: 20px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.arrow.left {
    left: 600px
}

.arrow.right {
    right: 600px
}



.badge img {
    height: 16px;
    width: 32px;
    object-fit: contain;
    padding: 2px 0;
    margin-right: 8px;
}

.img-product {
    height: 180px;
    object-fit: contain;
}

li {
    padding: 3px;
}

.list-unstyled a {
    color: #cfd8e3;
    text-decoration: none;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: rgb(255, 255, 255);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(1, 81, 157, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}


@media (max-width: 768px) {
    .topbar {
        font-size: 10px;
        text-align: center;
    }
}

























/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #000;
    background-color: #fff;
}

/* Top Banner */
.top-banner {
    background-color: #034ea2;
    color: white;
    padding: 10px 0;
    font-size: 16px;
}

.top-banner i {
    margin-right: 8px;
}

.quote-btn {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.quote-btn:hover {
    text-decoration: underline;
}

/* Main Header */
.main-header {
    background-color: white;
    border-bottom: 1px solid #eee;
}

.logo {
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #034ea2 0%, #0668d4 100%);
    border-radius: 8px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #034ea2;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: -0.32px;
}

.search-container {
    position: relative;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    background-color: #ededed;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-size: 17px;
    color: #404040;
}

.search-input:focus {
    outline: none;
    background-color: #e5e5e5;
}

.search-btn {
    background-color: #034ea2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #023d82;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-item i {
    font-size: 26px;
    color: #1C274C;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #034ea2;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
}

.header-title {
    font-weight: 600;
    font-size: 16px;
}

.header-subtitle {
    color: #034ea2;
    font-size: 14px;
}

/* Navigation */
.main-nav {
    background-color: #f7f7f7;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #034ea2;
}

.contact-info {
    font-size: 16px;
}

.contact-info i {
    margin-right: 8px;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    min-height: 600px;
}

/* Sidebar Filters */
.filter-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: sticky;
    top: 20px;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #034ea2;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-heading {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-range {
    padding: 10px 0;
}

.form-range {
    width: 100%;
}

.price-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input {
    border: 1px solid #979797;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #034ea2;
    border-color: #034ea2;
}

.form-check-label {
    font-size: 16px;
    cursor: pointer;
    color: #000;
}

.apply-btn {
    width: 100%;
    background-color: #034ea2;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.apply-btn:hover {
    background-color: #023d82;
}

/* Products */
.products-header {
    margin-bottom: 30px;
}

.products-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.product-card {
    background-color: white;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 2px;
    background-color: #fff;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-standard {
    color: #034ea2;
    font-size: 12px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 48px;
}

.product-category {
    font-size: 12px;
    color: #5d5d5d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-price-section {
    margin-top: auto;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #034ea2;
}

.price-unit {
    font-size: 13px;
    color: #5d5d5d;
}

.add-to-cart-btn {
    width: 100%;
    background-color: #034ea2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.add-to-cart-btn:hover {
    background-color: #023d82;
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Footer */
.main-footer {
    background-color: #082c54;
    color: white;
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: white;
    font-size: 20px;
}

.footer-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #034ea2;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.main-footer h5 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ccc;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-contact i {
    margin-right: 8px;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {

    .top-banner .col-auto,
    .top-banner .col {
        font-size: 12px;
    }

    .logo-text {
        font-size: 14px;
    }

    .search-container {
        flex-direction: column;
    }

    .header-item {
        font-size: 12px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-info {
        font-size: 12px;
        margin-top: 10px;
    }

    .filter-section {
        margin-bottom: 30px;
    }

    .product-card {
        margin-bottom: 20px;
    }

    .main-footer .col-md-2,
    .main-footer .col-md-4 {
        margin-bottom: 30px;
    }

}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 50px;
    font-size: 18px;
    color: #666;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 16px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #034ea2;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease-out;
}

.toast-notification i {
    font-size: 20px;
}

.toast-notification.hide {
    animation: slideOut 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.qty-box {
    border: 2px solid #0d6efd;
    border-radius: 6px;
    width: 140px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    font-size: 18px;
    font-weight: 500;
}

.qty-btn {
    cursor: pointer;
    font-size: 22px;
    color: #0d6efd;
}

.weight-btn {
    border: 2px dashed #adb5bd;
    border-radius: 6px;
    padding: 6px 16px;
    background: #fff;
    cursor: pointer;
}

.bg-b {
    background-color: #034EA2;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #6c757d;
}


.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 5px;
    width: 90px;
    justify-content: space-between;
    padding: 4px 8px;
}

.qty-control span {
    cursor: pointer;
    font-weight: 600;
}

.product-img {
    width: 40px;
    height: auto;
}

.remove-btn {
    cursor: pointer;
    font-size: 18px;
}

.summary-box {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 6px;
}

.summary-box h6 {
    font-weight: 600;
}


















.sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.sidebar-item {
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.sidebar-item.active {
    background: #eaf2ff;
    color: #0d6efd;
    font-weight: 500;
}

.order-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.order-img {
    width: 50px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.card {
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card-box {
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.product-img {
    width: 70px;
}

.timeline {
    position: relative;
    margin-left: 10px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #adb5bd;
    background: #fff;
}

.timeline-item.active .timeline-dot {
    background: #28a745;
    border-color: #28a745;
}

.download-btn {
    background: #eef6ff;
    border: 1px solid #0d6efd;
    color: #0d6efd;
}


.content-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.address-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    height: 100%;
}

.address-actions {
    position: absolute;
    top: 10px;
    right: 10px;
}

.address-actions i {
    cursor: pointer;
    margin-left: 8px;
}

.form-control {
    background: #f8f9fa;
}

.section-title {
    font-weight: 600;
    margin-bottom: 15px;
}


.card-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.timeline {
    position: relative;
    margin-left: 20px;
}

/* vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 0px;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 24px;
    color: #6c757d;
    font-size: 14px;
}

/* dot */
.timeline-dot {
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: #e0e0e0;
    border-radius: 50%;
    z-index: 1;
}

/* active steps */
.timeline-item.active {
    color: #212529;
}

.timeline-item.active .timeline-dot {
    background: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.2);
}

/* last item spacing fix */
.timeline-item:last-child {
    margin-bottom: 0;
}




.filter-section {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
}

.filter-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.filter-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.apply-btn {
    width: 100%;
    background: #034EA2;
    color: #fff;
    border: none;
    padding: 8px;
    border-radius: 6px;
}

/* PRODUCT CARD */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

.sidebar-item.active {
    background-color: #f1f3f5;
    font-weight: 600;
}

.content-section {
    display: none;
}

.no-orders {
    display: none;
}

.no-cart {
    display: none;
}

.content {
    padding: 10px;
}

.product-card {
    border-radius: 12px;
    padding: 12px;
    height: 420px;
}

.product-card img {
    height: 160px;
    /* object-fit: cover; */
    border-radius: 8px;
}

.product-title {
    min-height: 36px;
}

.desc-text {
    min-height: 40px;
    line-height: 1.3;
    overflow: hidden;
}

.price {
    min-height: 32px;
    font-weight: 600;
}

.btn:hover {
    border: 1px solid #034EA2;
    color: #034EA2;
}

.text-custom {
    color: #034EA2;
}