:root {
    --bg: #fff7f7;
    --surface: #ffffff;
    --surface-strong: #fff1f1;
    --text: #1f2937;
    --muted: #6b7280;
    --line: rgba(24, 32, 43, 0.12);
    --brand: #ef2f36;
    --brand-deep: #bd1e24;
    --brand-soft: rgba(239, 47, 54, 0.12);
    --accent: #1f2937;
    --accent-soft: rgba(31, 41, 55, 0.08);
    --success: #0f766e;
    --shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: min(1180px, calc(100vw - 32px));
    --grid-line: rgba(239, 47, 54, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        radial-gradient(circle at top left, rgba(239, 47, 54, 0.1), transparent 32%),
        radial-gradient(circle at top right, rgba(255, 213, 79, 0.14), transparent 24%),
        linear-gradient(180deg, #fffefe 0%, #fff5f5 52%, #fff9f4 100%);
    background-size: 42px 42px, 42px 42px, auto, auto, auto;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

main {
    min-height: 60vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.topbar {
    background: linear-gradient(90deg, #ef2f36 0%, #d71920 100%);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.topbar-inner,
.nav-wrap,
.footer-bottom,
.results-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.topbar-inner {
    padding: 0.75rem 0;
}

.topbar-inner p {
    margin: 0;
}

.topbar-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(24, 32, 43, 0.08);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);
}

.nav-wrap {
    padding: 1.1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-logo {
    width: 58px;
    height: auto;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong,
.section-heading h2,
.hero-copy h1,
.page-hero h1,
.product-hero h1,
.hero-panel-card h2,
.promo-card h2,
.feature-card h3,
.product-card h2,
.product-card h3,
.category-card h3,
.info-card h3,
.detail-panel h2,
.site-footer h3 {
    font-family: "Outfit", sans-serif;
}

.brand-copy strong {
    font-size: 1.4rem;
    line-height: 1;
}

.brand-copy small {
    margin-top: 0.2rem;
    color: var(--muted);
}

.main-nav,
.nav-actions,
.hero-actions,
.step-row,
.hero-metrics,
.chip-list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.main-nav {
    margin-left: auto;
}

.main-nav a,
.nav-dropdown-toggle {
    color: var(--text);
    font-weight: 600;
    background: transparent;
    border: 0;
    font: inherit;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.nav-highlight {
    color: var(--brand) !important;
}

.main-nav a:hover::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    display: grid;
    gap: 0.9rem;
    min-width: 290px;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    border: 1px solid rgba(24, 32, 43, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid rgba(24, 32, 43, 0.06);
}

.nav-dropdown-panel small {
    color: var(--muted);
}

.primary-action,
.ghost-action,
.mobile-nav-toggle,
.form-control,
.form-checkbox {
    border-radius: 999px;
}

.primary-action,
.ghost-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    font-weight: 700;
    transition: 180ms ease;
}

.primary-action {
    background: linear-gradient(135deg, #ef2f36, #c81e25);
    color: white;
    box-shadow: 0 16px 32px rgba(239, 47, 54, 0.22);
}

.ghost-action {
    border: 1px solid rgba(24, 32, 43, 0.14);
    background: rgba(255, 255, 255, 0.78);
}

.ghost-action.dark {
    background: rgba(15, 23, 42, 0.06);
}

.primary-action:hover,
.ghost-action:hover {
    transform: translateY(-1px);
}

.hero-section,
.page-hero {
    padding: 4rem 0 2.5rem;
}

.hero-grid,
.product-hero-grid,
.catalogue-layout,
.warranty-layout,
.contact-layout,
.detail-layout,
.split-section {
    display: grid;
    gap: 2rem;
}

.hero-grid,
.product-hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.hero-grid-upgraded {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.detail-panel,
.promo-card,
.form-card,
.filter-card,
.info-card,
.solution-card,
.feature-card,
.product-card,
.category-card,
.empty-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 32, 43, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 3rem;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
        radial-gradient(circle at 14% 84%, rgba(255, 199, 199, 0.18), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 36%),
        linear-gradient(140deg, #8d1116 0%, #ef2f36 52%, #fff2f2 190%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-copy-upgraded {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-copy::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    pointer-events: none;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.category-card p,
.product-card p,
.solution-card p,
.feature-card p,
.info-card p,
.promo-card p,
.detail-panel span,
.detail-list,
.site-footer p {
    color: inherit;
}

.hero-copy h1,
.page-hero h1,
.product-hero h1 {
    margin: 0.5rem 0 1rem;
    font-size: clamp(2.4rem, 4vw, 4.6rem);
    line-height: 1;
}

.hero-copy p {
    max-width: 60ch;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--brand);
}

.hero-copy .eyebrow,
.section-heading.light .eyebrow {
    color: rgba(255, 239, 239, 0.92);
}

.hero-panel {
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 242, 242, 0.98) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.hero-stage {
    padding: 2.6rem 0 2.2rem;
}

.hero-showcase,
.split-highlight {
    display: grid;
    gap: 1.25rem;
}

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

.hero-carousel {
    position: relative;
    min-height: 430px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, #101828, #ef2f36);
    box-shadow: var(--shadow);
}

.hero-banner {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.hero-banner.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-banner-image,
.campaign-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.12), rgba(11, 18, 32, 0.74)),
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 26%);
}

.hero-banner-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 2rem;
    color: white;
    display: grid;
    gap: 0.9rem;
}

.hero-banner-content h2,
.campaign-content h3,
.category-showcase-body h3,
.hero-side-card h3,
.value-card p {
    font-family: "Outfit", sans-serif;
}

.hero-banner-content h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.04;
    max-width: 13ch;
}

.hero-banner-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 52ch;
}

.hero-banner-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    align-items: baseline;
    color: rgba(255, 255, 255, 0.82);
}

.hero-banner-meta strong {
    color: white;
}

.hero-carousel-dots {
    position: absolute;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 2;
    display: flex;
    gap: 0.6rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dot.is-active {
    background: white;
}

.hero-side-grid,
.trust-strip,
.campaign-grid,
.category-showcase-grid,
.value-grid {
    display: grid;
    gap: 1rem;
}

.hero-side-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-side-card,
.trust-strip-card,
.campaign-card,
.category-showcase-card,
.value-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(24, 32, 43, 0.08);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
}

.hero-side-card {
    padding: 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 244, 0.94));
}

.hero-side-card span,
.value-card span {
    display: inline-flex;
    width: 2.2rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand);
    font-weight: 800;
}

.hero-side-card h3,
.category-showcase-body h3,
.campaign-content h3 {
    margin: 0.85rem 0 0.55rem;
    font-size: 1.22rem;
}

.hero-side-card p,
.trust-strip-card span,
.campaign-content p,
.category-showcase-body p,
.category-showcase-meta span,
.value-card p {
    margin: 0;
    color: var(--muted);
}

.trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
}

.trust-strip-card {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.trust-strip-card strong {
    display: block;
    font-size: 1.4rem;
    color: white;
}

.trust-strip-card span {
    color: rgba(255, 255, 255, 0.76);
}

.product-family-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.product-family-bar span {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(24, 32, 43, 0.08);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    font-weight: 700;
}

.section-tight {
    padding-top: 1rem;
}

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

.campaign-card {
    overflow: hidden;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.9));
}

.campaign-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.06), rgba(17, 24, 39, 0.82));
}

.campaign-image {
    position: absolute;
    inset: 0;
}

.campaign-content {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
    color: white;
}

.campaign-content p {
    color: rgba(255, 255, 255, 0.8);
}

.campaign-content a {
    display: inline-flex;
    margin-top: 1rem;
    font-weight: 700;
    color: white;
}

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

.category-showcase-card {
    overflow: hidden;
}

.category-showcase-media {
    position: relative;
    height: 250px;
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--accent, var(--brand)) 20%, white), transparent 26%),
        linear-gradient(180deg, rgba(255, 248, 248, 0.9), rgba(255, 255, 255, 0.96));
}

.category-showcase-media img,
.category-showcase-placeholder {
    width: 100%;
    height: 100%;
}

.category-showcase-media img {
    object-fit: cover;
    display: block;
}

.category-showcase-placeholder {
    display: grid;
    place-items: center;
    padding: 2rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.45rem;
    color: var(--accent, var(--brand));
}

.category-showcase-body {
    padding: 1.45rem;
}

.category-showcase-meta {
    margin: 1rem 0 0.85rem;
    display: grid;
    gap: 0.25rem;
}

.category-showcase-meta strong {
    font-size: 1.02rem;
}

.category-showcase-body a {
    font-weight: 700;
    color: var(--brand);
}

.split-highlight {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
    margin-bottom: 2rem;
}

.split-copy {
    max-width: none;
}

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

.value-card {
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.value-card p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}

.solution-grid-upgraded {
    margin-top: 0.5rem;
}

.product-card-elevated {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 247, 0.92));
}

.warranty-cta-expanded {
    grid-template-columns: 1.2fr auto auto;
    align-items: center;
}

.hero-panel-grid,
.category-grid,
.solution-grid,
.product-grid,
.feature-grid,
.footer-grid,
.detail-specs {
    display: grid;
    gap: 1.25rem;
}

.hero-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.hero-panel-card {
    padding: 1.4rem;
    border-radius: var(--radius-md);
}

.hero-panel-card.spotlight {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.95), rgba(31, 41, 55, 0.88));
    color: white;
}

.hero-panel-card.mini {
    min-height: 132px;
    background: linear-gradient(180deg, white, rgba(255, 244, 244, 0.92));
    border: 1px solid rgba(24, 32, 43, 0.08);
    position: relative;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-panel-card.mini::after,
.category-card::after {
    content: "";
    position: absolute;
    inset: auto -26px -26px auto;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent, var(--brand)) 20%, white);
    opacity: 0.85;
}

.hero-panel-card strong,
.category-card h3,
.product-card h2,
.product-card h3 {
    font-size: 1.1rem;
}

.hero-panel-card span,
.hero-panel-card p,
.category-card p,
.section-heading p,
.solution-card p,
.feature-card p,
.product-card p,
.info-card p,
.page-hero p,
.detail-panel span,
.site-footer p,
.results-toolbar p {
    color: var(--muted);
}

.hero-panel-card.spotlight span,
.hero-panel-card.spotlight p {
    color: rgba(255, 255, 255, 0.8);
}

.hero-metrics {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-metrics div {
    min-width: 150px;
}

.hero-metrics strong {
    display: block;
    font-size: 1.15rem;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.72);
}

.section-block {
    padding: 2rem 0 4rem;
}

.section-muted {
    background: rgba(255, 255, 255, 0.52);
    border-block: 1px solid rgba(24, 32, 43, 0.06);
}

.section-dark {
    background:
        radial-gradient(circle at top right, rgba(239, 47, 54, 0.22), transparent 24%),
        linear-gradient(180deg, #831218, #1f2937);
    color: white;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

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

.category-card {
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
}

.category-badge {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-weight: 800;
    color: white;
    background: var(--accent, var(--brand));
}

.category-card a,
.product-card a,
.results-toolbar a {
    font-weight: 700;
    color: var(--brand);
}

.category-card,
.product-card,
.info-card,
.feature-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.product-card:hover,
.info-card:hover,
.feature-card:hover,
.hero-panel-card.mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(239, 47, 54, 0.22);
}

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

.solution-card,
.feature-card {
    padding: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(24, 32, 43, 0.08);
    box-shadow: var(--shadow);
}

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

.large-gap {
    gap: 1.5rem;
}

.product-card {
    padding: 1.5rem;
}

.product-thumb,
.detail-hero-image,
.gallery-thumb {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.product-thumb {
    height: 220px;
    margin-bottom: 1rem;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: #fff;
}

.detail-hero-image {
    height: 280px;
    margin-bottom: 1rem;
}

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

.gallery-thumb {
    height: 240px;
    border: 1px solid rgba(31, 41, 55, 0.08);
    background: white;
}

.product-card.rich {
    min-height: 270px;
}

.product-card-top,
.spec-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.product-category,
.product-tag,
.chip-list li,
.step-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
}

.product-category {
    padding: 0.45rem 0.8rem;
    background: rgba(15, 23, 42, 0.08);
    color: var(--accent);
}

.product-tag {
    padding: 0.45rem 0.8rem;
    background: var(--brand-soft);
    color: var(--brand);
}

.chip-list {
    flex-wrap: wrap;
    padding: 0;
    margin: 1.1rem 0;
    list-style: none;
}

.chip-list.large li {
    font-size: 0.94rem;
}

.chip-list li,
.step-row span {
    padding: 0.55rem 0.9rem;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text);
}

.warranty-cta-inner,
.footer-grid,
.stacked-cards,
.warranty-side {
    display: grid;
    gap: 1.25rem;
}

.warranty-cta .warranty-cta-inner {
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(120deg, rgba(127, 29, 29, 0.98), rgba(31, 41, 55, 0.92)),
        linear-gradient(0deg, rgba(239, 47, 54, 0.18), rgba(239, 47, 54, 0.18));
    color: white;
}

.warranty-cta .step-row span {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.page-hero.compact {
    padding-top: 3rem;
}

.page-hero .container,
.product-hero .container {
    padding: 2.5rem 0;
}

.catalogue-layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
}

.catalogue-sidebar {
    position: sticky;
    top: 140px;
    display: grid;
    gap: 1rem;
}

.filter-card,
.form-card,
.promo-card,
.detail-panel,
.info-card,
.empty-card {
    padding: 1.5rem;
}

.plain-list,
.detail-list,
.footer-links,
.step-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.plain-list li + li,
.footer-links li + li,
.step-list li + li,
.detail-list li + li {
    margin-top: 0.75rem;
}

.results-toolbar {
    margin-bottom: 1rem;
}

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

.form-grid .full-span {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.checkbox-row label {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    border: 1px solid rgba(24, 32, 43, 0.12);
    background: white;
    color: var(--text);
    padding: 0.95rem 1.1rem;
    font: inherit;
}

textarea.form-control,
select.form-control {
    border-radius: 18px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--brand);
    margin-right: 0.65rem;
    vertical-align: middle;
}

.help-text,
.error-text {
    display: block;
    margin-top: 0.45rem;
}

.help-text {
    color: var(--muted);
}

.error-text {
    color: #b91c1c;
}

.full-width {
    width: 100%;
}

.warranty-layout,
.contact-layout,
.detail-layout,
.split-section {
    grid-template-columns: 0.9fr 1.1fr;
}

.promo-card {
    background:
        radial-gradient(circle at bottom left, rgba(239, 47, 54, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(255, 255, 255, 0.9));
}

.promo-card .step-list {
    counter-reset: steps;
}

.promo-card .step-list li {
    position: relative;
    padding-left: 3rem;
    color: var(--muted);
}

.promo-card .step-list li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 0;
    top: -0.1rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    font-weight: 800;
}

.info-card.accent {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82));
    color: white;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text);
}

.detail-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1rem;
}

.detail-specs div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(239, 47, 54, 0.08);
}

.detail-specs strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 1.02rem;
}

.messages {
    padding-top: 1rem;
}

.message {
    padding: 1rem 1.2rem;
    border-radius: 18px;
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
}

.message-success {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.22);
    color: var(--success);
}

.site-footer {
    padding: 2rem 0 0;
    background: #1f2937;
    color: rgba(255, 255, 255, 0.82);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -120px auto auto -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 47, 54, 0.22), transparent 70%);
    pointer-events: none;
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    align-items: start;
    padding-bottom: 2rem;
}

.footer-brand .brand-copy small,
.site-footer p,
.site-footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.main-nav a:hover,
.nav-dropdown-toggle:hover {
    color: var(--brand);
}

.footer-bottom {
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.94rem;
}

.mobile-nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(24, 32, 43, 0.1);
    background: white;
    padding: 0;
}

.mobile-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.whatsapp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-weight: 800;
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.35);
    z-index: 24;
}

@media (max-width: 1080px) {
    .main-nav,
    .nav-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .main-nav.is-open {
        position: absolute;
        top: calc(100% + 1px);
        left: 16px;
        right: 16px;
        display: grid;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 253, 248, 0.98);
        box-shadow: var(--shadow);
        border: 1px solid rgba(24, 32, 43, 0.08);
    }

    .nav-dropdown-panel {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        margin-top: 0.8rem;
        box-shadow: none;
    }

    .hero-grid,
    .product-hero-grid,
    .category-grid,
    .solution-grid,
    .product-grid,
    .feature-grid,
    .footer-grid,
    .catalogue-layout,
    .warranty-layout,
    .contact-layout,
    .detail-layout,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-side-grid,
    .campaign-grid,
    .category-showcase-grid,
    .value-grid,
    .warranty-cta-expanded {
        grid-template-columns: 1fr;
    }

    .catalogue-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 720px) {
    .topbar-inner,
    .nav-wrap,
    .footer-bottom,
    .results-toolbar,
    .hero-actions,
    .hero-metrics,
    .step-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy,
    .hero-panel,
    .filter-card,
    .form-card,
    .promo-card,
    .info-card,
    .product-card,
    .category-card {
        padding: 1.25rem;
    }

    .hero-panel-grid,
    .form-grid,
    .detail-specs {
        grid-template-columns: 1fr;
    }

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

    .hero-banner-content {
        padding: 1.2rem;
    }

    .hero-carousel {
        min-height: 360px;
    }

    .brand-copy small,
    .topbar-inner p {
        display: none;
    }

    .hero-copy h1,
    .page-hero h1,
    .product-hero h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }
}

body {
    background: #ffffff;
    color: #2f3747;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e8e6e2;
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.announcement-bar {
    background: #f8ede3;
    border-bottom: 1px solid #efe3d6;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 40px;
    font-size: 0.95rem;
    color: #3a3d45;
}

.announcement-inner p {
    margin: 0;
}

.announcement-inner a {
    font-weight: 700;
}

.topbar,
.topbar-inner,
.topbar-links {
    display: none;
}

.nav-wrap {
    padding: 1.2rem 0;
    gap: 1.25rem;
}

.brand-logo {
    width: 64px;
}

.brand-copy strong {
    font-size: 1.6rem;
}

.brand-copy small {
    color: #666d7a;
}

.main-nav {
    margin-left: 0;
    gap: 1.1rem;
    flex: 1;
    justify-content: center;
}

.main-nav a,
.nav-dropdown-toggle {
    font-weight: 500;
    color: #2f3747;
}

.main-nav a::after,
.nav-dropdown-toggle::after {
    bottom: -12px;
}

.nav-actions {
    gap: 0.8rem;
}

.search-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 46px;
    padding: 0 1.1rem;
    border: 1px solid #d9dbe1;
    border-radius: 999px;
    background: #fff;
    color: #62697a;
    font-weight: 500;
}

.nav-cta {
    border-radius: 999px;
    background: #ffffff;
}

.primary-action {
    background: #f04d23;
    box-shadow: none;
}

.ghost-action {
    border-color: #d7dae3;
    background: #fff;
}

.orient-hero {
    background: #fff;
}

.orient-carousel {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: #f6f4f1;
}

.orient-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.orient-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.orient-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.orient-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 28%, rgba(255, 255, 255, 0.04) 65%);
}

.orient-slide-inner {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.orient-slide-copy {
    position: relative;
    z-index: 1;
    max-width: 460px;
}

.orient-slide-copy .eyebrow {
    color: #f04d23;
    letter-spacing: 0.16em;
}

.orient-slide-copy h1,
.homepage-title {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #2f3747;
}

.orient-slide-copy h1 {
    margin: 0.7rem 0 1rem;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.95;
}

.orient-slide-copy p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #60687a;
}

.orient-slide-meta {
    display: grid;
    gap: 0.25rem;
    margin: 1rem 0 1.4rem;
    color: #596172;
}

.orient-slide-meta strong {
    color: #263042;
    font-size: 1.05rem;
}

.orient-dots {
    bottom: 22px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: #d3d3d3;
}

.hero-dot.is-active {
    width: 30px;
    border-radius: 999px;
    background: #f04d23;
}

.homepage-section {
    padding: 4.5rem 0;
    background: #fff;
}

.homepage-title {
    margin: 0 0 2.5rem;
    text-align: center;
    font-size: clamp(2rem, 4vw, 4rem);
}

.homepage-title.align-left {
    text-align: left;
}

.category-icons-section {
    padding-top: 3.5rem;
}

.category-icon-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1.1rem;
}

.category-icon-card {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 0.5rem;
    text-align: center;
    color: #62697a;
    transition: transform 180ms ease, color 180ms ease;
}

.category-icon-media {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    background: #faf8f5;
    border-radius: 999px;
    border: 1px solid #efebe6;
    padding: 1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.category-icon-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.category-icon-placeholder {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4f5665;
}

.category-icon-card:hover {
    color: #f04d23;
    transform: translateY(-3px);
}

.category-icon-card:hover .category-icon-media {
    border-color: #f4b6a4;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.trend-grid,
.promise-grid,
.blog-grid {
    display: grid;
    gap: 1.5rem;
}

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

.trend-card,
.blog-card {
    background: #fff;
    border: 1px solid #efebe6;
    border-radius: 28px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.trend-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(35, 42, 58, 0.08);
}

.trend-image,
.blog-image {
    width: 100%;
    background: #fbfaf8;
    display: block;
}

.trend-image {
    height: 300px;
    object-fit: contain;
    padding: 1.5rem;
}

.blog-image {
    height: 230px;
    object-fit: cover;
}

.trend-body,
.blog-body {
    padding: 1.5rem;
}

.trend-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    background: #2f3747;
    color: #fff;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.trend-body h3,
.promise-card h3,
.blog-body h3 {
    font-family: "Outfit", sans-serif;
    font-size: 1.45rem;
    font-weight: 500;
    color: #2f3747;
}

.trend-body h3 {
    margin: 1rem 0 0.7rem;
}

.trend-body p,
.promise-card p,
.blog-body p,
.get-touch-copy p,
.social-panel p {
    color: #62697a;
    line-height: 1.6;
}

.trend-body a,
.blog-body a,
.section-link {
    font-weight: 700;
    color: #f04d23;
}

.promise-section {
    background: #fcfbf9;
}

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

.promise-card {
    padding: 1.7rem;
    border-radius: 24px;
    border: 1px solid #ece7df;
    background: #fff;
}

.promise-card span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1eb;
    color: #f04d23;
    font-weight: 800;
}

.promise-card h3 {
    margin: 1rem 0 0.7rem;
}

.get-touch-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: center;
}

.get-touch-copy {
    max-width: 540px;
}

.get-touch-visual img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
    background: #fbfaf8;
}

.dark-action {
    background: #363d4b;
}

.section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-row .homepage-title {
    margin-bottom: 0;
}

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

.blog-body h3 {
    margin: 0 0 0.75rem;
}

.social-section {
    padding-top: 2rem;
}

.social-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem 2rem;
    border-radius: 28px;
    background: #fbf5ef;
    border: 1px solid #eee1d4;
}

.social-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #f04d23;
    background: #fff;
    border: 1px solid #f1d6c8;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-label {
    display: block;
    color: #7b8293;
    font-size: 0.92rem;
}

.social-badge strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
}

.site-footer {
    background: #f8f4ef;
    color: #454d5f;
}

.site-footer::before {
    display: none;
}

.footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
    padding-top: 2rem;
}

.site-footer .footer-links a,
.footer-brand .brand-copy small,
.site-footer p {
    color: #62697a;
}

.footer-bottom {
    border-top: 1px solid #e5ddd2;
}

@media (max-width: 1180px) {
    .category-icon-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

@media (max-width: 1080px) {
    .main-nav {
        justify-content: flex-start;
    }

    .search-pill {
        display: none;
    }

    .get-touch-grid,
    .blog-grid,
    .footer-grid,
    .social-panel {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .announcement-inner {
        min-height: auto;
        padding: 0.65rem 0;
        align-items: flex-start;
        flex-direction: column;
    }

    .orient-carousel,
    .orient-slide-inner {
        min-height: 520px;
    }

    .orient-slide-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.48) 45%, rgba(255, 255, 255, 0.18) 100%);
    }

    .category-icon-grid,
    .trend-grid,
    .promise-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .category-icon-media {
        width: 110px;
        height: 110px;
    }

    .homepage-section {
        padding: 3rem 0;
    }

    .get-touch-visual img {
        height: 340px;
    }
}

.home-clean {
    background: #ffffff;
}

.home-clean-hero {
    background: #ffffff;
}

.home-clean-carousel {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: #f7f4ef;
    border-bottom: 1px solid #ece8e2;
}

.home-clean-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.home-clean-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.home-clean-slide-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
    background: #f7f4ef;
}

.home-clean-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 24%, rgba(255, 255, 255, 0.18) 60%);
}

.home-clean-slide-inner {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
}

.home-clean-slide-copy {
    position: relative;
    z-index: 1;
    max-width: 430px;
}

.home-clean-slide-copy h1,
.home-clean-title,
.home-clean-product-body h3,
.home-clean-promise-card h3,
.home-clean-blog-item h3 {
    font-family: "Outfit", sans-serif;
    color: #2f3747;
}

.home-clean-slide-copy h1 {
    margin: 0.7rem 0 1rem;
    font-size: clamp(2.6rem, 4.8vw, 4.7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.home-clean-slide-copy p,
.home-clean-product-body p,
.home-clean-promise-card p,
.home-clean-trust-copy p,
.home-clean-contact-card p,
.home-clean-blog-item p {
    color: #62697a;
    line-height: 1.6;
}

.home-clean-dots {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
}

.home-clean-section {
    padding: 3.25rem 0;
}

.home-clean-title {
    margin: 0;
    font-size: clamp(1.9rem, 3.7vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-align: center;
}

.home-clean-title-left {
    text-align: left;
}

.home-clean-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.home-clean-heading-row.compact {
    margin-bottom: 1.2rem;
}

.home-clean-link {
    color: #f04d23;
    font-weight: 700;
    white-space: nowrap;
}

.home-clean-categories {
    padding-top: 2.7rem;
}

.home-clean-categories .home-clean-title {
    margin-bottom: 1.8rem;
}

.home-clean-category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.8rem;
}

.home-clean-category-card {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    text-align: center;
    color: #666f80;
    padding: 0.35rem;
    transition: color 180ms ease, transform 180ms ease;
}

.home-clean-category-card:hover {
    color: #f04d23;
    transform: translateY(-2px);
}

.home-clean-category-media {
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: #fbfaf7;
    border: 1px solid #ebe7e1;
    display: grid;
    place-items: center;
    padding: 0.85rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-clean-category-card:hover .home-clean-category-media {
    border-color: #f0b9a6;
    box-shadow: 0 16px 28px rgba(32, 37, 47, 0.06);
}

.home-clean-category-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.home-clean-product-grid {
    display: grid;
    gap: 1.2rem;
}

.home-clean-product-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-clean-product-card {
    background: #ffffff;
    border: 1px solid #ece8e1;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-clean-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 36px rgba(26, 33, 46, 0.08);
}

.home-clean-product-image {
    width: 100%;
    height: 250px;
    display: block;
    object-fit: contain;
    background: #fbfaf7;
    padding: 1.15rem;
}

.home-clean-product-body {
    padding: 1.25rem 1.3rem 1.35rem;
}

.home-clean-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.78rem;
    border-radius: 10px;
    background: #363d4b;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.home-clean-product-body h3 {
    margin: 0.95rem 0 0.65rem;
    font-size: 1.35rem;
    font-weight: 500;
}

.home-clean-product-body a {
    color: #f04d23;
    font-weight: 700;
}

.home-clean-utility-section {
    background: #fcfbf8;
}

.home-clean-trust {
    padding: 3rem 0;
}

.home-clean-trust-grid,
.home-clean-bottom-grid {
    display: grid;
    gap: 1.4rem;
}

.home-clean-trust-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
}

.home-clean-trust-copy {
    max-width: 480px;
}

.home-clean-promise-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-clean-promise-card,
.home-clean-contact-card,
.home-clean-blog-card {
    border: 1px solid #ece7df;
    background: #ffffff;
    border-radius: 24px;
}

.home-clean-promise-card {
    padding: 1.35rem;
}

.home-clean-promise-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff1eb;
    color: #f04d23;
    font-weight: 800;
}

.home-clean-promise-card h3 {
    margin: 0.85rem 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 500;
}

.home-clean-dark-action {
    background: #363d4b;
}

.home-clean-bottom-grid {
    grid-template-columns: 0.92fr 1.08fr;
}

.home-clean-contact-card,
.home-clean-blog-card {
    padding: 1.6rem;
}

.home-clean-contact-card {
    display: grid;
    gap: 1.2rem;
    align-content: space-between;
    min-height: 100%;
    background: #faf8f5;
}

.home-clean-blog-list {
    display: grid;
    gap: 1rem;
}

.home-clean-blog-item {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 1rem;
    align-items: start;
}

.home-clean-blog-item img {
    width: 112px;
    height: 96px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    background: #fbfaf7;
}

.home-clean-blog-item h3 {
    margin: 0 0 0.4rem;
    font-size: 1.02rem;
    font-weight: 500;
}

.home-clean-blog-item p {
    margin: 0;
    font-size: 0.95rem;
}

.home-clean-follow {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid #ece7df;
}

.home-clean-follow span {
    display: block;
    color: #747b8c;
    font-size: 0.92rem;
}

.home-clean-follow strong {
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2f3747;
}

@media (max-width: 1180px) {
    .home-clean-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-clean-product-grid-three,
    .home-clean-promise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .home-clean-trust-grid,
    .home-clean-bottom-grid {
        grid-template-columns: 1fr;
    }

    .home-clean-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .home-clean-carousel,
    .home-clean-slide-inner {
        min-height: 430px;
    }

    .home-clean-slide-image {
        object-position: center;
    }

    .home-clean-slide-overlay {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0.26) 100%);
    }

    .home-clean-section {
        padding: 2.5rem 0;
    }

    .home-clean-category-grid,
    .home-clean-product-grid-three,
    .home-clean-promise-grid {
        grid-template-columns: 1fr;
    }

    .home-clean-category-media {
        width: 100px;
        height: 100px;
    }

    .home-clean-blog-item {
        grid-template-columns: 1fr;
    }

    .home-clean-blog-item img {
        width: 100%;
        height: 180px;
    }
}

.announcement-bar {
    background: #f8ede3;
    border-bottom: 1px solid #eee1d4;
}

.announcement-inner {
    min-height: 38px;
    font-size: 0.92rem;
    color: #343844;
}

.announcement-inner a {
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #ece7df;
    box-shadow: none;
}

.nav-wrap {
    padding: 1rem 0;
    gap: 1.4rem;
    width: min(1480px, calc(100vw - 40px));
}

.brand {
    gap: 0.8rem;
    flex: 0 0 auto;
}

.brand-logo {
    width: 58px;
}

.brand-copy strong {
    font-size: 1.3rem;
}

.brand-copy small {
    font-size: 0.78rem;
    color: #6b7280;
}

.main-nav {
    margin-left: 0;
    gap: 1.45rem;
    flex: 1;
    justify-content: flex-start;
    min-width: 0;
}

.main-nav > a,
.main-nav > .nav-dropdown > a {
    font-size: 1rem;
    font-weight: 500;
    color: #273142;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-panel.nav-mega-panel {
    top: calc(100% + 26px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: min(1080px, calc(100vw - 80px));
    min-width: 960px;
    padding: 1.5rem 1.5rem 1.8rem;
    border-radius: 0 0 20px 20px;
    border: 1px solid #ece7df;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(20, 26, 38, 0.08);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    transform: translateX(-50%) translateY(0);
}

.nav-mega-column h4 {
    margin: 0 0 1rem;
    font-family: "Outfit", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #2f3747;
}

.nav-mega-column a {
    display: grid;
    gap: 0.18rem;
    padding: 0.65rem 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.nav-mega-column a span {
    font-weight: 500;
    color: #2f3747;
}

.nav-mega-column a small {
    color: #778092;
}

.nav-actions {
    gap: 0.7rem;
    flex: 0 0 auto;
}

.search-pill {
    min-width: 108px;
    height: 40px;
    border: 1px solid #d9dde5;
    color: #687183;
    font-weight: 500;
    background: #fff;
}

.nav-icon-link {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    color: #6b7280;
}

.nav-icon-link span {
    width: 16px;
    height: 16px;
    display: block;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.nav-icon-link span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 14px;
    height: 7px;
    border: 1.8px solid currentColor;
    border-top: 0;
    border-radius: 0 0 10px 10px;
    transform: translateX(-50%);
}

.nav-icon-link .nav-bag {
    width: 16px;
    height: 14px;
    border-radius: 3px;
}

.nav-icon-link .nav-bag::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 10px;
    height: 8px;
    border: 1.8px solid currentColor;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    transform: translateX(-50%);
}

.nav-icon-link .nav-bag::after {
    display: none;
}

.hero-focus {
    background: #f6f3ee;
}

.hero-focus-carousel {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    border-top: 1px solid #ece7df;
}

.hero-focus-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
    background: #f6f3ee;
}

.hero-focus-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-focus-media {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-focus-media img {
    width: 100%;
    height: 690px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-focus-dots {
    left: 50%;
    right: auto;
    bottom: 14px;
    transform: translateX(-50%);
    gap: 0.45rem;
    bottom: 18px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: #cfd3da;
}

.hero-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #f04d23;
}

.shop-categories-strip {
    background: #ffffff;
    padding: 3.2rem 0 3.7rem;
}

.shop-categories-inner {
    width: min(1360px, calc(100vw - 120px));
    margin: 0 auto;
}

.shop-categories-header {
    margin-bottom: 2rem;
    text-align: center;
}

.shop-categories-header h2 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.1rem, 3.2vw, 3.7rem);
    line-height: 1.04;
    font-weight: 300;
    color: #2f3747;
}

.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 152px);
    justify-content: center;
    gap: 0.8rem 1rem;
    align-items: start;
}

.shop-category-card {
    width: 152px;
    padding: 0.4rem 0.3rem;
    border-radius: 20px;
    display: block;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.shop-category-card:hover,
.shop-category-card:focus-visible {
    background: #faf8f4;
    box-shadow: 0 16px 28px rgba(20, 26, 38, 0.08);
    transform: translateY(-3px);
}

.shop-category-image {
    display: block;
}

.shop-category-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

@media (max-width: 1180px) {
    .nav-dropdown-panel.nav-mega-panel {
        min-width: 0;
        width: min(940px, calc(100vw - 48px));
    }

    .shop-categories-grid {
        grid-template-columns: repeat(4, 152px);
    }
}

@media (max-width: 1080px) {
    .nav-dropdown-panel.nav-mega-panel {
        position: static;
        width: 100%;
        transform: none;
        min-width: 0;
        margin-top: 0.8rem;
        grid-template-columns: 1fr;
        padding: 1rem;
        box-shadow: none;
    }

    .hero-focus-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .announcement-inner {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
        padding: 0.5rem 0;
    }

    .nav-wrap {
        width: min(100vw - 24px, 1480px);
    }

    .hero-focus-carousel {
        min-height: 320px;
    }

    .hero-focus-media img {
        height: 320px;
        object-fit: contain;
    }

    .shop-categories-strip {
        padding: 2.2rem 0 2.6rem;
    }

    .shop-categories-inner {
        width: min(100vw - 24px, 1480px);
    }

    .shop-categories-grid {
        grid-template-columns: repeat(2, minmax(132px, 152px));
        justify-content: center;
        gap: 0.8rem;
    }

    .shop-category-card {
        border-radius: 18px;
        width: auto;
        padding: 0.2rem;
    }
}
