/* =========================================================
   Belmont Lubricants - Main Frontend CSS
   Pages: Home, About, Products, Product Detail, Contact, Distributor
   Theme: Dark Blue + Yellow
========================================================= */

/* ================= ROOT VARIABLES ================= */

:root {
    --bl-primary-blue: #b3141e;
    --bl-secondary-blue: #8f0d15;
    --bl-dark-blue: #750912;
    --bl-deep-blue: #4f050b;

    --bl-primary-yellow: #ffdd00;
    --bl-secondary-yellow: #ffc400;
    --bl-yellow: #ffdd00;
    --bl-gold: #f5b400;

    --bl-white: #ffffff;
    --bl-black: #000000;
    --bl-light-bg: #f7f9fc;
    --bl-soft-bg: #eef3f9;
    --bl-light: #f7f9fc;
    --bl-border: #dfe6ef;

    --bl-text-dark: #141414;
    --bl-text-muted: #6b7280;
    --bl-text-light: #ffffff;

    --bl-blue-gradient: linear-gradient(135deg, #4f050b 0%, #750912 45%, #b3141e 100%);
    --bl-yellow-gradient: linear-gradient(135deg, #ffdd00 0%, #f5b400 100%);
    --bl-premium-gradient: linear-gradient(135deg, #4f050b 0%, #b3141e 60%, #ffdd00 100%);

    --bl-shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.08);
    --bl-shadow-md: 0 14px 35px rgba(0, 0, 0, 0.15);
    --bl-shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.25);
    --bl-shadow-premium: 0 18px 50px rgba(100, 8, 15, 0.22);

    --bl-radius-sm: 8px;
    --bl-radius-md: 16px;
    --bl-radius-lg: 28px;
    --bl-radius-xl: 36px;
    --bl-radius-full: 999px;

    --bl-container: 1200px;
    --bl-section-padding: 45px 0;

    --bl-font-main: Arial, Helvetica, sans-serif;
    --bl-font-heading: Arial, Helvetica, sans-serif;

    --bl-transition: 0.35s ease;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #ffdd00 #750912;
}

body {
    font-family: var(--bl-font-main);
    background: var(--bl-white);
    color: var(--bl-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.navbar,
.btn,
.menu,
.product-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

/* ================= COMMON LAYOUT ================= */

.bl-container {
    width: 92%;
    max-width: var(--bl-container);
    margin: 0 auto;
}

.bl-main {
    min-height: 60vh;
}

.bl-section {
    padding: var(--bl-section-padding);
}

.bl-section-light {
    background: var(--bl-light-bg);
}

.bl-section-dark {
    background: var(--bl-blue-gradient);
    color: var(--bl-white);
}

.bl-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.bl-section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 221, 0, 0.14);
    color: var(--bl-gold);
    padding: 8px 18px;
    border-radius: var(--bl-radius-full);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 221, 0, 0.25);
}

.bl-section-title {
    font-size: 42px;
    line-height: 1.15;
    color: var(--bl-dark-blue);
    font-weight: 900;
    margin-bottom: 14px;
}

.bl-section-dark .bl-section-title {
    color: var(--bl-white);
}

.bl-section-text {
    color: var(--bl-text-muted);
    font-size: 17px;
}

.bl-section-dark .bl-section-text {
    color: rgba(255, 255, 255, 0.76);
}

/* ================= BUTTONS ================= */

.bl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 28px;
    border-radius: var(--bl-radius-full);
    font-weight: 800;
    font-size: 15px;
    transition: var(--bl-transition);
    white-space: nowrap;
}

.bl-btn-primary {
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    box-shadow: 0 12px 30px rgba(245, 180, 0, 0.28);
}

.bl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(245, 180, 0, 0.42);
}

.bl-btn-blue {
    background: var(--bl-blue-gradient);
    color: var(--bl-white);
    box-shadow: var(--bl-shadow-sm);
}

.bl-btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: var(--bl-shadow-md);
}

.bl-btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--bl-white);
    background: transparent;
}

.bl-btn-outline:hover {
    background: var(--bl-white);
    color: var(--bl-dark-blue);
}

/* ================= TOP BAR ================= */

.bl-topbar {
    background: linear-gradient(90deg, #4f050b 0%, #750912 45%, #b3141e 100%);
    color: var(--bl-white);
    padding: 10px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.bl-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 221, 0, 0.12) 45%, transparent 75%);
    animation: blTopShine 5s linear infinite;
}

@keyframes blTopShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.bl-topbar-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.bl-topbar-left,
.bl-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.bl-topbar a,
.bl-topbar span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.bl-topbar i {
    color: var(--bl-yellow);
    margin-right: 6px;
}

.bl-topbar a:hover {
    color: var(--bl-yellow);
}

/* ================= PREMIUM HEADER ================= */

.bl-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffc603;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(104, 7, 13, 0.25);
    box-shadow: var(--bl-shadow-premium);
}

.bl-header.scrolled {
    background: #ffc603;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.bl-header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.bl-logo {
    position: relative;
    display: flex;
    align-items: center;
    /*min-width: 150px;*/
    /*padding: 10px 18px;*/
    /*border-radius: 22px;*/
    /*background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));*/
    /*box-shadow:*/
    /*    inset 0 0 0 1px rgba(255, 255, 255, 0.8),*/
    /*    0 12px 30px rgba(0, 0, 0, 0.18);*/
    overflow: hidden;
}

.bl-logo::after {
    content: "";
    position: absolute;
    width: 75px;
    height: 140px;
    left: -90px;
    top: -30px;
    background: linear-gradient(90deg, transparent, rgba(255, 221, 0, 0.55), transparent);
    transform: rotate(24deg);
    transition: 0.7s ease;
}

.bl-logo:hover::after {
    left: 120%;
}

.bl-logo img {
    position: relative;
    z-index: 2;
    max-height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--bl-transition);
}

.bl-logo:hover img {
    transform: scale(1.05);
}

.bl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bl-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    border-radius: 5px;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    overflow: hidden;
    transition: var(--bl-transition);
}

.bl-nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, rgba(255, 221, 0, 0.18), rgba(245, 180, 0, 0.08));*/
    opacity: 0;
    transform: scale(0.85);
    border-radius: inherit;
    transition: var(--bl-transition);
}

.bl-nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 7px;
    height: 3px;
    background: #8f0d15;
    border-radius: 20px;
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--bl-transition);
}

.bl-nav-link:hover {
    color: #8f0d15;
    transform: translateY(-2px);
}

.bl-nav-link:hover::before,
.bl-nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

.bl-nav-link:hover::after,
.bl-nav-link.active::after {
    transform: scaleX(1);
}

.bl-nav-link.active {
    color: #8f0d15;
}

.bl-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bl-header-actions .bl-btn-primary {
    position: relative;
    border: 0;
    color: var(--bl-deep-blue);
    background: var(--bl-yellow-gradient);
    box-shadow:
        0 12px 30px rgba(255, 221, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.bl-header-actions .bl-btn-primary::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 130px;
    left: -70px;
    top: -35px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    transform: rotate(24deg);
    transition: 0.7s ease;
}

.bl-header-actions .bl-btn-primary:hover::before {
    left: 130%;
}

.bl-header-actions .bl-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 40px rgba(255, 221, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bl-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(117, 9, 18, 0.35);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.24);
    color: #750912;
    font-size: 21px;
    cursor: pointer;
    transition: var(--bl-transition);
}

.bl-menu-toggle:hover {
    background: #750912;
    color: #ffdd00;
}

/* ================= PAGE HERO ================= */

.bl-page-hero {
    position: relative;
    padding: 105px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 0, 0.22), transparent 28%),
        var(--bl-blue-gradient);
    color: var(--bl-white);
    overflow: hidden;
}

.bl-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%);
    background-size: 42px 42px;
    opacity: 0.45;
}

.bl-page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.bl-page-kicker {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: var(--bl-radius-full);
    background: rgba(255, 221, 0, 0.16);
    color: var(--bl-primary-yellow);
    font-weight: 900;
    margin-bottom: 18px;
}

.bl-page-title {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 950;
    margin-bottom: 18px;
}

.bl-page-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.78);
    max-width: 650px;
}

/* ================= HOME PAGE ================= */

.home-hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    color: var(--bl-white);
    background:
        radial-gradient(circle at 80% 20%, rgba(255, 221, 0, 0.30), transparent 25%),
        radial-gradient(circle at 20% 80%, rgba(179, 20, 30, 0.55), transparent 30%),
        var(--bl-blue-gradient);
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(100, 8, 15, 0.92), rgba(117, 9, 18, 0.72), rgba(179, 20, 30, 0.34)),
        url("../images/hero-blue.jpg") center/cover no-repeat;
    opacity: 0.95;
}

.home-hero::after {
    content: "";
    position: absolute;
    width: 620px;
    height: 620px;
    right: -180px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(255, 221, 0, 0.18);
    filter: blur(4px);
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 55px;
}

.home-hero-content {
    max-width: 700px;
}

.home-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: var(--bl-radius-full);
    background: rgba(255, 221, 0, 0.15);
    border: 1px solid rgba(255, 221, 0, 0.35);
    color: var(--bl-primary-yellow);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 20px;
}

.home-hero-title {
    font-size: 62px;
    line-height: 1.02;
    font-weight: 950;
    margin-bottom: 20px;
}

.home-hero-title span {
    color: var(--bl-primary-yellow);
}

.home-hero-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    max-width: 610px;
    margin-bottom: 30px;
}

.home-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
    max-width: 650px;
}

.home-stat-box {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--bl-radius-lg);
    padding: 18px;
    backdrop-filter: blur(8px);
}

.home-stat-number {
    display: block;
    color: var(--bl-primary-yellow);
    font-size: 28px;
    font-weight: 950;
}

.home-stat-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.home-hero-product {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-product-glow {
    position: absolute;
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: var(--bl-yellow-gradient);
    filter: blur(24px);
    opacity: 0.22;
}

.home-product-image {
    position: relative;
    z-index: 2;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.42));
    animation: blFloat 4s ease-in-out infinite;
}

@keyframes blFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* ================= HOME CATEGORY PREMIUM DESIGN ================= */

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.home-category-card {
    position: relative;
    display: block;
    background: var(--bl-white);
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid var(--bl-border);
    box-shadow: 0 12px 32px rgba(100, 8, 15, 0.10);
    transition: 0.35s ease;
}

.home-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(100, 8, 15, 0.22);
    border-color: rgba(255, 221, 0, 0.75);
}

.home-category-image-wrap {
    width: 100%;
    height: 285px;
    background: var(--bl-soft-bg);
    overflow: hidden;
    position: relative;
}

.home-category-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(*/
    /*    180deg,*/
    /*    rgba(100, 8, 15, 0.05) 0%,*/
    /*    rgba(100, 8, 15, 0.18) 100%*/
    /*);*/
    z-index: 1;
}

.home-category-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: 0.45s ease;
}

.home-category-card:hover .home-category-image {
    transform: scale(1.08);
}

.home-category-body {
    position: relative;
    padding: 24px 22px 26px;
    text-align: center;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 0, 0.18), transparent 35%),
        linear-gradient(135deg, var(--bl-deep-blue), var(--bl-primary-blue));
}

.home-category-body::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: var(--bl-yellow-gradient);
    border-radius: 999px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.home-category-title {
    position: relative;
    z-index: 2;
    color: var(--bl-white);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 950;
    margin-bottom: 18px;
}

.home-category-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    padding: 12px 24px;
    border-radius: var(--bl-radius-full);
    font-size: 14px;
    font-weight: 950;
    box-shadow: 0 10px 25px rgba(255, 221, 0, 0.25);
    transition: 0.35s ease;
}

.home-category-card:hover .home-category-link {
    background: var(--bl-white);
    color: var(--bl-primary-blue);
    transform: translateY(-2px);
}

.home-category-link i {
    transition: 0.35s ease;
}

.home-category-card:hover .home-category-link i {
    transform: translateX(4px);
}

.home-about-wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 55px;
}

.home-about-image-box {
    position: relative;
    border-radius: var(--bl-radius-xl);
    overflow: hidden;
    box-shadow: var(--bl-shadow-lg);
}

.home-about-image-box img {
    width: 100%;
    min-height: 450px;
    object-fit: cover;
}

.home-about-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    border-radius: var(--bl-radius-lg);
    padding: 20px 24px;
    box-shadow: var(--bl-shadow-md);
}

.home-about-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
}

.home-about-badge span {
    font-weight: 800;
}

.home-about-content .bl-section-title,
.about-content .bl-section-title {
    text-align: left;
}

.home-about-list {
    margin-top: 25px;
    display: grid;
    gap: 14px;
}

.home-about-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--bl-text-dark);
    font-weight: 700;
}

.home-about-list li::before {
    content: "✓";
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 50%;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.home-cta-box {
    background:
        radial-gradient(circle at top right, rgba(255, 221, 0, 0.28), transparent 30%),
        var(--bl-blue-gradient);
    color: var(--bl-white);
    border-radius: var(--bl-radius-xl);
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    overflow: hidden;
    position: relative;
}

.home-cta-title {
    font-size: 34px;
    font-weight: 950;
    margin-bottom: 10px;
}

.home-cta-text {
    color: rgba(255, 255, 255, 0.76);
    max-width: 650px;
}
/* ================= HOME CATEGORY CARDS ================= */

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.home-category-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, var(--bl-deep-blue), var(--bl-primary-blue));
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.home-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.home-category-image-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.home-category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 1200px) {
    .home-category-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .home-category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .home-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 380px) {
    .home-category-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* Optional: Add subtle category name overlay on hover */
.home-category-card .category-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    padding: 40px 15px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home-category-card:hover .category-name-overlay {
    opacity: 1;
}
/* ================= ABOUT PAGE ================= */

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.about-image {
    border-radius: var(--bl-radius-xl);
    overflow: hidden;
    box-shadow: var(--bl-shadow-lg);
}

.about-image img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
}

.about-content p {
    color: var(--bl-text-muted);
    margin-bottom: 16px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: var(--bl-white);
    padding: 30px;
    border-radius: var(--bl-radius-lg);
    border: 1px solid var(--bl-border);
    box-shadow: var(--bl-shadow-sm);
    transition: var(--bl-transition);
}

.about-value-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--bl-shadow-md);
}

.about-value-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--bl-radius-md);
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.about-value-title {
    color: var(--bl-dark-blue);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.about-value-text {
    color: var(--bl-text-muted);
}

/* ================= PRODUCTS PAGE ================= */

.products-layout {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 30px;
    align-items: flex-start;
}

.products-sidebar {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    padding: 22px;
    border: 1px solid var(--bl-border);
    box-shadow: var(--bl-shadow-sm);
    position: sticky;
    top: 115px;
}

.products-sidebar-title {
    color: var(--bl-dark-blue);
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 18px;
}

.products-category-list {
    display: grid;
    gap: 10px;
}

.products-category-link {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 13px 15px;
    border-radius: var(--bl-radius-md);
    background: var(--bl-light-bg);
    color: var(--bl-dark-blue);
    font-weight: 800;
    transition: var(--bl-transition);
}

.products-category-link:hover,
.products-category-link.active {
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    transform: translateX(4px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products-card {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    border: 1px solid var(--bl-border);
    overflow: hidden;
    box-shadow: var(--bl-shadow-sm);
    transition: var(--bl-transition);
}

.products-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--bl-shadow-md);
}

.products-card-image {
    background: var(--bl-soft-bg);
    height: 230px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-card-image img {
    max-height: 190px;
    object-fit: contain;
    transition: var(--bl-transition);
}

.products-card:hover .products-card-image img {
    transform: scale(1.06);
}

.products-card-content {
    padding: 22px;
}

.products-card-category {
    display: inline-flex;
    background: rgba(255, 221, 0, 0.18);
    color: var(--bl-primary-blue);
    border-radius: var(--bl-radius-full);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.products-card-title {
    color: var(--bl-dark-blue);
    font-size: 21px;
    font-weight: 950;
    margin-bottom: 9px;
}

.products-card-text {
    color: var(--bl-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.products-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.products-meta-item {
    background: var(--bl-light-bg);
    color: var(--bl-text-dark);
    padding: 6px 10px;
    border-radius: var(--bl-radius-full);
    font-size: 12px;
    font-weight: 800;
}

/* ================= PRODUCT DETAIL PAGE ================= */

.detail-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: flex-start;
}

.detail-image-box {
    background: var(--bl-soft-bg);
    border-radius: var(--bl-radius-xl);
    padding: 40px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--bl-shadow-sm);
    border: 1px solid var(--bl-border);
}

.detail-image-box img {
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 25px 28px rgba(0, 0, 0, 0.18));
}

.detail-content {
    background: var(--bl-white);
    border-radius: var(--bl-radius-xl);
    padding: 35px;
    border: 1px solid var(--bl-border);
    box-shadow: var(--bl-shadow-sm);
}

.detail-category {
    display: inline-flex;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    border-radius: var(--bl-radius-full);
    padding: 7px 15px;
    font-size: 13px;
    font-weight: 950;
    margin-bottom: 16px;
}

.detail-title {
    color: var(--bl-dark-blue);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 950;
    margin-bottom: 15px;
}

.detail-short-text {
    color: var(--bl-text-muted);
    font-size: 17px;
    margin-bottom: 25px;
}

.detail-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
}

.detail-info-card {
    background: var(--bl-light-bg);
    border-radius: var(--bl-radius-md);
    padding: 16px;
    border: 1px solid var(--bl-border);
}

.detail-info-label {
    display: block;
    color: var(--bl-text-muted);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 5px;
}

.detail-info-value {
    color: var(--bl-dark-blue);
    font-weight: 950;
}

.detail-description {
    color: var(--bl-text-muted);
    margin-bottom: 25px;
}

.detail-feature-list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.detail-feature-list li {
    display: flex;
    gap: 12px;
    color: var(--bl-text-dark);
    font-weight: 700;
}

.detail-feature-list li::before {
    content: "✓";
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

/* ================= CONTACT PAGE ================= */

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 35px;
    align-items: flex-start;
}

.contact-info-panel {
    background: var(--bl-blue-gradient);
    color: var(--bl-white);
    border-radius: var(--bl-radius-xl);
    padding: 35px;
    box-shadow: var(--bl-shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-panel::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -80px;
    background: var(--bl-yellow-gradient);
    border-radius: 50%;
    opacity: 0.18;
}

.contact-info-title {
    position: relative;
    z-index: 2;
    font-size: 30px;
    font-weight: 950;
    margin-bottom: 12px;
}

.contact-info-text {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.contact-info-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--bl-radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: var(--bl-radius-md);
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
}

.contact-info-item strong {
    display: block;
    color: var(--bl-white);
    margin-bottom: 3px;
}

.contact-info-item span,
.contact-info-item a {
    color: rgba(255, 255, 255, 0.76);
}

.contact-form-box {
    background: var(--bl-white);
    border: 1px solid var(--bl-border);
    border-radius: var(--bl-radius-xl);
    padding: 35px;
    box-shadow: var(--bl-shadow-sm);
}

.contact-form-title {
    color: var(--bl-dark-blue);
    font-size: 30px;
    font-weight: 950;
    margin-bottom: 22px;
}

/* ================= DISTRIBUTOR PAGE ================= */

.distributor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.distributor-benefit-card {
    background: var(--bl-white);
    border-radius: var(--bl-radius-lg);
    border: 1px solid var(--bl-border);
    padding: 26px;
    box-shadow: var(--bl-shadow-sm);
    transition: var(--bl-transition);
}

.distributor-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--bl-shadow-md);
}

.distributor-benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--bl-radius-md);
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin-bottom: 16px;
}

.distributor-benefit-title {
    color: var(--bl-dark-blue);
    font-size: 20px;
    font-weight: 950;
    margin-bottom: 8px;
}

.distributor-benefit-text {
    color: var(--bl-text-muted);
    font-size: 14px;
}

.distributor-form-section {
    background:
        radial-gradient(circle at top left, rgba(255, 221, 0, 0.18), transparent 28%),
        var(--bl-blue-gradient);
}

.distributor-form-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.distributor-form-content {
    color: var(--bl-white);
}

.distributor-form-content h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 950;
    margin-bottom: 16px;
}

.distributor-form-content p {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 24px;
}

.distributor-points {
    display: grid;
    gap: 12px;
}

.distributor-points li {
    display: flex;
    gap: 12px;
    font-weight: 800;
}

.distributor-points li::before {
    content: "✓";
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.distributor-form-box {
    background: var(--bl-white);
    border-radius: var(--bl-radius-xl);
    padding: 35px;
    box-shadow: var(--bl-shadow-lg);
}

.distributor-form-title {
    color: var(--bl-dark-blue);
    font-size: 30px;
    font-weight: 950;
    margin-bottom: 22px;
}

/* ================= FORMS COMMON ================= */

.bl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.bl-form-group {
    margin-bottom: 18px;
}

.bl-form-group.bl-full {
    grid-column: 1 / -1;
}

.bl-form-label {
    display: block;
    color: var(--bl-dark-blue);
    font-weight: 850;
    margin-bottom: 8px;
}

.bl-form-control {
    width: 100%;
    height: 50px;
    border: 1px solid var(--bl-border);
    border-radius: var(--bl-radius-md);
    padding: 0 15px;
    outline: none;
    background: var(--bl-white);
    color: var(--bl-text-dark);
    font-size: 15px;
    transition: var(--bl-transition);
}

textarea.bl-form-control {
    height: auto;
    min-height: 140px;
    padding: 14px 15px;
    resize: vertical;
}

.bl-form-control:focus {
    border-color: var(--bl-primary-blue);
    box-shadow: 0 0 0 4px rgba(179, 20, 30, 0.09);
}

/* ================= FOOTER ================= */

.bl-footer {
    background: var(--bl-deep-blue);
    color: var(--bl-white);
    padding-top: 75px;
}

.bl-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 34px;
    padding-bottom: 5px;
}

.bl-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.bl-footer-logo img {
    max-height: 58px;
    width: auto;
}

.bl-footer-title {
    color: var(--bl-primary-yellow);
    font-size: 22px;
    font-weight: 950;
}

.bl-footer-text {
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 20px;
}

.bl-footer-heading {
    color: var(--bl-white);
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 18px;
}

.bl-footer-links {
    display: grid;
    gap: 10px;
}

.bl-footer-links a {
    color: rgba(255, 255, 255, 0.70);
    transition: var(--bl-transition);
    display: flex;
    align-items: center;
    gap: 9px;
}

.bl-footer-links a i {
    width: 17px;
    flex: 0 0 17px;
    color: var(--bl-primary-yellow);
    font-size: 13px;
    text-align: center;
}

.bl-footer-links a:hover {
    color: var(--bl-primary-yellow);
    transform: translateX(4px);
}

.bl-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bl-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    color: var(--bl-primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--bl-transition);
}

.bl-social-link:hover {
    background: var(--bl-yellow-gradient);
    color: var(--bl-deep-blue);
    transform: translateY(-3px);
}

.bl-footer-contact {
    display: grid;
    gap: 12px;
}

.bl-footer-contact li {
    color: rgba(255, 255, 255, 0.72);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.bl-footer-contact i {
    color: var(--bl-primary-yellow);
    margin-top: 4px;
}

.bl-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

/* ================= UTILITIES ================= */

.bl-empty-box {
    background: var(--bl-white);
    border: 1px dashed var(--bl-border);
    border-radius: var(--bl-radius-lg);
    padding: 35px;
    text-align: center;
    color: var(--bl-text-muted);
}

.bl-breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.bl-breadcrumb a {
    color: var(--bl-primary-yellow);
    font-weight: 800;
}

/* ================= HEADER RESPONSIVE ================= */

@media (max-width: 1100px) {
    .bl-nav-link {
        padding: 12px 11px;
        font-size: 14px;
    }

    .bl-header-actions .bl-btn-primary {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .bl-topbar {
        display: none;
    }

    .bl-header-inner {
        min-height: 78px;
    }

    .bl-logo {
        padding: 8px 14px;
        min-width: 120px;
    }

    .bl-logo img {
        max-height: 48px;
    }

    .bl-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .bl-header-actions .bl-btn-primary {
        display: none;
    }

    .bl-nav {
        position: fixed;
        top: 0;
        right: -110%;
        width: min(86vw, 360px);
        height: 100vh;
        padding: 105px 24px 28px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        background:
            radial-gradient(circle at top right, rgba(255, 221, 0, 0.18), transparent 28%),
            linear-gradient(160deg, #5c0710, #b3141e);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.42);
        transition: 0.45s ease;
        z-index: 1000;
    }

    .bl-nav.active {
        right: 0;
    }

    .bl-nav::before {
        content: "Menu";
        position: absolute;
        top: 34px;
        left: 26px;
        color: var(--bl-yellow);
        font-size: 24px;
        font-weight: 950;
    }

    .bl-nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.10);
        color: rgba(255, 255, 255, 0.9);
    }

    .bl-nav-link.active {
        background: var(--bl-yellow-gradient);
        color: var(--bl-deep-blue);
    }

    .bl-nav-link::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .bl-header-inner {
        min-height: 72px;
        gap: 12px;
    }

    .bl-logo {
        max-width: 145px;
        border-radius: 18px;
    }

    .bl-logo img {
        max-height: 42px;
    }

    .bl-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #750912;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffdd00, #f5b400);
    border-radius: 999px;
    border: 2px solid #750912;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5b400, #ffdd00);
}

/* =========================================================
   BELMONT BRAND HEADER + PRODUCT TICKER
========================================================= */
.bl-product-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 221, 0, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(105, 7, 13, 0.98), rgba(179, 20, 30, 0.98));
    border-bottom: 1px solid rgba(255, 221, 0, 0.22);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
    z-index: 998;
}

.bl-product-ticker::before,
.bl-product-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 3;
    pointer-events: none;
}

.bl-product-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #69070d, transparent);
}

.bl-product-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #b3141e, transparent);
}

.bl-product-ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: blProductTickerMove 34s linear infinite;
    will-change: transform;
}

.bl-product-ticker:hover .bl-product-ticker-track {
    animation-play-state: paused;
}

.bl-product-ticker-item {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 6px 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: transform 0.25s ease, color 0.25s ease;
}

.bl-product-ticker-item:hover {
    color: #ffdd00;
    transform: translateY(-1px);
}

.bl-product-ticker-item > i {
    color: #ffdd00;
    font-size: 10px;
}

.bl-product-ticker-image {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(255, 221, 0, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bl-product-ticker-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

@keyframes blProductTickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 767px) {
    .bl-product-ticker::before,
    .bl-product-ticker::after {
        width: 34px;
    }

    .bl-product-ticker-track {
        animation-duration: 24s;
    }

    .bl-product-ticker-item {
        min-height: 42px;
        padding: 5px 14px;
        font-size: 12px;
    }

    .bl-product-ticker-image {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bl-product-ticker-track {
        animation: none;
    }
}

/* Navbar Enquiry Now button only */
.bl-header-actions .bl-btn.bl-btn-primary {
    background: #00833f;
    color: #ffffff;
    box-shadow:
        0 12px 30px rgba(0, 131, 63, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.bl-header-actions .bl-btn.bl-btn-primary:hover {
    background: #00833f;
    color: #ffffff;
    box-shadow:
        0 18px 40px rgba(0, 131, 63, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
