/* ==================================================
   ThreeVeeAsso - Industrial Products & Engineering Solutions
   assets/css/style.css
================================================== */

:root {
    --primary-orange: #f25c05;
    --primary-orange-hover: #d94f00;
    --navy-dark: #0a1626;
    --navy-topbar: #0c1c30;
    --navy-header: #142842;
    --navy-sidebar: #193558;
    --navy-card: #1c304a;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --bg-light: #f8fafc;
    --star-yellow: #f59e0b;
    --badge-new: #10b981;
    --badge-sale: #ef4444;
    --badge-seller: #f25c05;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

/* ==================================================
   Top Bar
================================================== */
.top-bar {
    background-color: var(--navy-topbar);
    color: #94a3b8;
    font-size: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    color: #cbd5e1;
}

.top-info-item i {
    color: #94a3b8;
}

.top-tagline {
    color: #cbd5e1;
    font-weight: 500;
}

/* ==================================================
   Main Header
================================================== */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.brand-logo-img {
    width: 100px !important;
    max-width: 100px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
    transform: scale(1.03);
}

.footer-logo-img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    color: #142842;
    letter-spacing: -0.5px;
}

.brand-highlight {
    color: var(--primary-orange);
}

.search-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    height: 42px;
    border: 1px solid #cbd5e1;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding-left: 16px;
    font-size: 13px;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--primary-orange);
}

.btn-search {
    height: 42px;
    width: 48px;
    background-color: var(--primary-orange);
    color: #ffffff;
    border: none;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.btn-search:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

.header-actions .action-link {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
}

.action-icon {
    font-size: 19px;
    color: #1e293b;
}

.icon-wrap {
    position: relative;
    display: inline-flex;
}

.badge-count {
    position: absolute;
    top: -6px;
    right: -9px;
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
}

/* ==================================================
   Navigation Bar
================================================== */
.main-navbar {
    background-color: var(--navy-header);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.category-toggle-wrap {
    width: 260px;
    flex-shrink: 0;
}

.btn-category-toggle {
    width: 100%;
    background-color: var(--navy-sidebar);
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 13px 18px;
    border: none;
    border-radius: 0;
    text-align: left;
    white-space: nowrap;
}

.btn-category-toggle:hover {
    background-color: #20416b;
    color: #ffffff;
}

.btn-category-toggle.dropdown-toggle::after,
.no-arrow::after {
    display: none !important;
}

.category-navbar-dropdown {
    width: 260px;
    margin-top: 0 !important;
    border-radius: 0 0 6px 6px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18) !important;
    max-height: 480px;
    overflow-y: auto;
    z-index: 1050;
    border: 1px solid #e2e8f0;
}

.category-dropdown-item {
    font-size: 13px;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.15s ease;
    border-bottom: 1px solid #f1f5f9;
}

.category-dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--primary-orange);
    padding-left: 18px !important;
}

.cat-dropdown-icon {
    width: 18px;
    text-align: center;
    color: var(--primary-orange);
    font-size: 13px;
}

.cat-dropdown-title {
    font-size: 12.5px;
}

.cat-arrow-icon {
    font-size: 10px;
}

/* Horizontal Main Navbar Links (Never Wrap / Never Stack) */
.navbar-nav-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-grow: 1;
}

.navbar-nav-wrap::-webkit-scrollbar {
    display: none;
}

.main-nav-list {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    margin-left: 15px;
    margin-bottom: 0;
    padding-left: 0;
    gap: 2px;
    white-space: nowrap;
}

.main-nav-list .nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.main-nav-list .nav-link {
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 500;
    padding: 13px 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.main-nav-list .nav-link:hover {
    color: #ffffff;
}

.main-nav-list .nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Eliminate duplicate Bootstrap caret on dropdown toggles */
.main-nav-list .dropdown-toggle::after {
    display: none !important;
}

.nav-caret {
    font-size: 9px;
    margin-left: 5px;
    opacity: 0.85;
}

/* ==================================================
   Category Sidebar (Left Column)
================================================== */
.category-sidebar {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
}

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

.category-item {
    border-bottom: 1px solid #f1f5f9;
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9.5px 14px;
    color: #334155;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
}

.category-link .cat-icon {
    width: 22px;
    color: #64748b;
    font-size: 12px;
    text-align: center;
    margin-right: 8px;
}

.category-link .chevron-right {
    font-size: 9.5px;
    color: #cbd5e1;
    transition: transform 0.15s ease, color 0.15s ease;
}

.category-link:hover {
    background-color: #f8fafc;
    color: var(--primary-orange);
}

.category-link:hover .cat-icon {
    color: var(--primary-orange);
}

.category-link:hover .chevron-right {
    color: var(--primary-orange);
    transform: translateX(2px);
}

/* Promo Box: Download Catalogue */
.promo-box-catalogue {
    background: linear-gradient(135deg, #1c304a 0%, #15273b 100%);
    border-radius: 6px;
    padding: 18px 16px;
    color: #ffffff;
}

.promo-box-catalogue .promo-title {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.promo-box-catalogue .promo-desc {
    font-size: 11px;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.4;
}

.btn-catalogue {
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 4px;
    border: none;
    display: inline-block;
}

.btn-catalogue:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

/* Promo Box: Request a Quote */
.promo-box-quote {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px;
}

.promo-box-quote .quote-icon {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-header);
    font-size: 13px;
    margin-bottom: 10px;
}

.promo-box-quote .promo-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.promo-box-quote .promo-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.btn-quote {
    background-color: var(--navy-header);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    border: none;
}

.btn-quote:hover {
    background-color: #20416b;
    color: #ffffff;
}

/* Promo Box: Customer Support */
.promo-box-support {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px;
}

.support-icon {
    color: var(--navy-header);
    font-size: 24px;
    margin-bottom: 8px;
}

.support-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.support-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.support-info-item {
    font-size: 11.5px;
    color: #334155;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.support-info-item i {
    color: var(--navy-header);
    width: 14px;
}

/* ==================================================
   Hero Banner
================================================== */
.hero-banner {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: #0b1728;
    background-image: linear-gradient(to right, rgba(11, 23, 40, 0.92) 0%, rgba(11, 23, 40, 0.78) 45%, rgba(11, 23, 40, 0.25) 100%), url('../images/hero_banner.jpg');
    background-size: cover;
    background-position: center;
    min-height: 330px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 36px 32px;
    max-width: 520px;
}

.hero-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--primary-orange);
    display: block;
}

.hero-subtitle {
    color: #cbd5e1;
    font-size: 13.5px;
    margin-bottom: 22px;
    line-height: 1.4;
}

.hero-actions {
    display: flex;
    gap: 12px;
}

.btn-hero-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 4px;
    border: none;
    transition: background 0.15s;
}

.btn-hero-primary:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

.btn-hero-secondary {
    background-color: rgba(20, 40, 66, 0.7);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.15s;
}

.btn-hero-secondary:hover {
    background-color: rgba(20, 40, 66, 0.95);
    border-color: #ffffff;
    color: #ffffff;
}

/* ==================================================
   Feature Bar (4 Cards)
================================================== */
.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.feature-icon-wrap {
    font-size: 22px;
    color: #142842;
    flex-shrink: 0;
}

.feature-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.feature-desc {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==================================================
   Section Headers
================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0;
}

.section-view-all {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
}

.section-view-all:hover {
    color: var(--primary-orange);
}

/* ==================================================
   Category Grid Cards
================================================== */
.category-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.category-card:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.category-card-img-wrap {
    width: 100%;
    height: 105px;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-img {
    width: 100%;
    height: 105px;
    object-fit: cover;
    margin-bottom: 0;
    transition: transform 0.3s ease;
    display: block;
}

.category-card:hover .category-card-img {
    transform: scale(1.06);
}

.category-card-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    padding: 10px 8px;
    line-height: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

/* ==================================================
   Product Cards (Featured & New Arrivals)
================================================== */
.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    padding: 2px 7px;
    border-radius: 3px;
    z-index: 2;
    text-transform: capitalize;
}

.badge-best-seller {
    background-color: var(--badge-seller);
}

.badge-new {
    background-color: var(--badge-new);
}

.badge-sale {
    background-color: var(--badge-sale);
}

.btn-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 15px;
    padding: 4px;
    cursor: pointer;
    z-index: 2;
    transition: color 0.15s;
}

.btn-wishlist:hover {
    color: var(--badge-sale);
}

.product-img-wrap {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 14px;
    overflow: hidden;
    border-radius: 4px;
}

.product-img-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.35;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title:hover {
    color: var(--primary-orange);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-stars {
    color: var(--star-yellow);
    font-size: 10.5px;
}

.rating-count {
    color: #94a3b8;
    font-size: 11px;
}

.product-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

.old-price {
    font-size: 11.5px;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-add-cart {
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 7.5px 12px;
    border-radius: 4px;
    border: none;
    width: 100%;
    margin-top: auto;
    transition: background 0.15s;
}

.btn-add-cart:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

/* ==================================================
   Popular Brands
================================================== */
.brands-wrap {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px 24px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-item img {
    max-height: 38px;
    max-width: 110px;
    object-fit: contain;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.02));
}

/* ==================================================
   Engineering Solutions Banner
================================================== */
.solutions-banner {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: #0a1829;
    background-image: url('../images/solutions_bg.svg');
    background-size: cover;
    background-position: center;
    padding: 36px 30px;
    color: #ffffff;
}

.solutions-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.solutions-subtitle {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 24px;
}

.solution-card {
    background: #ffffff;
    border-radius: 6px;
    padding: 22px 20px;
    color: var(--text-dark);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-icon-wrap {
    width: 42px;
    height: 42px;
    background-color: var(--navy-header);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    margin-bottom: 14px;
}

.solution-card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.solution-card-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.45;
}

.solution-link {
    color: var(--primary-orange);
    font-size: 12px;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.solution-link:hover {
    color: var(--primary-orange-hover);
}

/* ==================================================
   Why Choose ThreeVeeAsso
================================================== */
.why-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    height: 100%;
}

.why-icon-wrap {
    width: 42px;
    height: 42px;
    border: 1.5px solid #fed7aa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 18px;
    flex-shrink: 0;
}

.why-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.why-desc {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==================================================
   Bulk Quantity CTA Banner
================================================== */
.bulk-banner {
    background-color: var(--navy-header);
    border: 1.5px solid var(--primary-orange);
    border-radius: 6px;
    padding: 24px 28px;
    position: relative;
    overflow: hidden;
}

.bulk-icon-wrap {
    font-size: 34px;
    color: var(--primary-orange);
    flex-shrink: 0;
}

.bulk-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
}

.bulk-desc {
    color: #cbd5e1;
    font-size: 12px;
    margin-bottom: 12px;
}

.btn-bulk-quote {
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 4px;
    border: none;
    display: inline-block;
}

.btn-bulk-quote:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

.bulk-img-wrap img {
    max-height: 110px;
    object-fit: contain;
}

/* ==================================================
   Testimonials
================================================== */
.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 20px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-quote {
    font-size: 11.5px;
    color: #334155;
    line-height: 1.5;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: var(--star-yellow);
    font-size: 11px;
    margin-bottom: 6px;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.testimonial-role {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==================================================
   Newsletter Section
================================================== */
.newsletter-section {
    background-color: #0e1e32;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-icon-wrap {
    font-size: 32px;
}

.newsletter-title {
    font-size: 16px;
    font-weight: 700;
}

.newsletter-subtitle {
    font-size: 12px;
}

.newsletter-input {
    height: 42px;
    border: none;
    border-radius: 4px 0 0 4px;
    padding-left: 16px;
    font-size: 13px;
}

.newsletter-input:focus {
    box-shadow: none;
}

.btn-newsletter {
    background-color: var(--primary-orange);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 0 22px;
    border-radius: 0 4px 4px 0;
    border: none;
}

.btn-newsletter:hover {
    background-color: var(--primary-orange-hover);
    color: #ffffff;
}

/* ==================================================
   Main Footer
================================================== */
.main-footer {
    background-color: var(--navy-dark);
    color: #94a3b8;
    font-size: 12px;
}

.footer-tagline {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

.footer-desc {
    font-size: 11.5px;
    line-height: 1.5;
}

.footer-widget-title {
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #94a3b8;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-btn {
    width: 32px;
    height: 32px;
    background-color: #162842;
    color: #cbd5e1;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    transition: background 0.15s, color 0.15s;
}

.social-btn:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.social-btn-sm {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.text-primary-custom {
    color: var(--primary-orange);
}

/* Payment Badges */
.payment-methods {
    display: flex;
    align-items: center;
}

.pay-badge {
    background: #ffffff;
    color: #1e293b;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
}

.pay-badge.visa {
    color: #1a1f71;
    font-style: italic;
    font-weight: 900;
}

.pay-badge.mastercard {
    display: inline-flex;
    gap: 0;
    position: relative;
    padding: 3px 12px;
}

.mc-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.mc-red {
    background: #eb001b;
    margin-right: -6px;
}

.mc-yellow {
    background: #f79e1b;
    opacity: 0.9;
}

.pay-badge.amex {
    color: #006fcf;
    font-weight: 800;
}

.pay-badge.paypal {
    color: #003087;
    font-weight: 700;
}

.secure-badge {
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 500;
    gap: 5px;
}

/* ==================================================
   Responsive Styles
================================================== */
@media (max-width: 991.98px) {
    .category-toggle-wrap {
        width: auto;
        flex-shrink: 0;
    }
    
    .btn-category-toggle {
        padding: 11px 14px;
        font-size: 12.5px;
    }
    
    .main-nav-list {
        margin-left: 10px;
        gap: 0;
    }
    
    .main-nav-list .nav-link {
        padding: 11px 10px;
        font-size: 12.5px;
    }
    
    .category-sidebar-mobile {
        display: none;
    }
    
    .category-sidebar-mobile.show {
        display: block;
    }
    
    .hero-banner {
        min-height: 280px;
    }

    .hero-title {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .brand-name {
        font-size: 20px;
    }

    .hero-content {
        padding: 24px 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .solutions-banner {
        padding: 24px 18px;
    }
}

/* ==================================================
   Breadcrumbs Navigation
================================================== */
.breadcrumb-wrapper {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
}

.breadcrumb-wrapper .breadcrumb,
.breadcrumb-wrapper .breadcrumb-list {
    --bs-breadcrumb-divider: '›';
    --bs-breadcrumb-divider-color: #94a3b8;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.breadcrumb-wrapper .breadcrumb-item,
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.breadcrumb-wrapper .breadcrumb-item a,
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-wrapper .breadcrumb-item a:hover,
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.breadcrumb-wrapper .breadcrumb-item.active,
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item.active {
    color: #0f172a;
    font-weight: 600;
}

/* Bulletproof Divider: overrides any float or missing webfont glitches */
.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-wrapper .breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
    float: none !important;
    display: inline-block !important;
    content: "›" !important;
    color: #94a3b8 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    padding: 0 8px !important;
    font-weight: 400 !important;
    vertical-align: middle !important;
}

.breadcrumb-truncate {
    max-width: 380px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 575.98px) {
    .breadcrumb-wrapper .breadcrumb,
    .breadcrumb-wrapper .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-truncate {
        max-width: 180px;
    }
}

/* ==================================================
   Site Logo Preloader
================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #162f52 0%, #081424 100%);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    animation: preloaderBounceIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-logo-wrap {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.preloader-logo {
    width: 100px;
    max-width: 100px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 8px 24px rgba(249, 115, 22, 0.45));
    animation: preloaderLogoPulse 1.8s ease-in-out infinite;
}

.preloader-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(249, 115, 22, 0.25);
    border-top: 2px solid var(--primary-orange);
    border-right: 2px solid var(--primary-orange);
    animation: preloaderSpin 1.1s linear infinite;
    z-index: 1;
}

.preloader-title {
    font-size: 22px;
    letter-spacing: -0.5px;
}

.preloader-subtitle {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.preloader-bar-wrap {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-bar-fill {
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, #f97316, #fb923c);
    border-radius: 10px;
    animation: preloaderBarIndeterminate 1.4s ease-in-out infinite;
}

@keyframes preloaderLogoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes preloaderSpin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes preloaderBarIndeterminate {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(110%);
    }
    100% {
        transform: translateX(280%);
    }
}

@keyframes preloaderBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


