:root {
    --navy: #071B34;
    --navy-light: #0a2544;
    --red: #E11D2E;
    --red-dark: #c01826;
    --white: #FFFFFF;
    --gray-bg: #f4f6f9;
    --gray-light: #e9ecef;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --shadow: 0 4px 20px rgba(7, 27, 52, 0.08);
    --shadow-hover: 0 8px 30px rgba(7, 27, 52, 0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Top Bar */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    padding: 5px 0;
}

.top-bar-list, .top-bar-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
}

.top-bar-links { justify-content: flex-end; }

.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--red); margin-right: 4px; }

.social-icons { display: flex; gap: 0.5rem; }
.social-icons a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar .social-icons a i {
    color: #fff;
    margin-right: 0;
}

.social-icons a:has(.bi-facebook),
.footer-social a:has(.bi-facebook) {
    background: #1877F2;
    color: #fff;
}

.social-icons a:has(.bi-facebook):hover,
.footer-social a:has(.bi-facebook):hover {
    background: #166FE5;
    color: #fff;
}

.social-icons a:has(.bi-linkedin),
.footer-social a:has(.bi-linkedin) {
    background: #0A66C2;
    color: #fff;
}

.social-icons a:has(.bi-linkedin):hover,
.footer-social a:has(.bi-linkedin):hover {
    background: #004182;
    color: #fff;
}

.social-icons a:has(.bi-youtube),
.footer-social a:has(.bi-youtube) {
    background: #FF0000;
    color: #fff;
}

.social-icons a:has(.bi-youtube):hover,
.footer-social a:has(.bi-youtube):hover {
    background: #CC0000;
    color: #fff;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(7, 27, 52, 0.08);
    z-index: 1030;
    transition: var(--transition);
}

.main-header.scrolled { box-shadow: 0 4px 20px rgba(7, 27, 52, 0.14); }

/* Desktop header top row */
.header-top {
    background: var(--white);
    border-bottom: 1px solid #e8edf3;
    padding: 0.75rem 0;
}

.header-top-inner {
    display: grid;
    grid-template-columns: minmax(160px, auto) minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.15rem;
}

.header-brand-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    max-width: 290px;
    line-height: 1.2;
}

.header-logo-img {
    height: 58px;
    width: auto;
    max-width: 290px;
    object-fit: contain;
    object-position: left center;
}

.header-tagline {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.62rem;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.header-search-form {
    min-width: 0;
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
}

.header-search-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    overflow: hidden;
    background: #f8fafc;
    height: 44px;
    box-shadow: 0 2px 8px rgba(7, 27, 52, 0.04);
    transition: var(--transition);
}

.header-search-wrap:focus-within {
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 4px 14px rgba(7, 27, 52, 0.08);
}

.header-search-category {
    flex: 0 0 auto;
    max-width: 145px;
    border: none;
    border-right: 1px solid #dce3ec;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    padding: 0 0.65rem;
    cursor: pointer;
}

.header-search-category:focus {
    outline: none;
    box-shadow: none;
}

.header-search-input {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 0.82rem;
    padding: 0 0.85rem;
    color: var(--text-dark);
}

.header-search-input:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

.header-search-input::placeholder { color: #94a3b8; }

.header-search-btn {
    flex: 0 0 48px;
    border: none;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: var(--transition);
}

.header-search-btn:hover { background: var(--red-dark); color: var(--white); }

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.header-action-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #dce3ec;
    background: #f8fafc;
    color: var(--navy);
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
}

.header-action-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.header-action-btn.header-action-wa:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-header-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 0.85rem;
    border: 1px solid var(--navy);
    border-radius: 6px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-header-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-quote {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    padding: 0 1rem;
    border-radius: 6px;
    white-space: nowrap;
    align-items: center;
    gap: 4px;
    height: 40px;
    display: inline-flex;
    border: none;
    box-shadow: 0 4px 14px rgba(225, 29, 46, 0.25);
}

.btn-quote:hover {
    background: var(--red-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(225, 29, 46, 0.32);
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-top-inner {
        grid-template-columns: minmax(140px, auto) minmax(0, 1fr) auto;
        gap: 0.75rem;
    }

    .header-logo-img { height: 50px; max-width: 220px; }
    .header-brand-block { max-width: 220px; }
    .header-search-category { max-width: 115px; font-size: 0.72rem; }
    .btn-header-outline { display: none; }
    .header-nav-menu > li > a,
    .header-nav-menu > li > .dropdown-toggle {
        padding: 0.65rem 0.75rem;
        font-size: 0.68rem;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-nav-menu > li > a,
    .header-nav-menu > li > .dropdown-toggle {
        padding: 0.72rem 0.85rem;
    }
}

.header-account {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition);
}

.header-account > i {
    font-size: 1.85rem;
    color: var(--navy);
    line-height: 1;
}

.header-account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.header-account-text strong {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--navy);
}

.header-account-text small {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
}

.header-account:hover { color: var(--red); }
.header-account:hover > i,
.header-account:hover strong { color: var(--red); }

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--navy);
    font-size: 1.45rem;
    transition: var(--transition);
}

.header-cart:hover { color: var(--red); }

.header-cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--red);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
}

/* Desktop navy navigation bar */
.header-navbar {
    background: var(--navy);
}

.header-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}

.header-nav-menu > li {
    position: relative;
}

.header-nav-menu > li > a,
.header-nav-menu > li > .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    height: 100%;
    padding: 0.72rem 1.05rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    border: none;
    background: transparent;
    text-decoration: none;
    transition: var(--transition);
}

.header-nav-menu > li > a:hover,
.header-nav-menu > li > .dropdown-toggle:hover,
.header-nav-menu > li > a.active,
.header-nav-menu > li > .dropdown-toggle.active {
    background: var(--red);
    color: var(--white);
}

.header-nav-menu .dropdown-toggle::after {
    margin-left: 0.15rem;
    vertical-align: middle;
    border-top-color: currentColor;
}

.header-nav-menu .dropdown-menu {
    margin-top: 0;
    border-radius: 0 0 6px 6px;
    max-height: 360px;
    overflow-y: auto;
}

/* Mobile header bar */
.header-mobile-bar {
    background: var(--white);
    border-bottom: 1px solid #e8edf3;
    padding: 0.4rem 0;
}

.header-mobile-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.header-mobile-bar .navbar-toggler {
    width: 42px;
    height: 42px;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    flex-shrink: 0;
}

.header-mobile-bar .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.header-mobile-bar .navbar-toggler-icon {
    width: 1.35em;
    height: 1.35em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23071B34' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.header-icons-mobile {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.header-mobile-search-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: var(--navy);
    font-size: 1.1rem;
    transition: var(--transition);
}

.header-mobile-search-toggle:hover,
.header-mobile-search-toggle[aria-expanded="true"] {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.header-mobile-search-panel {
    padding: 0 0 0.75rem;
}

.header-mobile-search-panel[hidden] {
    display: none !important;
}

.header-mobile-search-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #dce3ec;
    border-radius: 6px;
    overflow: hidden;
    background: #f8fafc;
    height: 42px;
}

.header-mobile-search-wrap .form-control {
    flex: 1 1 auto;
    min-width: 0;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    padding: 0 0.85rem;
    box-shadow: none;
}

.header-mobile-search-wrap .form-control:focus {
    background: transparent;
    box-shadow: none;
}

.header-mobile-search-wrap .header-search-btn {
    flex: 0 0 44px;
}

.mobile-header-actions {
    margin-top: 0.75rem;
    padding-top: 0.25rem;
}

/* Legacy navbar (mobile menu + desktop classic header) */
.navbar {
    padding: 0.35rem 0;
    min-height: auto;
}

.navbar-brand {
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand .logo-img-desktop {
    height: 62px;
    width: auto;
    max-width: 290px;
}

.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    color: var(--text-dark);
    padding: 0.35rem 0.55rem !important;
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--red); }

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 2px;
    background: var(--red);
}

.search-form .input-group {
    flex-wrap: nowrap;
    align-items: stretch;
}

.search-form .form-control {
    border: 1px solid var(--gray-light);
    border-radius: 4px 0 0 4px;
    font-size: 0.78rem;
    padding: 0.35rem 0.65rem;
    min-width: 155px;
    max-width: 175px;
    height: 36px;
    background: #f8f9fa;
}

.btn-search {
    background: var(--navy);
    color: var(--white);
    border: 1px solid var(--navy);
    border-radius: 0 4px 4px 0;
    padding: 0 0.65rem;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search:hover { background: var(--red); border-color: var(--red); color: var(--white); }

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-brand .logo-img-desktop { height: 56px; max-width: 250px; }
    .navbar-nav .nav-link { font-size: 0.68rem; padding: 0.35rem 0.4rem !important; }
    .search-form .form-control { min-width: 130px; max-width: 145px; }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .navbar-nav .nav-link { padding: 0.35rem 0.48rem !important; }
}

.main-header > .navbar.navbar-expand-lg {
    border-bottom: 1px solid #e8edf3;
}

.main-header > .navbar .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: center;
}

.main-header > .navbar .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.hero-features-mobile {
    margin-bottom: 0.7rem;
}

.hero-features-mobile .home-hero-feature-line-mobile {
    font-size: 0.62rem;
    line-height: 1.55;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
}

.hero-features-mobile .home-hero-sep {
    display: inline-block;
    margin: 0 0.35rem;
    color: rgba(255, 255, 255, 0.45);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 6px;
    padding: 0.35rem 0;
    margin-top: 0.25rem;
}

.dropdown-item {
    font-size: 0.82rem;
    padding: 0.4rem 1rem;
}

.dropdown-item:hover { background: var(--gray-bg); color: var(--red); }

.header-actions { flex-shrink: 0; }

/* Hero Mega Banner (Sidebar + Banner + Stats) */
.hero-mega-banner {
    background: var(--gray-bg);
}

.hero-mega-row {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    max-width: 100%;
}

/* Left Sidebar in Hero */
.hero-sidebar {
    flex: 0 0 260px;
    background: var(--white);
    border-right: 1px solid var(--gray-light);
    z-index: 2;
}

.hero-category-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-category-sidebar .category-list {
    flex: 1;
    overflow-y: auto;
    max-height: 380px;
}

.hero-category-sidebar .category-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
}

.hero-category-sidebar .category-sidebar-header i {
    font-size: 0.75rem;
    opacity: 0.8;
}

.hero-category-sidebar .category-list li a {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
}

.hero-category-sidebar .category-sidebar-footer {
    padding: 0.75rem;
}

.hero-category-sidebar .btn-view-all {
    padding: 0.65rem;
    font-size: 0.78rem;
    border-radius: 4px;
}

/* Center Hero Banner */
.hero-banner-main {
    flex: 1;
    position: relative;
    background: #050a14;
    overflow: hidden;
}

.hero-banner-inner {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 480px;
}

.hero-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.hero-banner-inner::before,
.hero-banner-inner::after {
    content: '';
    position: absolute;
    width: 72px;
    height: 72px;
    background-image: radial-gradient(circle, var(--red) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.85;
    pointer-events: none;
    z-index: 3;
}

.hero-banner-inner::before {
    top: 14px;
    right: 14px;
}

.hero-banner-inner::after {
    bottom: 14px;
    left: 14px;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 0 0 52%;
    max-width: 52%;
    color: var(--white);
    padding: 2.25rem 3rem 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(
        90deg,
        #050a14 0%,
        rgba(7, 27, 52, 0.98) 45%,
        rgba(7, 27, 52, 0.72) 72%,
        rgba(7, 27, 52, 0.25) 88%,
        transparent 100%
    );
}

.hero-content h1 {
    font-size: clamp(1rem, 1.8vw, 1.75rem);
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-content h1 span {
    color: var(--red);
    display: inline;
}

.hero-content .lead {
    font-size: 0.88rem;
    opacity: 0.9;
    margin-bottom: 1.15rem;
    line-height: 1.55;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-bottom: 1.65rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

.hero-feature i {
    color: var(--white);
    font-size: 0.95rem;
    flex-shrink: 0;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-hero-primary {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    border: 2px solid var(--red);
}

.btn-hero-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    border: 2px solid rgba(255,255,255,0.45);
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Right Stats Panel */
.hero-stats-panel {
    flex: 0 0 220px;
    flex-direction: column;
    background: var(--white);
    border-left: 1px solid var(--gray-light);
    padding: 0.75rem;
    gap: 0.5rem;
}

.hero-stat-box {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    flex: 1;
}

.hero-stat-box i {
    font-size: 1.35rem;
    color: var(--red);
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.hero-stat-box .stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1.1;
}

.hero-stat-box span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* Legacy hero-section alias */
.hero-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d3a6e 100%);
}

.hero-stats {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-hover);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.hero-stat:last-child { border-bottom: none; }

.hero-stat i {
    font-size: 1.5rem;
    color: var(--red);
    width: 40px;
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--navy);
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Category Sidebar */
.category-sidebar {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 2rem;
}

.category-sidebar-header {
    background: var(--navy);
    color: var(--white);
    padding: 1rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-list { list-style: none; margin: 0; padding: 0; }

.category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 1.2rem;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.category-list li a:hover {
    background: var(--gray-bg);
    color: var(--red);
    padding-left: 1.5rem;
}

.category-list li a i { font-size: 0.7rem; color: var(--text-muted); }

.category-sidebar-footer {
    padding: 1rem;
    background: var(--gray-bg);
}

.btn-view-all {
    display: block;
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
}

.btn-view-all:hover { background: var(--red-dark); color: var(--white); }

/* Section Styles */
.section-padding { padding: 3rem 0; }
.section-bg { background: var(--gray-bg); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--red);
    border-radius: 2px;
}

.section-link {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
}

.section-link:hover { color: var(--red-dark); }

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-card-image img {
    max-height: 170px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-card-image img { transform: scale(1.05); }

/* Category link cards (All Products page) */
.category-link-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 148px;
    padding: 1.1rem 1rem;
    background: var(--white);
    border: 1px solid #e8edf3;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(7, 27, 52, 0.06);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.category-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(7, 27, 52, 0.1);
    border-color: rgba(225, 29, 46, 0.25);
    color: inherit;
}

.category-link-card.active {
    border-color: var(--red);
    box-shadow: 0 8px 24px rgba(225, 29, 46, 0.12);
}

.category-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(225, 29, 46, 0.1);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.category-link-card h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin: 0 0 auto;
    flex: 1;
}

.category-link-action {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 0.85rem;
}

.products-category-grid {
    margin-bottom: 0.5rem;
}

/* Homepage product cards */
.home-products-grid {
    margin-top: 0.5rem;
}

.home-product-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 4px 18px rgba(7, 27, 52, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.home-product-card:hover {
    box-shadow: 0 8px 28px rgba(7, 27, 52, 0.12);
    transform: translateY(-3px);
}

.home-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 210px;
    padding: 1.25rem;
    background: #fff;
    border-bottom: 1px solid #f0f2f5;
    text-decoration: none;
}

.home-product-image img {
    max-width: 100%;
    max-height: 170px;
    object-fit: contain;
    transition: transform 0.25s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.04);
}

.home-product-body {
    padding: 1.15rem 1rem 1.35rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-product-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0 0 1rem;
    min-height: 2.9em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-read-more {
    display: inline-block;
    min-width: 130px;
    padding: 0.55rem 1.25rem;
    background: var(--navy);
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: auto;
}

.btn-read-more:hover {
    background: #0a2544;
    color: #fff !important;
    transform: translateY(-1px);
}

@media (max-width: 575.98px) {
    .home-product-image {
        height: 160px;
        padding: 0.85rem;
    }

    .home-product-image img {
        max-height: 130px;
    }

    .home-product-body h3 {
        font-size: 0.82rem;
        min-height: auto;
    }

    .btn-read-more {
        min-width: 110px;
        font-size: 0.76rem;
        padding: 0.45rem 1rem;
    }
}


.product-card-body {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy);
    line-height: 1.3;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex: 1;
}

.product-card-body .btn-view {
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.product-card-body .btn-view:hover { color: var(--red-dark); gap: 8px; }

.product-category-tag {
    display: inline-block;
    background: var(--gray-bg);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

/* Home Info Section (Why Choose / Brands / Clients) */
.home-info-section {
    padding: 1.5rem 0 1.75rem;
    background: var(--gray-bg);
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.home-info-card {
    background: var(--white);
    border: 1px solid rgba(7, 27, 52, 0.07);
    border-radius: 8px;
    padding: 1.1rem 1.2rem 1.15rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(7, 27, 52, 0.04);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-info-card:hover {
    border-color: rgba(225, 29, 46, 0.12);
    box-shadow: 0 4px 14px rgba(7, 27, 52, 0.07);
}

.home-info-card .section-title {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding-left: 0.7rem;
    margin-bottom: 0.85rem;
}

.home-info-card .section-title::before {
    width: 3px;
    border-radius: 1px;
}

.home-info-card .section-header {
    margin-bottom: 0.85rem;
    align-items: center;
}

.home-info-card .section-link {
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.35px;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
    flex: 1;
}

.why-choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.32rem 0;
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(7, 27, 52, 0.05);
}

.why-choose-list li:last-child { border-bottom: none; }

.why-choose-list li i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    flex-shrink: 0;
    background: var(--red);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    border-radius: 50%;
}

.btn-know-more {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.42rem 0.95rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: auto;
    align-self: flex-start;
}

.btn-know-more:hover { background: var(--red); color: var(--white); }

.brands-mini-grid,
.clients-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    flex: 1;
}

.brand-mini-item,
.client-mini-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0.5rem 0.55rem;
    background: var(--white);
    border: 1px solid rgba(7, 27, 52, 0.08);
    border-radius: 6px;
    transition: var(--transition);
}

.brand-mini-item:hover,
.client-mini-item:hover {
    background: var(--white);
    border-color: rgba(225, 29, 46, 0.25);
    box-shadow: 0 3px 10px rgba(7, 27, 52, 0.08);
}

.brand-mini-item img,
.client-mini-item img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: transform 0.25s ease;
}

.brand-mini-item:hover img,
.client-mini-item:hover img {
    transform: scale(1.06);
}

.brand-name-placeholder {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.68rem;
    color: var(--navy);
    text-align: center;
    line-height: 1.25;
    opacity: 0.72;
    transition: var(--transition);
}

.brand-mini-item:hover .brand-name-placeholder,
.client-mini-item:hover .brand-name-placeholder {
    opacity: 1;
    color: var(--red);
}

/* Brand slider (brands page) */
.brand-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0.5rem;
}

.brand-slider .swiper-slide img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-slider .swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-slider .swiper-slide:hover .brand-name-placeholder {
    opacity: 1;
    color: var(--red);
}

/* About page */
.about-page {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 120px);
}

.about-page .about-photo-card {
    background: #fff;
    border-radius: 14px;
    padding: 0.65rem;
    box-shadow: 0 8px 28px rgba(7, 27, 52, 0.08);
    border: 1px solid #eef2f7;
    max-width: 300px;
    margin: 0 auto;
}

.about-company-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    object-position: center top;
    display: block;
    border-radius: 10px;
    background: #f8fafc;
}

.about-content-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.75rem 1.85rem;
    box-shadow: 0 10px 36px rgba(7, 27, 52, 0.07);
    border: 1px solid #e8edf3;
    height: 100%;
}

.about-page-content h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 1.25rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid #eef2f7;
    position: relative;
}

.about-page-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 72px;
    height: 2px;
    background: var(--red);
}

.about-page-content h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin: 2rem 0 1rem;
    padding: 0.55rem 0.85rem;
    background: linear-gradient(90deg, rgba(225, 29, 46, 0.08) 0%, transparent 100%);
    border-left: 4px solid var(--red);
    border-radius: 0 8px 8px 0;
}

.about-page-content p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 1rem;
}

.about-page-content h2 + p {
    font-size: 0.95rem;
    color: #334155;
}

.about-page-content p strong {
    color: var(--navy);
    font-weight: 700;
}

.about-page-content ul {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0 1.5rem;
    display: grid;
    gap: 0.45rem;
}

.about-page-content ul li {
    position: relative;
    padding: 0.7rem 0.9rem 0.7rem 2.4rem;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 10px;
    font-size: 0.86rem;
    color: #334155;
    line-height: 1.55;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.about-page-content ul li::before {
    content: '\2713';
    position: absolute;
    left: 0.85rem;
    top: 0.72rem;
    width: 1.15rem;
    height: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    line-height: 1;
}

.about-page-content ul li:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(7, 27, 52, 0.05);
}

.about-page-content h3:last-of-type + p {
    margin-top: 0.75rem;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border: 1px solid #e8edf3;
    border-left: 4px solid var(--navy);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #4b5563;
    position: relative;
}

.about-page-content h3:last-of-type + p::before {
    content: '\201C';
    font-size: 2rem;
    line-height: 1;
    color: rgba(225, 29, 46, 0.25);
    font-style: normal;
    display: block;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .about-page .about-photo-card {
        margin: 0;
        max-width: 280px;
        position: sticky;
        top: 96px;
    }

    .about-company-img {
        max-height: 360px;
    }

    .about-content-card {
        padding: 2rem 2.15rem;
    }
}

@media (min-width: 992px) {
    .about-page .about-photo-card {
        max-width: 300px;
    }

    .about-content-card {
        padding: 2.15rem 2.35rem;
    }
}

@media (max-width: 767.98px) {
    .about-content-card {
        padding: 1.35rem 1.15rem;
    }

    .about-page-content p {
        text-align: left;
    }
}

.page-content h2,
.page-content h4 {
    color: var(--navy);
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.page-content h2:first-child,
.page-content h4:first-child {
    margin-top: 0;
}

.page-content p {
    color: #4b5563;
    line-height: 1.7;
}

.why-choose-box {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
}

/* Download cards */
.download-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.75rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
}

.download-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.download-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(225, 29, 46, 0.1);
    color: var(--red);
    font-size: 1.75rem;
}

.download-card-icon--catalog {
    background: rgba(7, 27, 52, 0.08);
    color: var(--navy);
}

.download-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.download-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.15rem;
}

.download-empty-box {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2.5rem 2rem;
}

.download-empty-box i {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.download-empty-box h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.download-empty-box p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

/* Trust + CTA Combined Banner */
.trust-cta-wrap {
    background: var(--gray-bg);
    padding: 1.75rem 0 2rem;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.trust-cta-banner {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    min-height: 96px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(7, 27, 52, 0.1);
}

.trust-features {
    flex: 1 1 68%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
}

.trust-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
}

.trust-features .feature-item i {
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
    opacity: 0.95;
}

.trust-features .feature-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15px;
    line-height: 1.15;
    white-space: nowrap;
}

.trust-features .feature-item span {
    display: block;
    font-size: 0.62rem;
    opacity: 0.75;
    white-space: nowrap;
}

.trust-cta-panel {
    flex: 0 0 30%;
    background: var(--red);
    color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75rem 2.75rem 0.75rem 2.25rem;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -1.5%;
}

.trust-cta-content {
    flex: 1;
    min-width: 0;
}

.trust-cta-panel h3 {
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 0.2rem;
    letter-spacing: 0.25px;
    line-height: 1.2;
}

.trust-cta-panel .cta-phones {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 0.1rem;
}

.trust-cta-panel .cta-phones > i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.trust-cta-panel .cta-phones a {
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
}

.trust-cta-panel .cta-phones a:hover {
    opacity: 0.85;
}

.trust-cta-panel .cta-hours {
    font-size: 0.6rem;
    opacity: 0.85;
    margin: 0 0 0.4rem;
}

.btn-cta-contact {
    display: inline-block;
    background: var(--white);
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 0.35rem 0.85rem;
    border-radius: 3px;
    transition: var(--transition);
}

.btn-cta-contact:hover {
    background: var(--navy);
    color: var(--white);
}

.cta-wa-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 2;
}

.cta-wa-icon:hover {
    color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 1399.98px) {
    .trust-features { padding: 0.65rem 1rem; gap: 0.35rem; }
    .trust-features .feature-item i { font-size: 1.1rem; }
    .trust-features .feature-item strong { font-size: 0.62rem; }
    .trust-features .feature-item span { font-size: 0.58rem; }
    .trust-cta-panel { flex: 0 0 32%; padding: 0.65rem 2.25rem 0.65rem 2rem; }
    .trust-cta-panel h3 { font-size: 0.75rem; }
    .trust-cta-panel .cta-phones a { font-size: 0.68rem; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .trust-features .feature-item strong,
    .trust-features .feature-item span { white-space: normal; }
}

/* Legacy aliases kept for compatibility */
.features-bar { background: var(--navy); }
.cta-section { background: var(--red); }

.cta-phones { display: flex; flex-wrap: wrap; gap: 1.5rem; }

.cta-phones a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-phones a:hover { opacity: 0.85; }
.cta-phones i { margin-right: 0.5rem; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding-top: 1.75rem;
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.footer-row {
    align-items: flex-start;
}

.site-footer h5 {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.site-footer .row > [class*="col-"] {
    min-width: 0;
}

.footer-about p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.65);
    margin: 0;
}

.footer-logo {
    max-width: 160px;
    height: auto;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin: 0; }

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.4;
    padding: 0.2rem 0;
}

.footer-links a:hover { color: var(--red); padding-left: 5px; }

/* Two-column category list with equal alignment */
.footer-links-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1.5rem;
}

.footer-links-2col li:last-child { grid-column: 1 / -1; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.2rem 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.7);
}

.footer-contact li span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.footer-contact i {
    color: var(--red);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.footer-contact-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--red);
}

.footer-email-link {
    font-size: 0.78rem;
    line-height: 1.45;
    display: inline-block;
    max-width: 100%;
}

.footer-map-wrap {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.footer-map-wrap iframe {
    display: block;
    width: 100%;
    height: 130px;
    border: 0;
}

.footer-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.45rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: var(--transition);
}

.footer-map-link:hover {
    color: var(--white);
    background: rgba(225, 29, 46, 0.35);
}

.footer-contact-col,
.footer-touch-col {
    overflow: hidden;
}

.footer-follow-label {
    display: block;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.footer-social { display: flex; gap: 0.6rem; }

.footer-social a {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.82rem;
    padding: 0.45rem 0.65rem;
}

.newsletter-form .btn {
    padding: 0.45rem 0.75rem;
    font-size: 0.82rem;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 0.9rem 0;
    margin-top: 1.25rem;
    font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--white); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px; height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 1020;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 25px rgba(37,211,102,0.7); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1019;
    cursor: pointer;
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); }

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 3rem 0 2rem;
    color: var(--white);
    position: relative;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.page-header--compact {
    padding: 1.75rem 0 1.35rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy), #0a2544);
    position: relative;
}

.page-header-fx {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-header-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gallery-grid-drift 45s linear infinite;
    opacity: 0.5;
}

.page-header-fx canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;
}

.page-header-fx-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(7, 27, 52, 0.1) 0%, rgba(7, 27, 52, 0.45) 100%);
    pointer-events: none;
}

.page-header--compact > .container {
    position: relative;
    z-index: 3;
}

@keyframes gallery-grid-drift {
    0% { background-position: 0 0; }
    100% { background-position: 48px 48px; }
}

@media (prefers-reduced-motion: reduce) {
    .page-header-grid {
        animation: none;
    }
}

.page-header--compact h1 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.page-header--compact .page-header-lead {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.page-header--compact .breadcrumb-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.page-header--compact .breadcrumb {
    font-size: 0.72rem;
    justify-content: center;
}

.breadcrumb-nav { margin-bottom: 0; }

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item.active { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Product Detail */
.product-detail-image {
    background: var(--gray-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.product-detail-image img {
    max-height: 400px;
    object-fit: contain;
}

.product-meta { margin-bottom: 1.5rem; }

.product-meta span {
    display: inline-block;
    background: var(--gray-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.spec-table { width: 100%; }
.spec-table td { padding: 0.65rem 0; border-bottom: 1px solid var(--gray-light); font-family: var(--font-body); font-size: 0.92rem; line-height: 1.55; }
.spec-table td:first-child { font-weight: 600; width: 40%; color: var(--navy); font-family: var(--font-heading); font-size: 0.88rem; }
.spec-table td:last-child { color: #4a5568; }

.product-detail-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: #5c6578;
    margin-bottom: 0;
}

.product-detail-content {
    margin-top: 0.5rem;
}

.product-detail-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    letter-spacing: 0.01em;
}

.product-detail-body {
    font-family: var(--font-body);
    font-size: 0.94rem;
    line-height: 1.75;
    color: #4a5568;
}

.product-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--gray-bg);
    border-radius: 10px;
    overflow: hidden;
}

.product-spec-list li {
    position: relative;
    padding: 0.75rem 1rem 0.75rem 1.65rem;
    border-bottom: 1px solid #e8edf3;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4a5568;
}

.product-spec-list li:last-child {
    border-bottom: none;
}

.product-spec-list li::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 1.15rem;
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
}

.product-detail-actions .btn {
    font-family: var(--font-heading);
    font-size: 0.88rem;
}

/* Contact Form */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 0.7rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 0.2rem rgba(225,29,46,0.15);
}

.contact-success-modal .modal-content {
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(7, 27, 52, 0.18);
}

.contact-success-modal .modal-body {
    padding: 2rem 1.75rem 1.75rem;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(225, 29, 46, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.contact-success-title {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.contact-success-message {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.contact-info-box {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.contact-info-box h4 { margin-bottom: 1.5rem; }

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-info-item i {
    font-size: 1.3rem;
    color: var(--red);
    width: 30px;
}

.contact-page-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-page-section .contact-info-box {
    height: auto;
}

.contact-page-map-row {
    margin-top: 1.75rem;
}

.contact-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid var(--gray-light);
    position: relative;
    z-index: 0;
    isolation: isolate;
}

.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    vertical-align: top;
}

.contact-page-map {
    margin-top: 0;
    transform: none;
    opacity: 1;
}

.contact-page-map-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.85rem;
}

.contact-page-map-title i {
    color: var(--red);
}

.contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--red);
}

.contact-map-link:hover {
    color: var(--red-dark);
}

@media (max-width: 991.98px) {
    .contact-page-map-row {
        margin-top: 0.5rem;
    }

    .contact-map-wrap iframe {
        height: 280px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pagination */
.pagination .page-link {
    color: var(--navy);
    border-color: var(--gray-light);
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: var(--red);
    border-color: var(--red);
}

.pagination .page-link:hover { color: var(--red); }

/* Mobile Category Toggle */
.mobile-category-toggle {
    display: none;
}

/* ========== MOBILE ENHANCEMENTS ========== */

/* Mobile Contact Strip */
.mobile-contact-strip {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 12px rgba(7, 27, 52, 0.12);
}

.mobile-contact-strip a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    width: 100%;
    padding: 0.34rem 0.55rem;
    color: rgba(255,255,255,0.94);
    font-size: clamp(0.58rem, 2.65vw, 0.68rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.15;
}

.mobile-contact-strip a:last-child {
    border-bottom: none;
}

.mobile-contact-strip a span {
    min-width: 0;
    text-align: center;
}

.mobile-contact-phone span {
    white-space: nowrap;
}

.mobile-contact-email span {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.mobile-contact-strip a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.mobile-contact-strip a i {
    color: rgba(255,255,255,0.88);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* Mobile Header Icons */
.header-icons-mobile {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-bg);
    border-radius: 8px;
    color: var(--navy);
    font-size: 1.1rem;
}

.header-icon-btn:hover { background: var(--red); color: var(--white); }

.navbar-toggler {
    border: none;
    padding: 0.4rem 0.5rem;
}

.navbar-toggler:focus { box-shadow: none; }

/* Mobile Nav Panel — Soft UI / Fintech */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 55%, #e8edf3 100%);
        z-index: 1050;
        padding: 0.85rem 0.9rem 6.5rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }

    .navbar-collapse.collapsing {
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100% !important;
        visibility: visible;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(7, 27, 52, 0.45);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: 1040;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.85rem;
        padding: 0.35rem 0.15rem 0.85rem;
        border-bottom: none;
    }

    .mobile-menu-brand {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .mobile-menu-title {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: 0.01em;
        color: var(--navy);
        text-transform: none;
    }

    .mobile-menu-subtitle {
        font-size: 0.68rem;
        font-weight: 500;
        color: #64748b;
        letter-spacing: 0.03em;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        border: none;
        background: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--navy);
        cursor: pointer;
        box-shadow:
            0 4px 14px rgba(7, 27, 52, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        transition: var(--transition);
    }

    .mobile-menu-close:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(7, 27, 52, 0.12);
    }

    .mobile-nav-search {
        margin-bottom: 0.85rem;
        padding-bottom: 0;
        border-bottom: none;
    }

    .mobile-search-field {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.55rem 0.65rem 0.55rem 0.85rem;
        background: #fff;
        border-radius: 14px;
        box-shadow:
            0 4px 20px rgba(7, 27, 52, 0.06),
            0 1px 2px rgba(7, 27, 52, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .mobile-search-field > .bi-search {
        color: #94a3b8;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .mobile-search-field .form-control {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 0.84rem;
        color: var(--navy);
        box-shadow: none;
    }

    .mobile-search-field .form-control:focus {
        box-shadow: none;
        background: transparent;
    }

    .mobile-search-field .form-control::placeholder {
        color: #94a3b8;
    }

    .mobile-search-btn {
        width: 34px;
        height: 34px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 0.9rem;
        transition: var(--transition);
    }

    .mobile-search-btn:hover {
        background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    }

    .mobile-nav-list {
        background: #fff;
        border-radius: 18px;
        padding: 0.35rem 0.65rem 0.85rem;
        box-shadow:
            0 8px 32px rgba(7, 27, 52, 0.07),
            0 2px 6px rgba(7, 27, 52, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.9);
    }

    .main-header { z-index: 1060; }

    .navbar-nav {
        margin: 0 !important;
    }

    .mobile-nav-list .nav-link {
        padding: 0.72rem 0.45rem !important;
        font-size: 0.88rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #334155;
        text-transform: none;
        border-radius: 10px;
        transition: var(--transition);
    }

    .mobile-nav-list .nav-link:last-of-type {
        border-bottom: none;
    }

    .mobile-nav-list .nav-link:hover,
    .mobile-nav-list .nav-link.active {
        color: var(--navy);
        background: #f8fafc;
    }

    .mobile-nav-list .nav-link i {
        width: 36px;
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        font-size: 1rem;
        flex-shrink: 0;
        box-shadow:
            0 2px 8px rgba(7, 27, 52, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .mobile-nav-home i {
        background: linear-gradient(135deg, rgba(225, 29, 46, 0.18) 0%, rgba(225, 29, 46, 0.08) 100%);
        color: #E11D2E;
    }

    .mobile-nav-about i {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 100%);
        color: #2563EB;
    }

    .mobile-nav-products i {
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(99, 102, 241, 0.08) 100%);
        color: #4F46E5;
    }

    .mobile-nav-brands i {
        background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.08) 100%);
        color: #D97706;
    }

    .mobile-nav-clients i {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0.08) 100%);
        color: #059669;
    }

    .mobile-nav-downloads i {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.18) 0%, rgba(6, 182, 212, 0.08) 100%);
        color: #0891B2;
    }

    .mobile-nav-gallery i {
        background: linear-gradient(135deg, rgba(236, 72, 153, 0.18) 0%, rgba(236, 72, 153, 0.08) 100%);
        color: #DB2777;
    }

    .mobile-nav-contact i {
        background: linear-gradient(135deg, rgba(7, 27, 52, 0.14) 0%, rgba(7, 27, 52, 0.06) 100%);
        color: #071B34;
    }

    .mobile-nav-list .nav-link.active i {
        transform: scale(1.05);
        box-shadow:
            0 4px 12px rgba(7, 27, 52, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .mobile-nav-home.active i {
        background: linear-gradient(135deg, #E11D2E 0%, #c91828 100%);
        color: #fff;
    }

    .mobile-nav-about.active i {
        background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
        color: #fff;
    }

    .mobile-nav-products.active i {
        background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
        color: #fff;
    }

    .mobile-nav-brands.active i {
        background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
        color: #fff;
    }

    .mobile-nav-clients.active i {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        color: #fff;
    }

    .mobile-nav-downloads.active i {
        background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
        color: #fff;
    }

    .mobile-nav-gallery.active i {
        background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%);
        color: #fff;
    }

    .mobile-nav-contact.active i {
        background: linear-gradient(135deg, #071B34 0%, #0f2d52 100%);
        color: #fff;
    }

    .navbar-nav .nav-link.active::after { display: none; }

    .mobile-products-dropdown .dropdown-menu {
        display: none !important;
    }

    .mobile-cat-section {
        padding: 0.35rem 0 0.15rem;
        border-bottom: none;
    }

    .mobile-section-label {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        margin: 0.15rem 0 0.55rem;
        padding: 0 0.2rem;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #64748b;
    }

    .mobile-section-label i {
        color: var(--red);
        font-size: 0.78rem;
    }

    .mobile-cat-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.45rem;
        padding: 0 0 0.35rem;
        max-height: 220px;
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 transparent;
    }

    .mobile-cat-link {
        display: flex;
        align-items: center;
        min-height: 38px;
        padding: 0.45rem 0.6rem;
        background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
        border-radius: 10px;
        font-size: 0.68rem;
        font-weight: 600;
        color: #475569;
        line-height: 1.35;
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-left: 3px solid #cbd5e1;
        box-shadow: 0 2px 8px rgba(7, 27, 52, 0.04);
        transition: var(--transition);
    }

    .mobile-cat-link:nth-child(6n+1) { border-left-color: #E11D2E; }
    .mobile-cat-link:nth-child(6n+2) { border-left-color: #3B82F6; }
    .mobile-cat-link:nth-child(6n+3) { border-left-color: #6366F1; }
    .mobile-cat-link:nth-child(6n+4) { border-left-color: #F59E0B; }
    .mobile-cat-link:nth-child(6n+5) { border-left-color: #10B981; }
    .mobile-cat-link:nth-child(6n+6) { border-left-color: #EC4899; }

    .mobile-cat-link:hover {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(7, 27, 52, 0.14);
    }

    .mobile-nav-quick {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem;
        margin: 0.85rem 0 0;
        padding: 0;
        border: none;
    }

    .mobile-quick-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.45rem;
        padding: 0.75rem 0.35rem;
        background: #fff;
        border-radius: 14px;
        color: #475569;
        font-size: 0.68rem;
        font-weight: 600;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.95);
        box-shadow:
            0 4px 16px rgba(7, 27, 52, 0.06),
            0 1px 2px rgba(7, 27, 52, 0.04);
        transition: var(--transition);
    }

    .mobile-quick-link:hover {
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(7, 27, 52, 0.1);
    }

    .mobile-quick-icon {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        box-shadow:
            0 2px 8px rgba(7, 27, 52, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }

    .mobile-quick-brochure .mobile-quick-icon {
        background: linear-gradient(135deg, rgba(225, 29, 46, 0.16) 0%, rgba(225, 29, 46, 0.08) 100%);
    }

    .mobile-quick-brochure .mobile-quick-icon i {
        color: #E11D2E;
    }

    .mobile-quick-catalog .mobile-quick-icon {
        background: linear-gradient(135deg, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0.08) 100%);
    }

    .mobile-quick-catalog .mobile-quick-icon i {
        color: #7C3AED;
    }

    .mobile-quick-icon i {
        font-size: 1.05rem;
    }

    .header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 0.85rem;
        padding: 0 0.05rem;
    }

    .header-actions .btn-quote {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem;
        font-size: 0.88rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        border-radius: 14px;
        border: none;
        background: linear-gradient(135deg, var(--red) 0%, #c91828 100%);
        box-shadow:
            0 8px 24px rgba(225, 29, 46, 0.28),
            0 2px 6px rgba(225, 29, 46, 0.18);
    }

    .header-actions .btn-quote:hover {
        transform: translateY(-2px);
        box-shadow:
            0 12px 28px rgba(225, 29, 46, 0.32),
            0 4px 10px rgba(225, 29, 46, 0.2);
    }

    .header-icons-mobile {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .header-mobile-bar .navbar-brand {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 140px);
        margin-right: 0;
        line-height: 0;
    }

    .header-mobile-bar .logo-img.logo-img-mobile {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: left center;
    }
}

/* Horizontal Category Scroll */
.mobile-categories-scroll {
    margin-bottom: 1.25rem;
}

.mobile-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.mobile-categories-header h2 {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0;
}

.view-all-chip {
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
}

.categories-scroll-wrap {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-scroll-wrap::-webkit-scrollbar { display: none; }

.category-chip {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    white-space: nowrap;
    transition: var(--transition);
}

.category-chip:hover,
.category-chip.active,
.category-chip-all {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.category-chip-all { font-weight: 700; }

/* Mobile Hero Stats */
.hero-stats-mobile {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    padding: 1rem;
    background: var(--navy);
}

.hero-mega-banner .mobile-categories-scroll {
    padding: 1rem 1rem 0;
    background: var(--gray-bg);
}

.hero-stat-mini {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.6rem 0.3rem;
    text-align: center;
    color: var(--white);
}

.hero-stat-mini strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--red);
}

.hero-stat-mini span {
    font-size: 0.65rem;
    opacity: 0.85;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .hero-mega-row { min-height: auto; }

    .hero-banner-main { flex: none; width: 100%; }

    .hero-banner-inner {
        flex-direction: column;
        min-height: auto;
    }

    .hero-banner-bg {
        position: relative;
        inset: auto;
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        height: clamp(200px, 42vw, 260px);
        background: #071B34;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .hero-banner-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 48px;
        background: linear-gradient(180deg, #071B34 0%, transparent 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero-banner-bg img {
        position: relative;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .hero-content {
        order: 1;
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 1.1rem 0.85rem 0.75rem;
        text-align: center;
        background: linear-gradient(180deg, #050a14 0%, #071B34 100%);
    }

    .hero-banner-inner::before,
    .hero-banner-inner::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 0.92rem;
        line-height: 1.28;
        margin-bottom: 0.45rem;
    }

    .hero-content .lead {
        font-size: 0.72rem;
        line-height: 1.4;
        margin-bottom: 0.6rem;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.35rem 0.45rem;
        margin-bottom: 0.7rem;
        justify-items: center;
        text-align: center;
    }

    .hero-features-mobile {
        display: block !important;
        text-align: center;
    }

    .hero-feature {
        font-size: 0.62rem;
        white-space: normal;
        justify-content: center;
        gap: 0.3rem;
    }

    .hero-feature i { font-size: 0.78rem; }

    .hero-buttons {
        justify-content: center;
        gap: 0.45rem;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 0.62rem;
        padding: 0.52rem 0.55rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-sidebar { flex: 0 0 220px; }
    .hero-stats-panel { flex: 0 0 190px; }
    .hero-content { flex: 0 0 52%; max-width: 52%; padding: 1.5rem 2rem 1.5rem 1.25rem; }
    .hero-content h1 { font-size: 1rem; }
}

@media (min-width: 1400px) {
    .hero-sidebar { flex: 0 0 280px; }
    .hero-stats-panel { flex: 0 0 240px; }
    .hero-content h1 { font-size: 1.95rem; }
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    display: flex;
    z-index: 1025;
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.2rem;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 600;
    gap: 2px;
    transition: var(--transition);
}

.bottom-nav-item i { font-size: 1.25rem; }

.bottom-nav-item.active { color: var(--red); }
.bottom-nav-item.active i { color: var(--red); }

.bottom-nav-call i { color: var(--navy); }
.bottom-nav-wa i { color: #25D366; }

/* Body padding for bottom nav */
@media (max-width: 991.98px) {
    body { padding-bottom: 70px; }

    .whatsapp-float { display: none !important; }
    .back-to-top { bottom: 80px; right: 16px; width: 40px; height: 40px; }

    .site-footer {
        padding-top: 1.75rem;
    }

    .site-footer .row > [class*="col-"] {
        margin-bottom: 0.15rem;
    }

    .site-footer h5 {
        font-size: 0.82rem;
        margin-bottom: 0.55rem;
        margin-top: 0.35rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-about {
        margin-bottom: 0.5rem;
    }

    .footer-about p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 0.8rem;
        padding: 0.22rem 0;
    }

    .footer-links-2col {
        column-gap: 1rem;
    }

    .footer-touch-col {
        margin-top: 0.25rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .col-md-6.text-md-end {
        text-align: center !important;
        margin-top: 0.35rem;
    }

    .hero-section { min-height: auto; padding: 1.5rem 0 1rem; }
    .section-padding { padding: 2rem 0; }

    .product-card-image { height: 140px; }
    .product-card-body { padding: 0.85rem; }
    .product-card-body h3 { font-size: 0.82rem; }
    .product-card-body p { font-size: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .product-category-tag { font-size: 0.65rem; }

    .section-header { margin-bottom: 1rem; }
    .section-title { font-size: 1rem; padding-left: 0.75rem; }
    .section-title::before { width: 3px; }

    .home-info-card { padding: 1rem; }
    .home-info-card .section-title { font-size: 0.82rem; margin-bottom: 0.7rem; }
    .why-choose-list li { font-size: 0.74rem; padding: 0.28rem 0; }
    .brands-mini-grid,
    .clients-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 0.45rem; }
    .brand-mini-item,
    .client-mini-item { min-height: 50px; padding: 0.45rem; }
    .brand-mini-item img,
    .client-mini-item img { max-height: 34px; }

    .why-choose-box { padding: 1.25rem; }

    .trust-cta-wrap {
        padding: 1.25rem 0 1.5rem;
    }

    .trust-cta-banner {
        flex-direction: column;
        min-height: auto;
    }

    .trust-features {
        flex: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 1rem;
        padding: 0.75rem;
        scrollbar-width: none;
    }

    .trust-features::-webkit-scrollbar { display: none; }

    .trust-features .feature-item {
        flex: 0 0 auto;
    }

    .trust-cta-panel {
        flex: none;
        clip-path: none;
        margin-left: 0;
        padding: 0.85rem 1rem;
        text-align: center;
        justify-content: center;
    }

    .trust-cta-panel .cta-phones {
        justify-content: center;
    }

    .btn-cta-contact {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .page-header { padding: 2rem 0 1.25rem; }
    .page-header h1 { font-size: 1.3rem; }
    .page-header--compact { padding: 1.35rem 0 1rem; }
    .page-header--compact h1 { font-size: 1.1rem; }
    .page-header--compact .page-header-lead { font-size: 0.76rem; }

    .clients-mini-grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }

    .contact-info-box { margin-top: 1rem; }
    .product-detail-image { padding: 1rem; }
    .product-detail-lead { font-size: 0.92rem; }
    .product-detail-heading { font-size: 1rem; }
    .product-detail-body,
    .product-spec-list li,
    .spec-table td { font-size: 0.88rem; }
    .product-detail-actions .btn { font-size: 0.82rem; padding: 0.55rem 0.85rem; }
}

/* Gallery page */
.gallery-page { padding-top: 2rem; }

.gallery-nav-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.gallery-nav {
    background: #fff;
    border-radius: 50px;
    padding: 0.35rem;
    box-shadow: 0 4px 20px rgba(7, 27, 52, 0.08);
    gap: 0.25rem;
}

.gallery-nav .nav-link {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.2s ease;
}

.gallery-nav .nav-link:hover {
    background: rgba(7, 27, 52, 0.06);
    color: var(--navy);
}

.gallery-nav .nav-link.active {
    background: var(--red);
    color: #fff;
}

.gallery-count {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.1rem 0.45rem;
    border-radius: 20px;
}

.gallery-nav .nav-link:not(.active) .gallery-count {
    background: rgba(7, 27, 52, 0.08);
    color: var(--navy);
}

.gallery-photo-card {
    width: 100%;
    border: none;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7, 27, 52, 0.08);
    text-align: left;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(7, 27, 52, 0.12);
}

.gallery-photo-thumb {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f6f9;
}

.gallery-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-photo-card:hover .gallery-photo-thumb img {
    transform: scale(1.05);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 27, 52, 0.35);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-photo-card:hover .gallery-zoom {
    opacity: 1;
}

.gallery-photo-caption {
    padding: 0.75rem;
}

.gallery-photo-caption strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.15rem;
}

.gallery-photo-caption small {
    color: #6c757d;
    font-size: 0.75rem;
}

.gallery-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7, 27, 52, 0.08);
    height: 100%;
}

.gallery-video-embed {
    position: relative;
    padding-bottom: 56.25%;
    background: #071B34;
}

.gallery-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gallery-video-fallback {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #f4f6f9;
    color: #6c757d;
}

.gallery-video-body {
    padding: 1rem;
}

.gallery-video-body h3 {
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.gallery-video-body p {
    font-size: 0.82rem;
    color: #6c757d;
    margin: 0;
}

.gallery-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.gallery-empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
    opacity: 0.5;
}

.gallery-modal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-modal-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.gallery-modal-desc {
    font-size: 0.9rem;
    color: #6c757d;
}

@media (max-width: 575.98px) {
    .gallery-nav .nav-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 { font-size: 0.85rem; }
    .hero-banner-bg { height: clamp(185px, 44vw, 220px); }
    .hero-content { padding: 1rem 0.75rem 0.65rem; }
    .hero-feature { font-size: 0.58rem; }
    .product-card-body h3 { font-size: 0.78rem; min-height: 2.4em; }
}

/* Responsive */
@media (max-width: 991.98px) {
    .header-actions { margin-top: 0; width: 100%; }
}

/* ========== HOME PAGE REDESIGN ========== */
.home-hero {
    position: relative;
    background: #050a14;
    overflow: hidden;
    min-height: 460px;
}

.home-hero-swiper {
    width: 100%;
    min-height: 460px;
}

.home-hero-slide {
    position: relative;
    min-height: 460px;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.home-hero-bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% 42%;
    transform: translate(-50%, -50%) scale(0.92);
    transform-origin: center center;
}

.home-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 20, 0.96) 0%, rgba(7, 27, 52, 0.88) 38%, rgba(7, 27, 52, 0.52) 58%, rgba(7, 27, 52, 0.22) 100%);
}

.home-hero--image-only .home-hero-bg::after {
    display: none;
}

@media (min-width: 992px) {
    .home-hero--image-only {
        min-height: 460px;
    }

    .home-hero--image-only .home-hero-swiper,
    .home-hero--image-only .home-hero-slide {
        min-height: 460px;
    }

    .home-hero--image-only .home-hero-bg img {
        object-fit: cover;
        object-position: center center;
        transform: translate(-50%, -50%);
    }
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero-pagination {
    bottom: 1.1rem !important;
    z-index: 5;
}

.home-hero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #fff;
    opacity: 0.45;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--red);
    transform: scale(1.15);
}

.home-hero-content {
    max-width: 100%;
    padding: 3.25rem 0 2.85rem;
    color: #fff;
}

.home-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem 0;
}

.home-hero-products-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.home-hero-content h1 {
    font-size: clamp(1.2rem, 2.4vw, 2.15rem);
    font-weight: 800;
    line-height: 1.22;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.home-hero-content h1 span { color: var(--red); }

.home-hero-lead {
    font-size: 0.92rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    max-width: 520px;
}

.home-hero-features {
    margin-bottom: 1.4rem;
}

.home-hero-feature-line {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.5;
}

.home-hero-sep {
    display: inline-block;
    margin: 0 0.55rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-trust-bar {
    background: var(--navy);
    padding: 0.85rem 0;
    border-bottom: 3px solid var(--red);
}

.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
}

.home-trust-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    min-width: 0;
}

.home-trust-item i {
    color: var(--red);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.home-trust-item strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.1;
}

.home-trust-item span {
    display: block;
    font-size: 0.62rem;
    opacity: 0.82;
    line-height: 1.2;
}

.home-mobile-cats {
    padding: 0.85rem 0 0;
    background: var(--gray-bg);
}

.home-products-section {
    background: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

.section-header-center {
    justify-content: center;
    text-align: center;
}

.section-title-center {
    padding-left: 0;
}

.section-title-center::before { display: none; }

.section-title-center::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--red);
    margin: 0.45rem auto 0;
    border-radius: 2px;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.home-category-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 6px;
    padding: 1rem 0.85rem 0.9rem;
    text-align: center;
    color: inherit;
    box-shadow: 0 2px 12px rgba(7, 27, 52, 0.05);
    transition: var(--transition);
    height: 100%;
}

.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(7, 27, 52, 0.1);
    border-color: rgba(225, 29, 46, 0.2);
    color: inherit;
}

.home-category-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.home-category-image img {
    max-height: 110px;
    object-fit: contain;
}

.home-category-card h3 {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.35;
    margin: 0 0 0.55rem;
    flex: 1;
}

.home-category-link {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.home-category-link i { font-size: 0.8rem; }

.home-view-all-btn {
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.brands-mini-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.home-popular-section {
    padding-top: 2.5rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.popular-slider-wrap {
    position: relative;
    padding: 0 2.5rem;
}

.popular-products-slider { overflow: hidden; }

.popular-product-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 12px rgba(7, 27, 52, 0.06);
}

.popular-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    padding: 1rem;
    background: #f8fafc;
}

.popular-product-image img {
    max-height: 150px;
    object-fit: contain;
}

.popular-product-body {
    padding: 1rem;
    text-align: center;
}

.popular-product-body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 0.35rem;
    min-height: 2.4em;
}

.popular-product-brand {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.popular-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(7, 27, 52, 0.08);
}

.popular-slider-prev { left: 0; }
.popular-slider-next { right: 0; }

.home-testimonials {
    background: var(--navy);
    padding: 3rem 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}

.home-testimonials-title {
    text-align: center;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.home-testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem 1.25rem;
    height: 100%;
    margin: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-testimonial-quote {
    font-size: 2rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.65rem;
    display: block;
}

.home-testimonial-card p {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.home-testimonial-card footer strong {
    display: block;
    color: var(--navy);
    font-size: 0.84rem;
}

.home-testimonial-card footer span {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.home-contact-section {
    background: var(--red);
    padding: 3rem 0;
    color: #fff;
    content-visibility: auto;
    contain-intrinsic-size: auto 450px;
}

.home-contact-info h3,
.home-contact-map h4 {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.home-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    line-height: 1.55;
}

.home-contact-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.home-contact-item a {
    color: #fff;
    text-decoration: underline;
}

.home-contact-form-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
}

.home-contact-form .form-control {
    border: none;
    border-radius: 6px;
    font-size: 0.86rem;
    padding: 0.65rem 0.85rem;
}

.home-contact-form .btn-light {
    color: var(--red);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-contact-map {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.home-contact-map-frame {
    flex: 1;
    min-height: 220px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.home-contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}

.home-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.65rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
}

@media (max-width: 1199.98px) {
    .home-categories-grid { grid-template-columns: repeat(4, 1fr); }
    .home-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .home-hero {
        display: block;
        background: #050a14;
        min-height: auto;
        overflow: hidden;
    }

    .home-hero--image-only,
    .home-hero--image-only .home-hero-swiper,
    .home-hero--image-only .home-hero-slide {
        min-height: 0 !important;
        height: auto !important;
    }

    .home-hero-swiper {
        position: relative;
        min-height: auto;
    }

    .home-hero-swiper .swiper-slide {
        position: relative !important;
    }

    .home-hero-slide {
        display: flex;
        flex-direction: column;
        background: #050a14;
        height: auto !important;
        min-height: auto;
    }

    .home-hero-slide .container {
        order: 1;
        position: relative;
        z-index: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        background: #050a14;
    }

    .home-hero-slide .container > .row {
        margin: 0;
    }

    .home-hero-slide .container > .row > [class*="col-"] {
        padding: 0;
    }

    .home-hero-eyebrow {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.65rem;
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.72);
        margin: 0 0 0.8rem;
    }

    .home-hero-eyebrow::before,
    .home-hero-eyebrow::after {
        content: '';
        flex: 1;
        max-width: 44px;
        height: 1px;
        background: rgba(255, 255, 255, 0.32);
    }

    .home-hero-content {
        padding: 1.15rem 1rem 0.9rem;
        max-width: 100%;
        text-align: center;
        color: #fff;
    }

    .home-hero-content h1 {
        font-size: 0.92rem;
        line-height: 1.28;
        margin-bottom: 0.45rem;
    }

    .home-hero-lead {
        font-size: 0.8rem;
        line-height: 1.55;
        margin-bottom: 0.7rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: rgba(255, 255, 255, 0.88);
    }

    .home-hero-features-mobile {
        margin-bottom: 0.85rem;
    }

    .home-hero-feature-line-mobile {
        font-size: 0.64rem;
        line-height: 1.55;
        margin: 0;
        color: #5ec4ff;
        font-weight: 500;
    }

    .home-hero-feature-line-mobile .home-hero-sep {
        margin: 0 0.35rem;
        color: rgba(94, 196, 255, 0.45);
    }

    .home-hero-buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }

    .home-hero-buttons .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.74rem;
        padding: 0.72rem 1rem;
        border-radius: 4px;
    }

    .home-hero-bg {
        position: relative;
        inset: auto;
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 210px;
        max-height: 320px;
        background: #050a14;
        overflow: hidden;
    }

    .home-hero-bg::before {
        display: none;
    }

    .home-hero-bg::after {
        display: none;
    }

    .home-hero-bg img {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: scale(0.86);
        transform-origin: center center;
        display: block;
    }

    .home-hero-img-mobile--custom {
        transform: none;
        object-fit: cover;
        object-position: center center;
    }

    .home-hero-pagination {
        position: absolute !important;
        bottom: 0.7rem !important;
        left: 0;
        right: 0;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 6;
    }

    .home-hero-pagination .swiper-pagination-bullet {
        width: 32px;
        height: 3px;
        border-radius: 2px;
        opacity: 0.35;
        margin: 0 4px !important;
        background: #fff;
    }

    .home-hero-pagination .swiper-pagination-bullet-active {
        opacity: 1;
        background: #fff;
        transform: none;
    }

    .home-trust-bar {
        padding: 0.75rem 0;
    }

    .home-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.55rem 0.65rem;
    }

    .home-trust-item i {
        font-size: 1.15rem;
    }

    .home-trust-item strong {
        font-size: 0.82rem;
    }

    .home-trust-item span {
        font-size: 0.58rem;
    }

    .home-categories-grid { grid-template-columns: repeat(3, 1fr); }
    .popular-slider-wrap { padding: 0 2rem; }
}

@media (max-width: 767.98px) {
    .home-categories-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .home-category-image { height: 100px; }
    .brands-mini-grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 575.98px) {
    .home-hero-content h1 { font-size: 0.85rem; }
    .home-hero-lead { font-size: 0.68rem; }
    .home-hero-feature-line-mobile { font-size: 0.58rem; }
    .home-hero-buttons { flex-direction: column; }
    .home-hero-buttons .btn { width: 100%; justify-content: center; }
    .home-trust-grid { gap: 0.5rem; }
    .popular-slider-wrap { padding: 0 1.75rem; }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1080;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -8px 30px rgba(7, 27, 52, 0.22);
    border-top: 3px solid var(--red);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.cookie-consent-text {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-width: 0;
}

.cookie-consent-text > i {
    color: var(--red);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.55;
}

.cookie-consent-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-text a:hover {
    color: var(--red);
}

.cookie-consent-actions {
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--red);
    color: #fff;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    padding: 0.55rem 1.35rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--red-dark);
    color: #fff;
}

@media (max-width: 991.98px) {
    .cookie-consent {
        bottom: 62px;
    }

    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 0.85rem;
    }

    .cookie-consent-actions .btn-cookie-accept {
        width: 100%;
    }
}

/* Page Loader */
.page-loader {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    text-align: center;
    padding: 1.5rem;
    max-width: 90vw;
}

.page-loader-logo {
    display: block;
    max-width: 240px;
    width: min(72vw, 240px);
    height: auto;
    margin: 0 auto 1.35rem;
    animation: loaderLogoIn 0.55s ease;
}

.page-loader-spinner {
    width: 42px;
    height: 42px;
    margin: 0 auto 0.85rem;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: loaderSpin 0.75s linear infinite;
}

.page-loader-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderLogoIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader-logo,
    .page-loader-spinner {
        animation: none;
    }

    .page-loader {
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }
}
