:root {
    --primary: #0f4c81;
    --secondary: #f3f6f9;
    --accent: #f7931e;
    --background-color: #ffffff;
    --card-bg: #ffffff;
    --heading-color: #16202a;
    --paragraph-color: #5f6b78;
    --button-bg: #0f4c81;
    --button-text: #ffffff;
    --hover-color: #0b365b;
    --border-radius: 18px;
    --heading-font: "Poppins", sans-serif;
    --body-font: "Inter", sans-serif;
    --button-font: "Poppins", sans-serif;
    --border-color: #dbe3ea;
    --dark-surface: #0f1722;
    --success: #138b61;
    --shadow-soft: 0 20px 50px rgba(15, 23, 34, 0.08);
    --chatbot-color: var(--primary);
}

/* Premium Frontend Upgrade */
:root {
    --section-space: clamp(4.5rem, 7vw, 7rem);
    --shadow-premium: 0 28px 70px rgba(15, 23, 34, 0.10);
    --shadow-hover: 0 32px 80px rgba(15, 23, 34, 0.16);
    --surface-muted: rgba(255, 255, 255, 0.68);
    --surface-edge: rgba(255, 255, 255, 0.82);
    --border-subtle: rgba(22, 32, 42, 0.08);
}

body.frontend-site {
    background:
        radial-gradient(circle at 0% 0%, rgba(15, 76, 129, 0.06), transparent 28%),
        radial-gradient(circle at 100% 0%, rgba(247, 147, 30, 0.06), transparent 24%),
        var(--background-color);
}

.section-padding {
    padding: var(--section-space) 0;
}

.section-heading {
    position: relative;
    z-index: 1;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.10);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.section-kicker i {
    font-size: 1rem;
}

.section-kicker-light {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.section-title {
    letter-spacing: -0.03em;
}

.section-subtitle,
.hero-lead {
    max-width: 720px;
    font-size: 1.04rem;
}

.topbar {
    position: relative;
    background:
        linear-gradient(135deg, rgba(11, 54, 91, 0.98), rgba(15, 76, 129, 0.98));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
    min-height: 54px;
    padding-block: 0.7rem;
}

.topbar-link,
.topbar-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
}

.topbar-link {
    background: rgba(255, 255, 255, 0.06);
}

.topbar-pill {
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.topbar-pill-muted {
    background: rgba(255, 255, 255, 0.08);
}

.topbar-social {
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.topbar-social:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.24);
}

.site-header {
    position: relative;
    top: 0;
    z-index: 1035;
    padding-top: 14px;
    transition: padding 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.header-is-sticky {
    position: sticky;
}

.site-header.is-scrolled {
    padding-top: 6px;
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(15, 23, 34, 0.08);
}

.site-header-surface {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    min-height: 88px;
    padding: 0.95rem 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 227, 234, 0.9);
    border-radius: 28px;
    box-shadow: 0 16px 45px rgba(15, 23, 34, 0.07);
}

.site-brand {
    flex: 0 0 auto;
}

.navbar-brand img {
    height: 58px;
}

.header-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.header-nav-list {
    gap: 0.4rem;
}

.navbar-nav .nav-link,
.dropdown-item {
    position: relative;
    padding: 0.78rem 1rem;
    border-radius: 999px;
    font-size: 0.98rem;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.4rem;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(15, 76, 129, 0.07);
}

.site-header .dropdown-menu {
    margin-top: 12px;
    min-width: 220px;
    border: 1px solid rgba(219, 227, 234, 0.9);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
}

.site-header .dropdown-item {
    border-radius: 14px;
}

.header-actions .btn {
    min-height: 46px;
    padding-inline: 1.1rem;
}

.header-search {
    padding-top: 12px;
}

.header-search-surface {
    padding: 1rem 1.2rem 1.25rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 227, 234, 0.9);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 34, 0.08);
}

.hero-section {
    position: relative;
    padding: clamp(5rem, 8vw, 7rem) 0 clamp(4.5rem, 7vw, 6rem);
    background:
        radial-gradient(circle at 18% 24%, rgba(15, 76, 129, 0.09), transparent 28%),
        radial-gradient(circle at 84% 18%, rgba(247, 147, 30, 0.10), transparent 22%),
        linear-gradient(180deg, rgba(243, 246, 249, 0.92) 0%, rgba(255, 255, 255, 0.95) 52%, rgba(243, 246, 249, 0.72) 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.8;
    pointer-events: none;
}

.hero-orb-one {
    top: 120px;
    right: 8%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(15, 76, 129, 0.18), transparent 70%);
}

.hero-orb-two {
    left: 4%;
    bottom: 60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.14), transparent 70%);
}

.hero-copy {
    max-width: 680px;
}

.hero-title {
    font-size: clamp(2.6rem, 4.6vw, 4.65rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero-proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hero-proof-card {
    padding: 1.15rem 1.2rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(219, 227, 234, 0.75);
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.06);
}

.hero-proof-card strong {
    display: block;
    color: var(--heading-color);
    font-size: 1.55rem;
    font-weight: 700;
}

.hero-proof-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--paragraph-color);
    font-size: 0.95rem;
}

.hero-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(219, 227, 234, 0.75);
    box-shadow: 0 14px 30px rgba(15, 23, 34, 0.06);
    color: var(--heading-color);
    font-size: 0.94rem;
    font-weight: 600;
}

.hero-chip i {
    color: var(--primary);
}

.hero-visual-panel {
    position: relative;
    padding: 1.15rem;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
        rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(219, 227, 234, 0.9);
    box-shadow: var(--shadow-premium);
}

.hero-visual-media {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: 26px;
}

.hero-visual-media img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-visual-panel:hover .hero-visual-media img {
    transform: scale(1.04);
}

.hero-visual-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(11, 54, 91, 0.92), rgba(15, 76, 129, 0.88));
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.18);
}

.hero-badge-label {
    display: inline-flex;
    margin-bottom: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 0.9rem;
}

.hero-mini-card {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    min-height: 100%;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 14px 34px rgba(15, 23, 34, 0.06);
    color: inherit;
}

.hero-mini-card p {
    font-size: 0.92rem;
}

.hero-mini-card-accent {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.18), rgba(247, 147, 30, 0.08));
}

.hero-mini-card-link:hover {
    transform: translateY(-3px);
}

.hero-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    background: rgba(15, 76, 129, 0.12);
    color: var(--primary);
    font-size: 1.1rem;
}

.feature-strip {
    margin-top: -20px;
    padding-bottom: 1rem;
}

.feature-highlights-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.feature-highlight-card {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
}

.feature-highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-size: 1.15rem;
}

.feature-highlight-card h3,
.brand-card h3,
.product-card-premium h3,
.why-card h3,
.premium-category-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.08rem;
}

.feature-highlight-card p,
.brand-card p,
.product-card-premium p,
.why-card p,
.premium-category-card p,
.about-check-item p,
.contact-strip-card span {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.premium-category-card,
.why-card,
.brand-card,
.product-card-premium,
.testimonial-card-premium,
.contact-strip-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.premium-category-card:hover,
.why-card:hover,
.brand-card:hover,
.product-card-premium:hover,
.testimonial-card-premium:hover,
.contact-strip-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

.premium-category-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 44px rgba(15, 23, 34, 0.07);
}

.category-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.category-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 34, 0) 40%, rgba(15, 23, 34, 0.34) 100%);
}

.category-card-count {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--heading-color);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 23, 34, 0.12);
}

.category-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.95rem;
    padding: 1.4rem;
}

.about-check-list {
    display: grid;
    gap: 1rem;
}

.about-check-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(219, 227, 234, 0.75);
    box-shadow: 0 16px 36px rgba(15, 23, 34, 0.06);
}

.about-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 16px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
}

.about-media-stack {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    grid-template-areas:
        "visual summary"
        "visual chip";
    gap: 1rem;
    align-items: stretch;
}

.about-media-tile {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: var(--shadow-premium);
}

.about-media-tile-large {
    min-height: 520px;
}

.about-media-visual {
    grid-area: visual;
}

.about-media-summary {
    grid-area: summary;
    min-height: 248px;
}

.about-media-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-media-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.about-floating-chip {
    grid-area: chip;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    justify-content: center;
    min-height: 144px;
    padding: 1.15rem 1.25rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 54, 91, 0.94), rgba(15, 76, 129, 0.88));
    color: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 34, 0.18);
}

.about-floating-chip strong,
.about-floating-chip span {
    color: #ffffff !important;
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2rem;
}

.brand-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.06);
    color: inherit;
}

.brand-card-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    margin-bottom: 1rem;
    padding: 1.25rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.95), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(219, 227, 234, 0.75);
}

.brand-card-logo img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.25s ease, transform 0.25s ease;
}

.brand-card:hover .brand-card-logo img {
    filter: grayscale(0);
    transform: scale(1.03);
}

.brand-card-meta {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.7rem;
}

.brand-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    color: var(--primary);
    font-weight: 700;
}

.product-card-premium,
.product-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 42px rgba(15, 23, 34, 0.07);
}

.product-card-premium {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, rgba(244, 247, 251, 0.95), rgba(255, 255, 255, 0.92));
}

.product-card-media img,
.product-card > img {
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-premium:hover .product-card-media img,
.product-card:hover > img {
    transform: scale(1.05);
}

.product-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.35rem;
}

.product-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-card-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.08);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
}

.why-card {
    height: 100%;
    padding: 1.35rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.07);
}

.why-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-size: 1.25rem;
}

.cta-panel {
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(135deg, var(--hover-color), var(--primary));
    color: #ffffff;
    box-shadow: var(--shadow-premium);
}

.cta-panel h2,
.cta-panel p {
    color: #ffffff !important;
}

.cta-button-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: flex-start;
}

.cta-panel .btn-light {
    color: var(--primary);
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    gap: 1rem;
}

.testimonial-card-premium {
    padding: 1.35rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 40px rgba(15, 23, 34, 0.06);
}

.testimonial-rating {
    font-size: 1rem;
    letter-spacing: 0.22em;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.faq-shell {
    height: 100%;
    padding: clamp(1.5rem, 4vw, 2.2rem);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 20px 48px rgba(15, 23, 34, 0.07);
}

.faq-card {
    overflow: hidden;
    border: 1px solid rgba(219, 227, 234, 0.75);
    border-radius: 22px !important;
    box-shadow: none;
}

.faq-card + .faq-card {
    margin-top: 1rem;
}

.page-hero {
    padding: clamp(3.8rem, 6vw, 5.4rem) 0;
}

.page-hero .hero-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
}

.hero-inline-metric {
    display: inline-flex;
    flex-direction: column;
    min-width: 150px;
    padding: 0.95rem 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(219, 227, 234, 0.75);
    box-shadow: 0 16px 36px rgba(15, 23, 34, 0.06);
}

.hero-inline-metric strong {
    color: var(--heading-color);
    font-size: 1.15rem;
}

.brand-page-hero-media {
    padding: 1.2rem;
    border-radius: 30px;
}

.brand-hero-logo {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(219, 227, 234, 0.8);
}

.brand-hero-logo img {
    max-height: 92px;
    object-fit: contain;
}

.contact-strip {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr);
    gap: 1.4rem;
    padding: clamp(1.7rem, 4vw, 2.4rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(247, 147, 30, 0.15), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 249, 0.94));
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: var(--shadow-premium);
}

.contact-strip-copy h2 {
    margin: 1rem 0 0.8rem;
}

.contact-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-strip-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 18px 36px rgba(15, 23, 34, 0.06);
    color: inherit;
}

.contact-strip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-top-cta {
    padding-top: clamp(4rem, 7vw, 5rem);
}

.footer {
    position: relative;
    padding: clamp(4rem, 7vw, 5rem) 0 1.8rem;
    background:
        radial-gradient(circle at top right, rgba(15, 76, 129, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(9, 15, 24, 0.98), rgba(12, 20, 32, 1));
}

.footer-main {
    padding: clamp(1.8rem, 4vw, 2.5rem);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.footer-column h5,
.footer-column h6 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-about-text {
    max-width: 360px;
}

.footer-contact-list,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-contact-list span,
.footer-contact-list a,
.footer-links a,
.footer-inline-link,
.footer-bottom-links a,
.footer-bottom span {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-links a,
.footer-inline-link,
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover,
.footer-inline-link:hover,
.footer-bottom-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.footer-social-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
}

.footer-brand-list {
    display: grid;
    gap: 0.75rem;
}

.footer-brand-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.footer-brand-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.footer-brand-card small {
    color: rgba(255, 255, 255, 0.68);
}

.footer-support-card {
    padding: 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-support-card p {
    margin-block: 0.65rem 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.7rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
}

.breadcrumb {
    gap: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--paragraph-color);
}

.info-card,
.filter-card,
.search-toolbar,
.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 227, 234, 0.8);
    box-shadow: 0 20px 45px rgba(15, 23, 34, 0.06);
}

.info-card > :last-child,
.search-toolbar > :last-child {
    margin-bottom: 0;
}

.filter-card form .btn,
.search-toolbar .btn {
    min-height: 46px;
}

.product-gallery-thumb {
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb:focus {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 14px 28px rgba(15, 23, 34, 0.1);
}

.sticky-sidebar-card,
.product-side-column {
    top: 132px;
}

.pagination {
    gap: 0.45rem;
}

.page-link {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px !important;
    border: 1px solid rgba(219, 227, 234, 0.85);
    color: var(--heading-color);
    box-shadow: 0 10px 24px rgba(15, 23, 34, 0.05);
}

.page-item.active .page-link,
.page-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

@media (max-width: 1399px) {
    .feature-highlights-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.list-view .product-card.product-card-premium {
    display: grid;
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    align-items: stretch;
}

.list-view .product-card-premium .product-card-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.list-view .product-card-premium .product-card-media img {
    min-height: 100%;
}

@media (max-width: 1199px) {
    .site-header {
        padding-top: 10px;
    }

    .site-header-surface {
        position: relative;
        flex-wrap: wrap;
        padding: 0.9rem 1rem;
        border-radius: 24px;
    }

    .site-brand {
        padding-right: 72px;
    }

    .header-nav-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .navbar-collapse {
        width: 100%;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(219, 227, 234, 0.85);
        box-shadow: 0 20px 44px rgba(15, 23, 34, 0.08);
    }

    .header-nav-list {
        margin-bottom: 0.8rem;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .feature-highlights-grid,
    .brand-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .hero-proof-grid,
    .hero-visual-grid,
    .contact-strip,
    .contact-strip-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-media-stack {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "summary"
            "chip";
    }

    .list-view .product-card.product-card-premium {
        grid-template-columns: 1fr;
    }

    .about-media-tile-large {
        min-height: 340px;
    }

    .about-media-summary,
    .about-floating-chip {
        min-height: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: flex-start;
    }

    .sticky-sidebar-card,
    .product-side-column {
        position: static;
        top: auto;
    }
}

@media (max-width: 767px) {
    .site-header-shell,
    .container,
    .container-fluid.site-header-shell {
        padding-inline: 1rem !important;
    }

    .topbar-inner {
        gap: 0.8rem !important;
    }

    .topbar-primary,
    .topbar-secondary {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-actions .btn,
    .cta-button-stack .btn {
        width: 100%;
    }

    .feature-highlights-grid,
    .brand-showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-media,
    .hero-visual-media img {
        min-height: 260px;
    }

    .contact-strip-card,
    .brand-card,
    .why-card,
    .premium-category-card,
    .product-card-premium,
    .testimonial-card-premium {
        border-radius: 24px;
    }

    .footer-main {
        padding: 1.35rem;
        border-radius: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--heading-color);
    background-color: var(--background-color);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn {
    font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

p,
li,
label,
.text-secondary,
.lead,
.form-control,
.form-select,
.form-check-label,
.accordion-body,
.breadcrumb,
.table,
.small {
    color: var(--paragraph-color) !important;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--hover-color);
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.section-light {
    background: var(--secondary);
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.95), transparent 28%),
        linear-gradient(135deg, var(--secondary) 0%, var(--background-color) 52%, rgba(255, 255, 255, 0.86) 100%);
}

.hero-title,
.section-title {
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.section-subtitle {
    max-width: 720px;
}

.hero-section .lead,
.page-hero .lead {
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.topbar {
    background: var(--hover-color);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.topbar-inner {
    padding-inline: 0.25rem;
}

.topbar-primary,
.topbar-secondary {
    min-width: 0;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.92) !important;
}

.topbar-social {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.site-header {
    background: var(--background-color);
    z-index: 1035;
}

.site-header-shell {
    max-width: 1440px;
}

.site-header .navbar {
    min-height: 88px;
}

.site-brand {
    margin-right: 0;
}

.navbar-brand img,
.footer-logo {
    height: 52px;
    width: auto;
}

.footer-logo {
    display: block;
    max-width: min(240px, 100%);
    max-height: 68px;
}

.navbar-nav .nav-link,
.dropdown-item {
    color: var(--heading-color);
    font-weight: 600;
    white-space: nowrap;
}

.site-navbar-toggler {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 0.55rem 0.7rem;
    color: var(--heading-color);
    box-shadow: none;
}

.site-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 129, 0.12);
}

.site-navbar-toggler .navbar-toggler-icon {
    width: 1.3rem;
    height: 1.3rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2316202a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.dropdown-item:hover,
.dropdown-item:focus {
    color: var(--primary);
}

.site-header .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) - 4px);
    box-shadow: var(--shadow-soft);
    padding: 10px;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: -10px;
    left: calc(100% + 6px);
}

.header-actions .btn {
    border-radius: calc(var(--border-radius) - 6px);
    white-space: nowrap;
    padding-inline: 1rem;
}

.header-actions {
    white-space: nowrap;
}

.btn {
    font-family: var(--button-font);
    border-radius: calc(var(--border-radius) - 4px);
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--button-bg);
    border-color: var(--button-bg);
    color: var(--button-text);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: var(--hover-color) !important;
    border-color: var(--hover-color) !important;
    color: var(--button-text) !important;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}

.btn-outline-secondary {
    color: var(--heading-color);
    border-color: var(--border-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--secondary);
    border-color: var(--border-color);
    color: var(--heading-color);
}

.btn-warning {
    background: var(--accent);
    border-color: var(--accent);
    color: #ffffff;
}

.btn-warning:hover,
.btn-warning:focus {
    background: var(--hover-color);
    border-color: var(--hover-color);
    color: #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: var(--heading-color);
}

.btn-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-search {
    background: var(--background-color);
}

.hero-card,
.trust-item,
.category-card,
.product-card,
.feature-card,
.faq-card,
.testimonial-card,
.info-card,
.filter-card,
.search-toolbar {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.hero-card,
.category-card,
.product-card,
.feature-card,
.faq-card,
.testimonial-card,
.info-card,
.filter-card,
.search-toolbar {
    padding: 24px;
}

.hero-card {
    padding: 28px;
}

.trust-item {
    padding: 18px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.category-card,
.product-card,
.feature-card,
.faq-card,
.testimonial-card,
.info-card {
    height: 100%;
}

.category-card h5,
.product-card h4,
.product-card h5,
.feature-card h5,
.info-card h4,
.info-card h5,
.testimonial-card strong {
    line-height: 1.3;
}

.category-card img,
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 4px);
    background: var(--secondary);
}

.product-card .meta {
    font-size: 0.92rem;
}

.metric-card {
    background: linear-gradient(135deg, var(--hover-color), var(--primary));
    color: #ffffff;
    border-radius: var(--border-radius);
    padding: 22px;
    height: 100%;
}

.metric-value {
    font-size: 2.1rem;
    font-weight: 700;
}

.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 76, 129, 0.12);
    color: var(--primary);
    font-size: 1.45rem;
}

.brand-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.cta-band {
    background: linear-gradient(135deg, var(--hover-color), var(--primary));
    color: #ffffff;
    border-radius: calc(var(--border-radius) + 8px);
    padding: 42px;
    box-shadow: var(--shadow-soft);
}

.cta-band h2,
.cta-band h3,
.cta-band p {
    color: #ffffff !important;
}

.testimonial-rating {
    color: #f4b000;
    letter-spacing: 2px;
}

.faq-card .accordion-button {
    background: transparent;
    border-radius: calc(var(--border-radius) - 4px);
    color: var(--heading-color);
    font-weight: 600;
    box-shadow: none;
}

.faq-card .accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: var(--primary);
}

.faq-card .accordion-item,
.faq-card .accordion-body {
    border: 0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary);
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) - 6px);
    padding: 0.85rem 0.95rem;
    background: #ffffff;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(15, 76, 129, 0.12);
}

.table-wrap {
    overflow-x: auto;
}

.spec-table td:first-child {
    width: 35%;
    font-weight: 600;
}

.search-toolbar,
.filter-card {
    padding: 22px;
}

.sticky-sidebar-card {
    position: sticky;
    top: 118px;
}

.product-side-column {
    position: sticky;
    top: 118px;
    align-self: start;
}

.catalog-view-switch .btn {
    min-width: 88px;
}

.contact-form-head {
    gap: 12px;
}

.list-view .product-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 22px;
    align-items: start;
}

.list-view .product-card img {
    min-height: 210px;
    height: 100%;
}

.product-gallery-thumb {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: calc(var(--border-radius) - 6px);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.map-embed iframe,
.footer-map iframe {
    width: 100%;
    min-height: 320px;
    border: 0;
    border-radius: var(--border-radius);
}

.footer {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        var(--dark-surface);
    color: rgba(255, 255, 255, 0.82);
    margin-top: clamp(4rem, 7vw, 6rem) !important;
    padding-top: clamp(4rem, 6vw, 5rem) !important;
}

.footer p,
.footer li,
.footer span,
.footer .small {
    color: rgba(255, 255, 255, 0.74) !important;
}

.footer a {
    color: #ffffff;
}

.footer-links a {
    opacity: 0.9;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-newsletter {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--border-radius) - 4px);
    background: rgba(255, 255, 255, 0.04);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1050;
    width: 58px;
    height: 58px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #1fa64b;
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(31, 166, 75, 0.25);
}

.chatbot-widget {
    position: fixed;
    bottom: 92px;
    z-index: 1060;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-right {
    right: 20px;
}

.chatbot-left {
    left: 20px;
    align-items: flex-start;
}

.chatbot-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 58px;
    min-width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--chatbot-color);
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(15, 76, 129, 0.22);
    font-weight: 600;
    overflow: hidden;
    transition: width 0.22s ease, padding 0.22s ease, transform 0.15s ease;
}

.chatbot-trigger-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex: 0 0 34px;
}

.chatbot-trigger-label {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    overflow: hidden;
    transition: max-width 0.22s ease, opacity 0.22s ease;
}

.chatbot-widget:hover .chatbot-trigger,
.chatbot-widget.chatbot-open .chatbot-trigger {
    width: 170px;
    padding: 0 18px 0 12px;
    justify-content: flex-start;
}

.chatbot-widget:hover .chatbot-trigger-label,
.chatbot-widget.chatbot-open .chatbot-trigger-label {
    max-width: 120px;
    opacity: 1;
}

.chatbot-panel {
    margin-top: 12px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: calc(var(--border-radius) + 2px);
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(15, 23, 34, 0.18);
    width: min(370px, calc(100vw - 24px));
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    background: var(--chatbot-color);
    color: #ffffff;
}

.chatbot-header h6,
.chatbot-header .small {
    color: #ffffff !important;
}

.chatbot-messages {
    max-height: 380px;
    overflow-y: auto;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.chatbot-message {
    margin-bottom: 14px;
    display: flex;
}

.chatbot-message-content {
    max-width: 85%;
    padding: 11px 14px;
    border-radius: 16px;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(15, 23, 34, 0.06);
}

.chatbot-message-bot .chatbot-message-content {
    background: var(--secondary);
    color: var(--heading-color);
    border-top-left-radius: 6px;
}

.chatbot-message-user {
    justify-content: flex-end;
}

.chatbot-message-user .chatbot-message-content {
    background: var(--primary);
    color: #ffffff;
    border-top-right-radius: 6px;
}

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 18px 12px;
}

.chatbot-quick-replies .btn {
    font-size: 0.85rem;
    padding: 0.45rem 0.7rem;
}

.chatbot-input-area {
    padding: 0 18px 18px;
}

.chatbot-success-card {
    padding: 14px;
    border-radius: calc(var(--border-radius) - 6px);
    background: rgba(19, 139, 97, 0.08);
    border: 1px solid rgba(19, 139, 97, 0.16);
}

.chatbot-loading {
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 1199px) {
    .site-header-shell {
        position: relative;
    }

    .topbar-inner {
        padding-inline: 0;
    }

    .site-brand {
        max-width: 100%;
        padding-right: 72px;
    }

    .site-navbar-toggler {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        flex: 0 0 auto;
        z-index: 3;
    }

    .site-header-shell {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .header-actions {
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
        white-space: normal;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .header-actions .btn,
    .header-actions .btn-icon {
        width: 100%;
        justify-content: center;
    }

    .site-header .navbar-collapse {
        padding-top: 1rem;
    }

    .site-header .navbar-nav {
        gap: 0.25rem;
    }

    .site-header .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .site-header .nav-item:last-child > .nav-link {
        border-bottom: 0;
    }

    .site-header .dropdown-menu {
        box-shadow: none;
        border: 0;
        padding: 0 0 0 14px;
    }

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 0;
    }
}

@media (min-width: 1200px) {
    .site-header .navbar-collapse {
        gap: 1rem;
    }

    .site-header .navbar-nav {
        flex-wrap: nowrap;
    }

    .site-header .nav-link {
        padding-inline: 0.7rem;
        font-size: 0.98rem;
    }

    .header-actions .btn {
        font-size: 0.95rem;
        padding-inline: 0.95rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 64px 0;
    }

    .topbar {
        font-size: 0.8rem;
    }

    .topbar-secondary {
        justify-content: space-between;
        width: 100%;
    }

    .site-header .navbar {
        min-height: 78px;
    }

    .site-brand img {
        height: 46px;
    }

    .trust-badges,
    .list-view .product-card {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .cta-band,
    .category-card,
    .product-card,
    .feature-card,
    .faq-card,
    .testimonial-card,
    .info-card,
    .filter-card,
    .search-toolbar {
        padding: 24px;
    }

    .category-card img,
    .product-card img {
        height: 200px;
    }

    .search-toolbar .btn-group,
    .catalog-view-switch {
        width: 100%;
    }

    .search-toolbar .btn-group > .btn,
    .catalog-view-switch .btn {
        flex: 1 1 0;
    }

    .cta-band {
        padding: 30px 24px;
    }

    .product-side-column,
    .sticky-sidebar-card {
        position: static;
    }
}

@media (max-width: 575px) {
    html,
    body {
        overflow-x: hidden;
    }

    .section-padding {
        padding: 56px 0;
    }

    .topbar {
        font-size: 0.74rem;
    }

    .topbar-inner {
        gap: 0.45rem !important;
    }

    .topbar-primary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem !important;
    }

    .topbar-secondary {
        display: none !important;
    }

    .site-header-shell {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
    }

    .site-header .navbar {
        min-height: 72px;
    }

    .site-brand img {
        height: 40px;
    }

    .site-navbar-toggler {
        padding: 0.45rem 0.55rem;
    }

    .site-header .navbar-collapse {
        max-height: calc(100vh - 84px);
        overflow-y: auto;
    }

    .header-actions {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: clamp(1.95rem, 10vw, 2.65rem);
    }

    .section-title {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .hero-section .lead,
    .page-hero .lead {
        font-size: 1rem;
    }

    .hero-section .d-flex.flex-wrap.gap-3,
    .cta-band .d-md-flex,
    .col-12.d-flex.flex-wrap.gap-2,
    .contact-form-head {
        flex-direction: column;
        align-items: stretch !important;
    }

    .hero-section .d-flex.flex-wrap.gap-3 > .btn,
    .cta-band .btn,
    .col-12.d-flex.flex-wrap.gap-2 > .btn,
    .contact-form-head .btn {
        width: 100%;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .cta-band,
    .category-card,
    .product-card,
    .feature-card,
    .faq-card,
    .testimonial-card,
    .info-card,
    .filter-card,
    .search-toolbar {
        padding: 20px;
    }

    .category-card img,
    .product-card img {
        height: 182px;
    }

    .breadcrumb {
        gap: 0.25rem 0;
    }

    .product-gallery-thumb {
        width: 64px;
        height: 64px;
    }

    .footer {
        margin-top: 3.5rem !important;
        padding-top: 3.25rem !important;
    }

    .footer-logo {
        max-height: 56px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
    }

    .chatbot-widget {
        bottom: 80px;
        width: auto;
    }

    .chatbot-right {
        right: 14px;
        left: auto;
        align-items: flex-end;
    }

    .chatbot-left {
        left: 14px;
        right: auto;
        align-items: flex-start;
    }

    .chatbot-trigger {
        width: 56px;
        min-width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }

    .chatbot-trigger-label {
        max-width: 0;
        opacity: 0;
    }

    .chatbot-widget:hover .chatbot-trigger,
    .chatbot-widget.chatbot-open .chatbot-trigger {
        width: 156px;
        padding: 0 14px 0 12px;
        justify-content: flex-start;
    }

    .chatbot-widget:hover .chatbot-trigger-label,
    .chatbot-widget.chatbot-open .chatbot-trigger-label {
        max-width: 100px;
        opacity: 1;
    }

.chatbot-panel {
        width: min(360px, calc(100vw - 28px));
    }
}

/* Catalogue card layout overrides */
.catalog-item {
    display: flex;
}

.catalog-item > .product-card-premium {
    width: 100%;
    min-width: 0;
}

.product-card-premium .product-card-media {
    padding: 0;
}

.product-card-premium .product-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 235px;
    border-radius: 0;
    object-fit: cover;
}

.product-card-premium .product-card-body {
    padding: 1.35rem;
}

.product-card-premium.product-card h3 {
    min-height: 3.2rem;
}

.product-card-premium.product-card p {
    min-height: 4.5rem;
}

.product-card-media--brochure {
    aspect-ratio: 5 / 4;
    padding: 1rem;
    background:
        radial-gradient(circle at top left, rgba(15, 76, 129, 0.08), transparent 42%),
        linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

.product-card-media--brochure img {
    min-height: 0;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(203, 214, 224, 0.55);
}

.product-card-premium:hover .product-card-media--brochure img {
    transform: translateY(-2px);
}

.list-view .catalog-item {
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .product-card-premium.product-card h3,
    .product-card-premium.product-card p {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .catalog-item {
        width: 100%;
    }

    .product-card-premium .product-card-media img {
        min-height: 210px;
    }

    .product-card-media--brochure {
        aspect-ratio: 4 / 3;
        padding: 0.85rem;
    }
}
