:root {
    --navy: #0b1a2e;
    --navy-light: #132842;
    --gold: #c9a227;
    --gold-hover: #dbb84a;
    --cream: #f4f1ea;
    --text-muted: #8fa3bf;
    --surface: #f8f9fc;
    --radius: 12px;
    --shadow: 0 12px 40px rgba(11, 26, 46, 0.12);
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    color: #1a2b42;
    background: #fff;
    line-height: 1.6;
}

h1, h2, h3, .hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
}

.site-header {
    background: rgba(11, 26, 46, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: #fff !important;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
}

.lang-switch .dropdown-menu {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.btn-gold {
    background: var(--gold);
    border: none;
    color: var(--navy);
    font-weight: 600;
}

.btn-gold:hover {
    background: var(--gold-hover);
    color: var(--navy);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--navy);
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.hero {
    position: relative;
    padding: 5rem 0 6rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy-light) 100%);
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(201, 162, 39, 0.15), transparent 50%);
    pointer-events: none;
}

.hero .container {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
    color: var(--cream);
}

.hero-title {
    font-size: clamp(1.85rem, 5vw, 3rem);
    color: #fff;
    max-width: 820px;
    margin: 0 auto 1rem;
    text-align: center;
    line-height: 1.2;
}

.hero-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.section-padding {
    padding: 4rem 0;
}

.bg-surface {
    background: var(--surface);
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.text-muted-lead {
    color: #5a6d85;
    max-width: 560px;
    margin: 0 auto;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(11, 26, 46, 0.18);
}

/* Home featured products */
.home-featured-products {
    background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
    border-bottom: 1px solid rgba(11, 26, 46, 0.06);
}

.home-section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.home-products-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.15rem);
    margin-bottom: 0.75rem;
}

.home-product-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.product-card-home {
    border: 1px solid rgba(11, 26, 46, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card-home:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 22px 48px rgba(11, 26, 46, 0.14);
}

.product-card-home .product-card-img {
    aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, #f0f4fa 0%, #e2eaf4 100%);
}

.product-card-home .product-card-title {
    font-size: 1.12rem;
    min-height: 2.6em;
}

.product-card-home .product-card-desc {
    -webkit-line-clamp: 2;
    min-height: 2.9em;
}

.product-card-actions-home {
    flex-direction: column;
    margin-top: auto;
}

.product-card-home .product-card-body {
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.5rem 1.5rem;
}

.home-products-footer .btn-lg {
    min-width: 10rem;
}

@media (max-width: 575.98px) {
    .home-products-footer .btn-lg {
        width: 100%;
        max-width: 280px;
    }
}

.product-card-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #e8edf5, #d4dce8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--navy);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.product-card-title {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.product-card-desc {
    font-size: 0.9rem;
    color: #5a6d85;
    margin-bottom: 1rem;
}

.feature-card {
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e8edf5;
    height: 100%;
}

.feature-icon {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-teaser {
    background: var(--navy);
    color: #fff;
}

.about-teaser h2 {
    color: #fff;
}

.lead-about {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.about-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-stat {
    text-align: center;
    padding: 1.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 162, 39, 0.25);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.page-hero {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--surface), #fff);
}

.page-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: #5a6d85;
    max-width: 600px;
    margin: 0 auto;
}

.content-narrow {
    max-width: 760px;
}

.about-list li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.commitment-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    border-left: 4px solid var(--gold);
}

.commitment-card h3 {
    font-family: var(--font-display);
    color: var(--gold);
    font-size: 1.75rem;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info-card dt {
    font-weight: 600;
    color: var(--navy);
    margin-top: 1rem;
}

.contact-info-card dt:first-child {
    margin-top: 0;
}

.contact-info-card dd a {
    color: var(--gold);
    text-decoration: none;
}

.contact-info-card dd a:hover {
    text-decoration: underline;
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 2.5rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    color: #fff;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 1.5rem 0 1rem;
}

.text-muted-small {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 162, 39, 0.25);
}

@media (max-width: 991.98px) {
    .hero {
        padding: 3.5rem 0 4rem;
    }

    .navbar-collapse {
        padding: 1rem 0;
    }

    .lang-switch {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-badges .col-auto {
        width: 100%;
        text-align: center;
    }

    .hero-badge {
        font-size: 0.72rem;
    }

    .about-visual {
        grid-template-columns: 1fr;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        right: 1rem;
        bottom: 1rem;
    }
}

/* Floating WhatsApp (reference: jingsourcing.com) */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem 0.65rem 0.75rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px) scale(0.95);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, box-shadow 0.2s ease;
}

.whatsapp-float.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.whatsapp-float:hover {
    color: #fff;
    background: #1ebe57;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    transform: translateY(-2px) scale(1.02);
}

.whatsapp-float.is-visible:hover {
    transform: translateY(-2px) scale(1.02);
}

.whatsapp-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.whatsapp-float-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.whatsapp-float-text {
    white-space: nowrap;
    padding-right: 0.15rem;
}

/* Product search & SEO detail pages */
.product-search-form {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.product-search-form .form-control {
    min-width: 140px;
    max-width: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.product-search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.product-search-hero .form-control {
    border-radius: 999px;
    padding-left: 1.25rem;
}

.search-result-hint {
    color: #5a6d85;
    font-size: 0.95rem;
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-title a {
    color: var(--navy);
    text-decoration: none;
}

.product-card-title a:hover {
    color: var(--gold);
}

.product-detail-img-wrap {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.product-detail-img-wrap img {
    width: 100%;
    border-radius: 8px;
}

.product-detail-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.product-detail .breadcrumb-item a {
    color: var(--navy);
}

.product-detail .breadcrumb-item.active {
    color: #5a6d85;
}

@media (max-width: 991.98px) {
    .product-search-nav {
        width: 100%;
        padding: 0.5rem 0;
    }

    .product-search-form {
        width: 100%;
    }

    .product-search-form .form-control {
        flex: 1;
        max-width: none;
    }
}

/* Promo video showcase */
#promo-videos {
    scroll-margin-top: 5.5rem;
}

.video-showcase {
    border-top: 1px solid rgba(11, 26, 46, 0.06);
}

.video-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.video-card--featured .video-title {
    font-size: 1.35rem;
}

.video-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--navy);
}

.video-ratio iframe,
.video-ratio video,
.video-poster,
.video-poster img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.video-poster {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    cursor: pointer;
    background: var(--navy);
}

.video-poster:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: -3px;
}

.video-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4rem;
    height: 4rem;
    margin: -2rem 0 0 -2rem;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.video-play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -0.55rem 0 0 -0.35rem;
    border: 0.65rem solid transparent;
    border-left: 1rem solid var(--navy);
}

.video-meta {
    padding: 1rem 1.25rem 1.25rem;
}

.video-title {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.video-desc {
    font-size: 0.9rem;
    color: #5a6d85;
}

@media (max-width: 991.98px) {
    .video-card--featured {
        margin-bottom: 0.5rem;
    }
}

/* About page */
.about-hero {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, #1a3555 100%);
    color: #fff;
}

.about-hero h1 {
    color: #fff;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.about-hero-sub {
    color: rgba(255, 255, 255, 0.78) !important;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.65;
}

.about-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
}

.about-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.about-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #2a3f58;
    margin-bottom: 1rem;
}

.about-text {
    color: #5a6d85;
    line-height: 1.75;
    margin-bottom: 0;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #3d5168;
    line-height: 1.5;
}

.about-highlight-icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.15);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    margin-top: 0.15rem;
}

.about-stats-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.about-stat-card {
    text-align: center;
    padding: 1.35rem 0.75rem;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(11, 26, 46, 0.06);
}

.about-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.about-stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a8fa8;
}

.about-service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 4px 20px rgba(11, 26, 46, 0.06);
    border: 1px solid rgba(11, 26, 46, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.about-service-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.about-service-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.about-service-card p {
    font-size: 0.9rem;
    color: #5a6d85;
    margin: 0;
    line-height: 1.6;
}

.about-strength-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(11, 26, 46, 0.06);
}

.about-strength-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.about-strength-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
}

.about-strength-card p {
    font-size: 0.92rem;
    color: #5a6d85;
    margin: 0;
    line-height: 1.65;
}

.about-process-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
}

.about-process-step {
    position: relative;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem;
    box-shadow: 0 4px 16px rgba(11, 26, 46, 0.06);
    border-top: 3px solid var(--gold);
}

.about-process-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.85rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.about-process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.about-process-step p {
    font-size: 0.88rem;
    color: #5a6d85;
    margin: 0;
    line-height: 1.55;
}

.commitment-card-v2 {
    border-left: none;
    border-top: 4px solid var(--gold);
    text-align: center;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(11, 26, 46, 0.06);
}

.commitment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
}

.commitment-card-v2 h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.65rem;
}

.commitment-card-v2 p {
    font-size: 0.92rem;
    color: #5a6d85;
    margin: 0;
    line-height: 1.65;
}

.about-cta-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
}

.about-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.about-cta-banner p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

@media (max-width: 991.98px) {
    .about-process-track {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .about-hero {
        padding: 2.5rem 0 2rem;
    }

    .about-stats-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .about-stat-card {
        padding: 1rem 0.5rem;
    }

    .about-process-track {
        grid-template-columns: 1fr;
    }

    .about-service-card,
    .about-strength-card {
        padding: 1.25rem;
    }

    .about-cta-banner {
        padding: 2.5rem 0;
    }

    .about-cta-banner .btn-lg {
        width: 100%;
        max-width: 280px;
    }
}

/* Products page */
.products-hero {
    padding: 3.5rem 0 2.5rem;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 55%, #1a3555 100%);
    color: #fff;
}

.products-hero h1 {
    color: #fff;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.products-hero-sub {
    color: rgba(255, 255, 255, 0.78);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
}

.products-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 999px;
}

.products-search-bar {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    gap: 0.5rem;
    padding: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
}

.products-search-bar .form-control {
    border: none;
    background: transparent;
    color: #fff;
    box-shadow: none;
    padding-left: 1rem;
}

.products-search-bar .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.products-search-bar .form-control:focus {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.products-search-bar .btn-gold {
    border-radius: 999px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    white-space: nowrap;
}

.products-trust-strip {
    background: #fff;
    border-bottom: 1px solid rgba(11, 26, 46, 0.06);
}

.products-trust-row {
    padding: 1.25rem 0;
}

.products-trust-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.products-trust-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
}

.products-trust-label {
    display: block;
    font-size: 0.82rem;
    color: #5a6d85;
    margin-top: 0.25rem;
    line-height: 1.45;
}

.products-sidebar {
    position: sticky;
    top: 5.5rem;
    background: #fff;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(11, 26, 46, 0.06);
    border: 1px solid rgba(11, 26, 46, 0.05);
}

.products-sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.products-filter-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.products-filter-link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    color: #3d5168;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.products-filter-link:hover {
    background: var(--surface);
    color: var(--navy);
}

.products-filter-link.active {
    background: var(--navy);
    color: var(--gold);
}

.products-sidebar-note {
    padding-top: 1.25rem;
    border-top: 1px solid #e8edf5;
}

.products-sidebar-note h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.products-sidebar-note p {
    font-size: 0.88rem;
    color: #5a6d85;
    line-height: 1.55;
    margin-bottom: 1rem;
}

.products-count {
    font-size: 0.95rem;
    color: #5a6d85;
}

.products-count strong {
    color: var(--navy);
}

.products-search-hint {
    font-size: 0.88rem;
    color: #5a6d85;
}

.products-search-hint a {
    margin-left: 0.35rem;
}

.products-filter-scroll {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-filter-scroll::-webkit-scrollbar {
    display: none;
}

.products-filter-chip {
    flex-shrink: 0;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    color: #3d5168;
    background: #fff;
    border: 1px solid #dde4ef;
}

.products-filter-chip.active {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

.product-badge-featured {
    left: auto;
    right: 0.75rem;
    background: var(--gold);
    color: var(--navy);
}

.product-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.product-card-tags li {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: var(--surface);
    color: #5a6d85;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card-actions {
    display: flex;
    gap: 0.5rem;
}

.products-cta-banner {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff;
}

.products-cta-banner h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.products-cta-banner p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

.product-detail-hero {
    padding: 1.25rem 0 0;
    background: var(--surface);
}

.product-detail-hero .breadcrumb-item a {
    color: var(--navy);
}

.product-detail-hero .breadcrumb-item.active {
    color: #5a6d85;
}

.product-detail-img-sticky {
    position: sticky;
    top: 5.5rem;
}

.product-detail-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-detail-lead {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #5a6d85;
    margin-bottom: 1.25rem;
}

.product-detail-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
}

.product-detail-highlights li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    color: #3d5168;
    line-height: 1.55;
}

.product-detail-highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--gold);
}

.product-detail-specs h2 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.product-spec-list {
    margin: 0;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid #e8edf5;
    overflow: hidden;
}

.product-spec-row {
    display: flex;
    gap: 1rem;
    padding: 0.85rem 1.15rem;
    border-bottom: 1px solid #eef2f8;
}

.product-spec-row:last-child {
    border-bottom: none;
}

.product-spec-row dt {
    flex: 0 0 7rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.product-spec-row dd {
    flex: 1;
    margin: 0;
    color: #5a6d85;
    line-height: 1.5;
}

.product-related {
    background: var(--surface);
}

@media (max-width: 991.98px) {
    .products-trust-row .col-md-4:not(:last-child) .products-trust-item {
        border-bottom: 1px solid #eef2f8;
        padding-bottom: 1rem;
    }

    .product-detail-img-sticky {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .products-hero {
        padding: 2.5rem 0 2rem;
    }

    .products-search-bar {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 0.75rem;
    }

    .products-search-bar .btn-gold {
        width: 100%;
    }

    .product-card-actions {
        flex-direction: column;
    }

    .product-spec-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .product-spec-row dt {
        flex: none;
    }

    .products-cta-banner .btn-lg,
    .product-detail-actions .btn-lg {
        width: 100%;
    }
}
