:root {
    --ink: #1a241d;
    --muted: #5f6d64;
    --paper: #fffdf7;
    --panel: #ffffff;
    --leaf: #1f6f43;
    --leaf-dark: #104326;
    --gold: #c99a35;
    --gold-soft: #f7d985;
    --red: #b9432f;
    --mist: #edf4ec;
    --line: rgba(26, 36, 29, 0.13);
    --shadow: 0 22px 55px rgba(26, 36, 29, 0.14);
    --radius: 8px;
    --heading: 'Libre Baskerville', Georgia, serif;
    --body: 'Inter', Arial, sans-serif;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--body);
    line-height: 1.65;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--heading);
    line-height: 1.12;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 22px;
    font-size: 4.7rem;
}

h2 {
    margin-bottom: 18px;
    font-size: 2.6rem;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

p {
    color: var(--muted);
    font-size: 1rem;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 100;
    transform: translateY(-140%);
    padding: 10px 14px;
    background: var(--ink);
    color: white;
    border-radius: 4px;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--red);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.button,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.button-primary,
.header-cta {
    background: var(--red);
    color: white;
}

.button-secondary {
    background: white;
    color: var(--leaf-dark);
    border-color: var(--line);
}

.button-light {
    background: white;
    color: var(--leaf-dark);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.topbar {
    background: var(--leaf-dark);
    color: white;
    font-size: 0.86rem;
}

.topbar p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.topbar-inner,
.topbar-links,
.nav-shell,
.brand,
.footer-brand,
.footer-bottom-inner {
    display: flex;
    align-items: center;
}

.topbar-inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 20px;
}

.topbar-links {
    gap: 18px;
    white-space: nowrap;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.9);
}

.nav-shell {
    justify-content: space-between;
    gap: 20px;
    min-height: 78px;
    margin-top: 14px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.catalog-strip {
    margin-top: 10px;
    background: var(--gold);
    color: var(--ink);
    border-top: 1px solid rgba(26, 36, 29, 0.1);
    border-bottom: 1px solid rgba(26, 36, 29, 0.1);
}

.catalog-strip-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 34px;
    font-size: 0.88rem;
}

.catalog-strip strong {
    text-transform: uppercase;
    font-size: 0.78rem;
}

.catalog-strip marquee {
    min-width: 0;
}

.brand,
.footer-brand {
    gap: 12px;
    min-width: max-content;
}

.brand-logo {
    width: 209px;
    height: auto;
    max-height: 68px;
    object-fit: contain;
}

.brand-mark {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: var(--leaf);
    color: white;
    font-weight: 900;
}

.brand strong,
.footer-brand strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.22rem;
    line-height: 1.1;
}

.brand small,
.footer-brand small {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.site-nav > a,
.nav-parent {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 8px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 800;
    font-size: 0.82rem;
    white-space: nowrap;
}

.site-nav > a:hover,
.nav-parent:hover,
.site-nav [aria-current="page"] {
    background: var(--mist);
    color: var(--leaf-dark);
}

.nav-parent span {
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-dropdown-wrap {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 28px);
    left: 50%;
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 18px;
    width: min(870px, calc(100vw - 44px));
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown-wrap:hover .mega-menu,
.nav-dropdown-wrap:focus-within .mega-menu,
.nav-dropdown-wrap.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-menu section {
    min-width: 0;
}

.mega-menu a {
    display: block;
    padding: 6px 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.3;
}

.mega-menu .mega-title {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    color: var(--leaf-dark);
    font-weight: 900;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: 700px;
    padding: 190px 0 78px;
    color: white;
    overflow: hidden;
}

.home-slider {
    position: relative;
    margin-top: 174px;
    overflow: hidden;
    background: var(--ink);
}

.slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    min-height: 320px;
    max-height: 600px;
}

.slider-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slider-slide.is-active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    color: white;
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.slider-prev {
    left: 18px;
}

.slider-next {
    right: 18px;
}

.compact-hero {
    min-height: 560px;
    padding-top: 96px;
}

.hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(10, 31, 18, 0.88), rgba(10, 31, 18, 0.54), rgba(10, 31, 18, 0.18)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.1rem;
}

.hero-actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 70px;
}

.hero-stat {
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    color: white;
    font-size: 1.7rem;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.page-hero {
    min-height: 420px;
    padding-top: 180px;
    padding-bottom: 72px;
}

.page-hero::before {
    background:
        linear-gradient(90deg, rgba(4, 22, 12, 0.94) 0%, rgba(6, 35, 19, 0.82) 38%, rgba(6, 35, 19, 0.38) 72%, rgba(6, 35, 19, 0.68) 100%),
        url("../images/breadcrumb-banner-premium.png");
    background-size: cover;
    background-position: center;
}

.page-hero .container {
    max-width: 1180px;
}

.page-hero .eyebrow {
    color: var(--gold-soft);
}

.page-hero h1 {
    max-width: 780px;
    color: white;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.page-hero p:not(.eyebrow) {
    max-width: 720px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 15px;
    border: 1px solid rgba(247, 206, 103, 0.32);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: white;
}

.breadcrumb span:last-child {
    color: var(--gold-soft);
}

.section {
    padding: 86px 0;
}

.section-alt {
    background: var(--mist);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 34px;
    align-items: end;
    margin-bottom: 36px;
}

.section-heading p {
    margin-bottom: 0;
}

.category-rail,
.product-grid,
.feature-grid,
.profile-grid,
.quality-grid,
.gallery-grid,
.cert-grid,
.contact-grid,
.sitemap-grid {
    display: grid;
    gap: 22px;
}

.category-rail {
    grid-template-columns: repeat(5, 1fr);
}

.category-card,
.product-card,
.feature-card,
.quality-card,
.gallery-card,
.cert-card,
.contact-card,
.sitemap-card,
.inquiry-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 14px 36px rgba(26, 36, 29, 0.08);
}

.category-card,
.product-card,
.feature-card,
.quality-card,
.cert-card,
.contact-card,
.sitemap-card {
    overflow: hidden;
}

.category-card img,
.product-card img,
.gallery-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.category-card div,
.product-card div,
.feature-card,
.quality-card,
.cert-card,
.contact-card,
.sitemap-card {
    padding: 20px;
}

.category-card span,
.product-card span,
.feature-card span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--red);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.category-card h3,
.product-card h3 {
    font-family: var(--body);
    font-size: 1.08rem;
    line-height: 1.25;
}

.category-card p,
.product-card p,
.feature-card p,
.quality-card p,
.cert-card p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

.category-card:hover,
.product-card:hover,
.sitemap-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.catalog-product-list {
    display: grid;
    gap: 24px;
}

.catalog-group {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 36px rgba(26, 36, 29, 0.08);
    scroll-margin-top: 190px;
}

.catalog-group > h3 {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    font-family: var(--body);
    font-size: 1.16rem;
    text-transform: uppercase;
}

.catalog-link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0 18px;
}

.catalog-link-cloud a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--leaf-dark);
    font-weight: 800;
    font-size: 0.84rem;
}

.catalog-product-row {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.catalog-product-row:last-child {
    border-bottom: 0;
}

.catalog-product-image {
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.catalog-product-image img {
    width: 100%;
    height: 126px;
    object-fit: cover;
}

.catalog-product-copy span {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--red);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-product-copy h4 {
    margin: 0 0 8px;
    font-family: var(--body);
    font-size: 1.1rem;
    line-height: 1.28;
}

.catalog-product-copy p {
    margin-bottom: 12px;
    font-size: 0.94rem;
}

.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.row-actions .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.82rem;
}

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

.profile-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
    align-items: center;
}

.profile-media {
    position: relative;
    min-height: 470px;
}

.profile-media img {
    width: 82%;
    height: 410px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.profile-note {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--leaf);
    color: white;
    box-shadow: var(--shadow);
}

.profile-note strong,
.profile-note span {
    display: block;
}

.profile-note span {
    color: rgba(255, 255, 255, 0.8);
}

.check-list,
.product-detail-list {
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li,
.product-detail-list li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
}

.check-list li::before,
.product-detail-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 18px;
    height: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--leaf);
    color: white;
    content: "\2713";
    font-size: 0.72rem;
    font-weight: 900;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.28fr);
    gap: 30px;
    align-items: start;
}

.side-panel {
    position: sticky;
    top: 150px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
}

.side-panel h2 {
    margin: 0;
    padding: 18px 20px;
    background: var(--leaf-dark);
    color: white;
    font-family: var(--body);
    font-size: 1rem;
}

.side-panel a {
    display: block;
    padding: 11px 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.side-panel a:hover,
.side-panel a[aria-current="page"] {
    color: var(--leaf-dark);
    background: var(--mist);
}

.side-panel .side-category {
    color: var(--ink);
    font-weight: 900;
}

.side-panel .side-group {
    padding-left: 28px;
    color: var(--leaf-dark);
    background: #fbfaf4;
    font-size: 0.86rem;
}

.side-panel .side-product {
    padding-left: 40px;
    font-weight: 600;
    font-size: 0.82rem;
}

.product-detail {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
}

.product-detail img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.product-detail-body {
    padding: 30px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 28px;
}

.quote-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 26px 0;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--leaf);
    color: white;
}

.quote-strip strong {
    font-size: 1.1rem;
}

.quote-strip span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
}

.spec-box {
    min-height: 126px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.spec-box strong {
    display: block;
    margin-bottom: 8px;
}

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

.gallery-card {
    overflow: hidden;
}

.gallery-card h3 {
    padding: 16px 18px;
    margin: 0;
    font-family: var(--body);
    font-size: 1rem;
}

.inquiry-panel {
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    color: var(--ink);
    font-weight: 800;
    font-size: 0.88rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    color: var(--ink);
}

.field textarea {
    min-height: 132px;
    resize: vertical;
}

.contact-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.52fr);
    align-items: start;
}

.contact-grid > aside {
    display: grid;
    gap: 22px;
}

.contact-card a {
    display: block;
    margin-top: 8px;
    color: var(--leaf-dark);
    font-weight: 900;
}

.map-panel {
    min-height: 360px;
    border-radius: var(--radius);
    background: linear-gradient(rgba(16, 67, 38, 0.74), rgba(16, 67, 38, 0.74)), url("../images/home-warehouse.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    display: grid;
    place-items: center;
    padding: 32px;
    text-align: center;
}

.map-panel p {
    color: rgba(255, 255, 255, 0.86);
}

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

.sitemap-card a {
    display: block;
    padding: 7px 0;
    color: var(--muted);
}

.site-footer {
    background: #172018;
    color: white;
}

.footer-cta {
    background: var(--leaf);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 0;
}

.footer-cta h2,
.footer-cta p {
    margin: 0;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.75fr 0.95fr 0.95fr;
    gap: 34px;
    padding: 64px 0;
}

.footer-grid h2 {
    margin-bottom: 18px;
    font-family: var(--body);
    font-size: 1rem;
}

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

.footer-grid a {
    display: block;
    margin: 8px 0;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    min-height: 58px;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 45;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-weight: 900;
    box-shadow: var(--shadow);
}

@media (max-width: 1100px) {
    h1 {
        font-size: 3.6rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .header-cta {
        display: none;
    }

    .site-nav > a,
    .nav-parent {
        padding: 0 7px;
        font-size: 0.78rem;
    }

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

@media (max-width: 920px) {
    h1 {
        font-size: 2.7rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .topbar {
        display: none;
    }

    .nav-shell {
        margin-top: 12px;
        min-height: 68px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 88px 20px auto;
        display: none;
        max-height: calc(100vh - 116px);
        overflow: auto;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: white;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > a,
    .nav-parent {
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        white-space: normal;
    }

    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        grid-template-columns: 1fr;
        padding: 8px 10px 14px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-wrap.is-open .mega-menu {
        display: grid;
    }

    .hero {
        min-height: 620px;
        padding-top: 150px;
    }

    .home-slider {
        margin-top: 136px;
    }

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

    .hero-stats,
    .product-grid,
    .feature-grid,
    .quality-grid,
    .gallery-grid,
    .cert-grid,
    .sitemap-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading,
    .profile-grid,
    .product-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }

    .catalog-product-row,
    .quote-strip {
        grid-template-columns: 1fr;
    }

    .catalog-product-image img {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 26px, var(--container));
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.62rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: 0.68rem;
    }

    .hero {
        min-height: 590px;
        padding-top: 132px;
        padding-bottom: 50px;
    }

    .home-slider {
        margin-top: 132px;
    }

    .slider-track {
        min-height: 190px;
    }

    .hero-stats,
    .category-rail,
    .product-grid,
    .feature-grid,
    .quality-grid,
    .gallery-grid,
    .cert-grid,
    .sitemap-grid,
    .footer-grid,
    .form-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 62px 0;
    }

    .profile-media {
        min-height: auto;
    }

    .profile-media img {
        width: 100%;
        height: 290px;
    }

    .profile-note {
        position: static;
        width: 100%;
        margin-top: 14px;
    }

    .product-detail img {
        height: 260px;
    }

    .product-detail-body,
    .inquiry-panel {
        padding: 20px;
    }

    .footer-cta-inner,
    .footer-bottom-inner {
        display: block;
    }

    .footer-cta-inner .button {
        margin-top: 18px;
    }
}

.home-slider {
    margin-top: 174px;
    border-bottom: 1px solid rgba(26, 36, 29, 0.12);
}

.slider-track {
    min-height: 560px;
    max-height: 720px;
}

.slider-slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(10, 33, 18, 0.9), rgba(10, 33, 18, 0.58), rgba(10, 33, 18, 0.12)),
        linear-gradient(0deg, rgba(10, 33, 18, 0.48), transparent 45%);
}

.slider-copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: max(32px, calc((100vw - var(--container)) / 2));
    width: min(720px, calc(100% - 64px));
    color: white;
    transform: translateY(-50%);
}

.slider-copy h1 {
    margin-bottom: 18px;
    color: white;
    text-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
}

.slider-copy p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
}

.slider-copy .eyebrow {
    color: #f7c75f;
}

.slider-copy .button-secondary {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.14);
    color: white;
    backdrop-filter: blur(10px);
}

.slider-assurance {
    position: absolute;
    right: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 28px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 10px;
    width: min(470px, calc(100% - 64px));
}

.slider-assurance div {
    min-height: 92px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.13);
    color: white;
    backdrop-filter: blur(12px);
}

.slider-assurance strong,
.slider-assurance span {
    display: block;
}

.slider-assurance strong {
    font-size: 1.28rem;
}

.slider-assurance span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.premium-trust {
    position: relative;
    z-index: 4;
    margin-top: -28px;
}

.premium-trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.premium-trust span {
    display: grid;
    min-height: 68px;
    place-items: center;
    padding: 10px;
    background: white;
    color: var(--leaf-dark);
    font-weight: 900;
    font-size: 0.88rem;
    text-align: center;
}

.premium-intro {
    background:
        linear-gradient(90deg, rgba(255, 253, 247, 0.97), rgba(255, 253, 247, 0.9)),
        url("../images/rice-range-premium.png");
    background-size: cover;
    background-position: center;
}

.intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
    gap: 48px;
    align-items: center;
}

.intro-copy h2 {
    font-size: 3rem;
}

.premium-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.premium-metrics div {
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 34px rgba(26, 36, 29, 0.08);
}

.premium-metrics strong,
.premium-metrics span {
    display: block;
}

.premium-metrics strong {
    color: var(--red);
    font-size: 1.32rem;
}

.premium-metrics span {
    color: var(--muted);
    font-size: 0.86rem;
}

.intro-visual {
    position: relative;
    min-height: 560px;
}

.intro-visual img {
    position: absolute;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-visual img:first-child {
    top: 20px;
    right: 0;
    z-index: 2;
    width: 76%;
    height: 330px;
}

.intro-visual img:nth-child(2) {
    left: 0;
    bottom: 12px;
    width: 70%;
    height: 300px;
}

.intro-badge {
    position: absolute;
    right: 26px;
    bottom: 44px;
    z-index: 3;
    width: 250px;
    padding: 20px;
    border-radius: var(--radius);
    background: var(--leaf-dark);
    color: white;
    box-shadow: var(--shadow);
}

.intro-badge strong,
.intro-badge span {
    display: block;
}

.intro-badge span {
    color: rgba(255, 255, 255, 0.78);
}

.premium-catalog {
    background:
        linear-gradient(180deg, rgba(237, 244, 236, 0.96), rgba(255, 253, 247, 0.96)),
        url("../images/sara-slider2.jpg");
    background-size: cover;
    background-position: center;
}

.premium-process {
    background: #122018;
    color: white;
}

.premium-process h2,
.premium-process h3 {
    color: white;
}

.premium-process p {
    color: rgba(255, 255, 255, 0.72);
}

.premium-process .feature-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.premium-process .feature-card span {
    color: #f7c75f;
}

.featured-premium {
    background:
        linear-gradient(180deg, rgba(237, 244, 236, 0.96), rgba(255, 253, 247, 0.98)),
        url("../images/sara-slider3.jpg");
    background-size: cover;
    background-position: center;
}

.premium-product-card .row-actions {
    margin-top: 18px;
}

.premium-cta-band {
    padding: 54px 0;
    background: var(--leaf);
    color: white;
}

.premium-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.premium-cta-band h2,
.premium-cta-band p {
    margin-bottom: 0;
    color: white;
}

.premium-cta-band .eyebrow {
    margin-bottom: 12px;
    color: #f7c75f;
}

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.inquiry-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.inquiry-modal[hidden] {
    display: none;
}

.inquiry-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 12, 0.72);
    backdrop-filter: blur(8px);
}

.inquiry-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 40px));
    overflow: auto;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.98)),
        url("../images/rice-range-premium.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
    transform: translateY(12px) scale(0.98);
    transition: transform 0.18s ease;
}

.inquiry-modal.is-open .inquiry-dialog {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.modal-heading {
    max-width: 560px;
    margin-bottom: 24px;
}

.modal-heading h2 {
    margin-bottom: 10px;
}

.modal-form {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

@media (max-width: 920px) {
    .home-slider {
        margin-top: 136px;
    }

    .slider-track {
        min-height: 520px;
        max-height: none;
    }

    .slider-copy {
        top: 46%;
        left: 22px;
        width: calc(100% - 44px);
    }

    .slider-assurance {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        padding: 12px;
        background: var(--leaf-dark);
    }

    .slider-assurance,
    .premium-trust-grid,
    .premium-metrics,
    .premium-cta-inner {
        grid-template-columns: 1fr;
    }

    .slider-assurance div {
        min-height: 76px;
    }

    .intro-layout {
        grid-template-columns: 1fr;
    }

    .intro-visual {
        min-height: 430px;
    }
}

@media (max-width: 640px) {
    .slider-track {
        min-height: 500px;
    }

    .slider-copy h1 {
        font-size: 2.18rem;
    }

    .slider-copy p {
        font-size: 0.98rem;
    }

    .slider-arrow {
        display: none;
    }

    .intro-copy h2 {
        font-size: 1.72rem;
    }

    .intro-visual {
        min-height: auto;
    }

    .intro-visual img,
    .intro-visual img:first-child,
    .intro-visual img:nth-child(2) {
        position: static;
        width: 100%;
        height: 240px;
        margin-bottom: 14px;
    }

    .intro-badge {
        position: static;
        width: 100%;
    }

    .inquiry-dialog {
        padding: 22px;
    }

    .modal-form {
        padding: 16px;
    }
}

.site-header {
    filter: drop-shadow(0 18px 38px rgba(9, 28, 16, 0.12));
}

.topbar {
    background: linear-gradient(90deg, #0d351f, #174f30 52%, #0d351f);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
    min-height: 36px;
}

.topbar p {
    color: #f7d985;
    font-weight: 900;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.topbar-links a,
.topbar-links span {
    position: relative;
    font-size: 0.8rem;
}

.topbar-links a::before,
.topbar-links span::before {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 7px;
    border-radius: 50%;
    background: var(--gold);
    content: "";
    vertical-align: 1px;
}

.nav-shell {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) auto;
    min-height: 76px;
    margin-top: 8px;
    padding: 0 14px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.94));
    box-shadow: 0 22px 70px rgba(12, 34, 19, 0.16);
}

.brand {
    position: relative;
    display: grid;
    gap: 5px;
    align-content: center;
    min-width: 252px;
    padding-right: 18px;
}

.brand::after {
    position: absolute;
    top: 18px;
    right: 0;
    bottom: 18px;
    width: 1px;
    background: var(--line);
    content: "";
}

.brand-logo {
    width: 210px;
    max-width: 210px;
}

.brand-caption {
    color: var(--leaf-dark);
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.site-nav {
    justify-content: center;
    gap: 3px;
}

.site-nav > a,
.nav-parent {
    position: relative;
    min-height: 38px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: #203327;
    font-size: 0.77rem;
    letter-spacing: 0;
}

.site-nav > a::after,
.nav-parent::after {
    position: absolute;
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 2px;
    border-radius: 999px;
    /* background: var(--gold); */
    content: "";
    opacity: 0;
    transform: scaleX(0.35);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav > a:hover,
.nav-parent:hover,
.site-nav [aria-current="page"] {
    border-color: rgba(31, 111, 67, 0.14);
    background: linear-gradient(180deg, #f6fbf5, #edf6ea);
    color: var(--leaf-dark);
}

.site-nav > a:hover::after,
.nav-parent:hover::after,
.site-nav [aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-cta {
    min-width: 136px;
    min-height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--red), #e66b3f);
    box-shadow: 0 14px 34px rgba(185, 67, 47, 0.28);
}

.header-cta::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: #f7d985;
    content: "";
}

.catalog-strip {
    margin-top: 8px;
    background: linear-gradient(90deg, #bb861d, #f3d779 48%, #bb861d);
    box-shadow: 0 12px 28px rgba(20, 30, 18, 0.12);
}

.catalog-strip-inner {
    min-height: 36px;
    overflow: hidden;
}

.catalog-strip strong {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(16, 67, 38, 0.9);
    color: white;
    box-shadow: 0 8px 20px rgba(16, 67, 38, 0.22);
}

.catalog-strip marquee {
    color: rgba(26, 36, 29, 0.9);
    font-weight: 800;
}

.mega-menu {
    left: auto;
    right: -502px;
    grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
    gap: 20px;
    width: min(1060px, calc(100vw - 36px));
    padding: 8px;
    border: 1px solid rgba(31, 111, 67, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.98));
    transform: translate(0, 10px);
}

.nav-dropdown-wrap:hover .mega-menu,
.nav-dropdown-wrap:focus-within .mega-menu,
.nav-dropdown-wrap.is-open .mega-menu {
    transform: translate(0, 0);
}

.mega-intro {
    min-height: 100%;
    padding: 22px;
    border-radius: var(--radius);
    background:
        linear-gradient(rgba(16, 67, 38, 0.86), rgba(16, 67, 38, 0.86)),
        url("../images/sara-slider2.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.mega-intro span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #f7d985;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mega-intro strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.55rem;
    line-height: 1.15;
}

.mega-intro p {
    margin: 14px 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.mega-intro a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: white;
    color: var(--leaf-dark);
    font-weight: 900;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(145px, 1fr));
    gap: 10px;
    max-height: 490px;
    overflow: auto;
    padding-right: 4px;
}

.mega-menu section {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffefa;
}

.mega-menu .mega-title {
    margin-bottom: 2px;
    padding-bottom: 0;
    border-bottom: 0;
    color: var(--leaf-dark);
    font-size: 0.9rem;
}

.mega-menu section small {
    display: block;
    margin-bottom: 8px;
    color: var(--red);
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
}

.mega-menu section a:not(.mega-title) {
    padding: 5px 0 5px 12px;
    border-left: 2px solid rgba(201, 154, 53, 0.34);
    color: #58665d;
    font-size: 0.82rem;
}

.mega-menu section a:not(.mega-title):hover {
    color: var(--red);
}

.home-slider {
    margin-top: 158px;
}

.slider-slide::after {
    background:
        linear-gradient(90deg, rgba(10, 33, 18, 0.78), rgba(10, 33, 18, 0.42), rgba(10, 33, 18, 0.05)),
        linear-gradient(0deg, rgba(10, 33, 18, 0.3), transparent 45%);
}

.slider-track {
    min-height: 610px;
}

.slider-copy {
    padding: 30px 0;
}

.slider-copy h1 {
    max-width: 760px;
    font-size: 4.65rem;
}

.slider-copy p {
    font-size: 1.16rem;
    line-height: 1.72;
}

.slider-assurance {
    width: min(520px, calc(100% - 64px));
}

.premium-trust-grid {
    box-shadow: 0 22px 64px rgba(12, 34, 19, 0.18);
}

.category-card,
.product-card,
.feature-card {
    border-color: rgba(31, 111, 67, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card:hover,
.product-card:hover,
.feature-card:hover {
    border-color: rgba(201, 154, 53, 0.5);
}

@media (max-width: 1180px) {
    .nav-shell {
        grid-template-columns: minmax(210px, 1fr) auto;
    }

    .site-nav {
        grid-column: 1 / -1;
        justify-content: center;
        padding: 0 0 12px;
    }

    .brand::after {
        display: none;
    }

    .header-cta {
        justify-self: end;
    }

    .mega-menu {
        right: auto;
        left: 50%;
        transform: translate(-50%, 10px);
    }

    .nav-dropdown-wrap:hover .mega-menu,
    .nav-dropdown-wrap:focus-within .mega-menu,
    .nav-dropdown-wrap.is-open .mega-menu {
        transform: translate(-50%, 0);
    }

    .home-slider {
        margin-top: 220px;
    }
}

@media (max-width: 920px) {
    .nav-shell {
        display: flex;
        min-height: 76px;
        padding: 0 13px;
    }

    .brand-logo {
        width: 168px;
    }

    .brand-caption,
    .catalog-strip {
        display: none;
    }

    .site-nav {
        inset: 92px 16px auto;
        padding: 16px;
    }

    .site-nav > a,
    .nav-parent {
        border-radius: var(--radius);
    }

    .mega-menu {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 8px 0 0;
    }

    .mega-intro {
        display: none;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .home-slider {
        margin-top: 100px;
    }

    .slider-track {
        min-height: 540px;
    }

    .slider-copy h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 146px;
    }

    .slider-track {
        min-height: 560px;
    }

    .slider-copy h1 {
        font-size: 2.35rem;
    }
}

.nav-shell {
    grid-template-areas:
        "brand cta"
        "nav nav";
    grid-template-columns: minmax(240px, 1fr) auto;
    grid-template-rows: 76px auto;
    gap: 0 18px;
    overflow: visible;
    align-items: center;
    padding: 0 18px;
}

.brand {
    grid-area: brand;
    min-width: 0;
}

.brand::after {
    display: none;
}

.site-nav {
    grid-area: nav;
    grid-column: 1 / -1;
    min-width: 0;
    justify-content: center;
    gap: 7px;
    padding: 10px 0 12px;
    border-top: 1px solid rgba(31, 111, 67, 0.1);
    flex-wrap: wrap;
}

.site-nav > a,
.nav-parent {
    min-height: 38px;
    padding: 0 15px;
    font-size: 0.83rem;
}

.header-cta {
    grid-area: cta;
    justify-self: end;
    min-width: 152px;
}

.simple-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 20;
    min-width: 230px;
    padding: 10px;
    border: 1px solid rgba(31, 111, 67, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-simple-wrap:hover .simple-menu,
.nav-simple-wrap:focus-within .simple-menu,
.nav-simple-wrap.is-open .simple-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 6px;
    color: var(--ink);
    font-weight: 800;
    font-size: 0.88rem;
}

.simple-menu a:hover {
    background: var(--mist);
    color: var(--leaf-dark);
}

.home-slider {
    margin-top: 174px;
}

.catalog-strip-after-slider {
    display: block;
    margin-top: 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(31, 111, 67, 0.1);
    border-bottom: 1px solid rgba(31, 111, 67, 0.1);
    background: linear-gradient(180deg, #fffefa, #f8f5ea);
    color: var(--ink);
    box-shadow: none;
}

.catalog-strip-after-slider .catalog-strip-inner {
    min-height: 48px;
}

.catalog-strip-after-slider strong {
    background: var(--leaf-dark);
}

@media (max-width: 1180px) {
    .nav-shell {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 180px;
    }

    .site-nav > a,
    .nav-parent {
        padding: 0 10px;
        font-size: 0.8rem;
    }

    .home-slider {
        margin-top: 174px;
    }
}

@media (max-width: 980px) {
    .nav-shell {
        display: flex;
    }

    .brand,
    .site-nav,
    .header-cta {
        grid-area: auto;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .simple-menu {
        position: static;
        display: none;
        min-width: 0;
        padding: 6px 0 8px 12px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-simple-wrap.is-open .simple-menu {
        display: block;
    }

    .home-slider {
        margin-top: 100px;
    }
}

/* Final header reset: one clean header background, no floating second card. */
.site-header {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.96));
    border-bottom: 1px solid rgba(31, 111, 67, 0.12);
    box-shadow: 0 14px 38px rgba(12, 34, 19, 0.12);
    filter: none;
}

.topbar {
    background: transparent;
    border-bottom: 1px solid rgba(31, 111, 67, 0.1);
    color: var(--ink);
}

.topbar-inner {
    min-height: 34px;
}

.topbar p {
    color: var(--leaf-dark);
}

.topbar a,
.topbar span,
.topbar-links a,
.topbar-links span {
    color: #24362a;
}

.nav-shell {
    width: min(var(--container), calc(100% - 40px));
    grid-template-areas: "brand nav cta";
    grid-template-columns: 220px minmax(0, 1fr) 158px;
    grid-template-rows: 88px;
    min-height: 88px;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand {
    grid-area: brand;
    min-width: 0;
    padding-right: 0;
}

.brand-logo {
    width: 204px;
    max-width: 204px;
}

.brand-caption {
    margin-top: -3px;
}

.site-nav {
    grid-area: nav;
    align-self: stretch;
    justify-content: center;
    gap: 4px;
    padding: 0 10px;
    border-top: 0;
    flex-wrap: nowrap;
}

.site-nav > a,
.nav-parent {
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.8rem;
}

.header-cta {
    display: inline-flex;
    grid-area: cta;
    justify-self: end;
    min-width: 158px;
    min-height: 46px;
}

.home-slider {
    margin-top: 122px;
}

@media (max-width: 1180px) {
    .nav-shell {
        grid-template-columns: 196px minmax(0, 1fr) 148px;
        grid-template-rows: 84px;
        min-height: 84px;
    }

    .brand-logo {
        width: 184px;
        max-width: 184px;
    }

    .site-nav {
        gap: 2px;
        padding: 0 7px;
    }

    .site-nav > a,
    .nav-parent {
        padding: 0 8px;
        font-size: 0.76rem;
    }

    .header-cta {
        min-width: 148px;
        padding: 0 16px;
    }

    .home-slider {
        margin-top: 118px;
    }
}

@media (max-width: 980px) {
    .site-header {
        background: rgba(255, 255, 255, 0.98);
    }

    .nav-shell {
        width: min(var(--container), calc(100% - 28px));
        min-height: 76px;
        padding: 0;
    }

    .brand-logo {
        width: 166px;
        max-width: 166px;
    }

    .site-nav {
        border-top: 0;
        gap: 0;
        padding: 16px;
    }

    .header-cta {
        display: none;
    }

    .home-slider {
        margin-top: 76px;
        overflow: visible;
    }
}

/* Button stability guard. */
.button,
.header-cta {
    white-space: nowrap;
    line-height: 1;
    text-align: center;
}

.site-header .header-cta {
    display: inline-flex;
    width: 158px;
    height: 46px;
    min-width: 158px;
    min-height: 46px;
    flex: 0 0 158px;
    align-self: center;
    justify-self: end;
    padding: 0 18px;
    border-radius: 999px;
    overflow: hidden;
}

.site-header .header-cta::before {
    flex: 0 0 8px;
}

.row-actions .button {
    min-width: 120px;
    flex: 1 1 120px;
}

@media (max-width: 1180px) {
    .site-header .header-cta {
        width: 148px;
        min-width: 148px;
        flex-basis: 148px;
        padding: 0 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 980px) {
    .site-header .header-cta {
        display: none;
    }
}

@media (max-width: 420px) {
    .row-actions .button {
        width: 100%;
        flex-basis: 100%;
    }
}

/* Premium home page refresh. */
.page-home {
    background:
        linear-gradient(180deg, #fffdf7 0, #f7f4ea 44%, #fffdf7 100%);
}

.page-home .home-slider {
    background: #07120c;
}

.page-home .slider-track {
    min-height: 650px;
    max-height: 680px;
}

.page-home .slider-slide::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(5, 18, 10, 0.9) 0%, rgba(8, 28, 15, 0.66) 42%, rgba(8, 28, 15, 0.16) 100%),
        linear-gradient(180deg, rgba(5, 18, 10, 0.2), rgba(5, 18, 10, 0.48));
    content: "";
}

.page-home .slider-slide::after {
    z-index: 1;
    background:
        radial-gradient(circle at 18% 26%, rgba(247, 199, 95, 0.22), transparent 26%),
        linear-gradient(0deg, rgba(5, 18, 10, 0.58), transparent 48%);
}

.page-home .slider-copy {
    z-index: 2;
    width: min(760px, calc(100% - 120px));
}

.page-home .slider-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid rgba(247, 199, 95, 0.5);
    border-radius: 999px;
    background: rgba(247, 199, 95, 0.14);
    color: #f8d982;
}

.page-home .slider-copy h1 {
    max-width: 820px;
    margin-bottom: 20px;
    color: white;
    font-size: 4.25rem;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.page-home .slider-copy p:not(.eyebrow) {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-cert-line {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-cert-line span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.8rem;
    font-weight: 900;
}

.page-home .hero-actions .button {
    min-width: 158px;
    min-height: 50px;
    border-radius: 999px;
}

.page-home .button-secondary {
    background: rgba(255, 255, 255, 0.94);
    color: var(--leaf-dark);
}

.page-home .slider-assurance {
    z-index: 3;
    right: max(34px, calc((100vw - var(--container)) / 2));
    bottom: 34px;
    width: min(560px, calc(100% - 68px));
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.page-home .slider-assurance div {
    min-height: 92px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(10, 33, 18, 0.74);
}

.page-home .slider-assurance strong {
    color: #f8d982;
    font-size: 1.42rem;
}

.home-market-board {
    padding: 26px 0 0;
    background: #fffdf7;
}

.home-market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(31, 111, 67, 0.12);
    border-radius: var(--radius);
    background: #102d1b;
    box-shadow: 0 18px 46px rgba(12, 34, 19, 0.12);
}

.home-market-grid div {
    min-height: 118px;
    padding: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.home-market-grid div:last-child {
    border-right: 0;
}

.home-market-grid span,
.home-market-grid strong {
    display: block;
}

.home-market-grid span {
    margin-bottom: 9px;
    color: #f8d982;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-market-grid strong {
    color: white;
    font-size: 1rem;
    line-height: 1.42;
}

.page-home .premium-trust {
    margin-top: 28px;
}

.page-home .premium-trust-grid {
    border: 0;
    background: white;
    box-shadow: 0 16px 48px rgba(12, 34, 19, 0.1);
}

.page-home .premium-trust span {
    min-height: 74px;
    border-right: 1px solid rgba(31, 111, 67, 0.1);
    background:
        linear-gradient(180deg, #ffffff, #fbfaf4);
}

.page-home .premium-trust span:last-child {
    border-right: 0;
}

.page-home .premium-intro {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 253, 247, 0.98), rgba(255, 253, 247, 0.86)),
        url("../images/rice-range-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .intro-copy h2,
.page-home .section-heading h2 {
    color: #102d1b;
}

.page-home .premium-metrics div {
    border-color: rgba(31, 111, 67, 0.12);
    background:
        linear-gradient(180deg, #ffffff, #fbfaf4);
}

.page-home .intro-visual img {
    border: 8px solid rgba(255, 255, 255, 0.88);
}

.page-home .intro-badge {
    background:
        linear-gradient(135deg, var(--leaf-dark), #1f6f43);
}

.page-home .premium-catalog {
    background:
        linear-gradient(180deg, rgba(246, 246, 238, 0.98), rgba(255, 253, 247, 0.96)),
        url("../images/home-warehouse.jpg");
    background-size: cover;
    background-position: center;
}

.page-home .category-rail {
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.page-home .premium-category-card {
    position: relative;
    min-height: 350px;
    border: 0;
    background: #07120c;
    box-shadow: 0 20px 50px rgba(12, 34, 19, 0.12);
}

.page-home .premium-category-card-wide {
    grid-column: span 2;
}

.page-home .premium-category-card img {
    height: 100%;
    min-height: 350px;
    opacity: 0.78;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.page-home .premium-category-card::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(7, 18, 12, 0.18) 30%, rgba(7, 18, 12, 0.86) 100%);
    content: "";
}

.page-home .premium-category-card div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 24px;
}

.page-home .premium-category-card span {
    color: #f8d982;
}

.page-home .premium-category-card h3 {
    color: white;
    font-size: 1.22rem;
}

.page-home .premium-category-card p {
    color: rgba(255, 255, 255, 0.78);
}

.page-home .premium-category-card:hover img {
    opacity: 0.92;
    transform: scale(1.04);
}

.page-home .premium-process {
    background:
        linear-gradient(135deg, rgba(7, 18, 12, 0.96), rgba(18, 52, 31, 0.96)),
        url("../images/home-farmer.jpg");
    background-size: cover;
    background-position: center;
}

.page-home .premium-process .feature-card {
    min-height: 230px;
    backdrop-filter: blur(10px);
}

.page-home .featured-premium {
    background:
        linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(246, 246, 238, 0.98)),
        url("../images/sara-slider3.jpg");
    background-size: cover;
    background-position: center;
}

.page-home .premium-product-card {
    border: 0;
    background: white;
    box-shadow: 0 18px 46px rgba(12, 34, 19, 0.1);
}

.page-home .premium-product-card img {
    height: 290px;
    background: #fbfaf4;
}

.page-home .premium-product-card h3 {
    font-size: 1.12rem;
}

.page-home .premium-cta-band {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(10, 33, 18, 0.94), rgba(31, 111, 67, 0.84)),
        url("../images/rice-bulk-logistics-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .premium-cta-inner {
    grid-template-columns: minmax(0, 0.8fr) auto;
}

.page-home .premium-cta-band h2 {
    font-size: 2.35rem;
}

@media (max-width: 1100px) {
    .page-home .slider-copy h1 {
        font-size: 3.45rem;
    }

    .home-market-grid,
    .page-home .category-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .premium-category-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 920px) {
    .page-home .slider-track {
        min-height: 590px;
        max-height: none;
    }

    .page-home .slider-copy {
        width: calc(100% - 44px);
    }

    .page-home .slider-copy h1 {
        font-size: 2.72rem;
    }

    .page-home .slider-assurance {
        width: 100%;
        padding: 12px;
        border-radius: 0;
    }

    .page-home .premium-trust-grid,
    .home-market-grid {
        grid-template-columns: 1fr;
    }

    .home-market-grid div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .home-market-grid div:last-child {
        border-bottom: 0;
    }

    .page-home .premium-cta-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-home .slider-track {
        min-height: 560px;
    }

    .page-home .slider-copy h1 {
        font-size: 2.2rem;
    }

    .hero-cert-line span {
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.74rem;
    }

    .page-home .category-rail {
        grid-template-columns: 1fr;
    }

.page-home .premium-category-card,
.page-home .premium-category-card img {
    min-height: 300px;
    }
}

/* Real product image presentation. */
.catalog-product-image,
.product-card,
.product-detail {
    background:
        linear-gradient(180deg, #ffffff, #fbfaf4);
}

.catalog-product-image img,
.product-card img,
.product-detail img {
    object-fit: contain;
    padding: 12px;
    background:
        radial-gradient(circle at 50% 42%, rgba(201, 154, 53, 0.12), transparent 44%),
        linear-gradient(180deg, #ffffff, #f7f4ea);
}

.category-card img,
.gallery-card img,
.intro-visual img,
.slider-slide img {
    padding: 0;
}

.page-home .premium-category-card img {
    object-fit: cover;
}

/* Premium cohesive header refresh. */
.site-header {
    isolation: isolate;
    overflow: visible;
    background:
        linear-gradient(90deg, rgba(16, 67, 38, 0.06), transparent 26%, rgba(201, 154, 53, 0.08) 72%, rgba(16, 67, 38, 0.05)),
        linear-gradient(180deg, #fffefa 0%, #fbf8ee 100%);
    border-top: 3px solid var(--leaf-dark);
    border-bottom: 1px solid rgba(16, 67, 38, 0.16);
    box-shadow: 0 18px 48px rgba(10, 33, 18, 0.16);
}

.site-header::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        repeating-linear-gradient(135deg, rgba(201, 154, 53, 0.055) 0 1px, transparent 1px 16px);
    content: "";
    opacity: 0.52;
}

.topbar {
    background: transparent;
    border-bottom: 1px solid rgba(16, 67, 38, 0.12);
}

.topbar-inner {
    min-height: 40px;
    gap: 18px;
}

.topbar p {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin: 0;
    padding: 0 12px;
    border: 1px solid rgba(201, 154, 53, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    color: var(--leaf-dark);
    box-shadow: 0 8px 20px rgba(12, 34, 19, 0.06);
    font-size: 0.72rem;
}

.topbar-links {
    gap: 8px;
}

.topbar-links a,
.topbar-links span {
    display: inline-flex;
    align-items: center;
    min-height: 21px;
    padding: 4px 5px;
    border: 1px solid rgba(16, 67, 38, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    color: #263a2c;
    font-size: 0.76rem;
    font-weight: 800;
}

.topbar-links a::before,
.topbar-links span::before {
    width: 5px;
    height: 5px;
    margin-right: 7px;
    background: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 154, 53, 0.16);
}

.nav-shell {
    grid-template-columns: 226px minmax(0, 1fr) 166px;
    grid-template-rows: 92px;
    min-height: 92px;
}

.brand {
    align-content: center;
}

.brand-logo {
    width: 210px;
    max-width: 210px;
    filter: drop-shadow(0 8px 16px rgba(12, 34, 19, 0.1));
}

.brand-caption {
    display: inline-flex;
    width: max-content;
    min-height: 20px;
    align-items: center;
    margin-top: -5px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(16, 67, 38, 0.08);
    color: var(--leaf-dark);
}

.site-nav {
    position: relative;
    gap: 6px;
    padding: 0 12px;
}

.site-nav::before,
.site-nav::after {
    position: absolute;
    top: 50%;
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(16, 67, 38, 0.2), transparent);
    content: "";
    transform: translateY(-50%);
}

.site-nav::before {
    left: 0;
}

.site-nav::after {
    right: 0;
}

.site-nav > a,
.nav-parent {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid transparent;
    color: #1d3024;
    font-size: 0.79rem;
    font-weight: 900;
}

.site-nav > a:hover,
.nav-parent:hover,
.site-nav [aria-current="page"] {
    border-color: rgba(16, 67, 38, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(237, 244, 236, 0.86));
    box-shadow: inset 0 -2px 0 var(--gold), 0 8px 20px rgba(12, 34, 19, 0.08);
}

.site-header .header-cta {
    width: 166px;
    min-width: 166px;
    flex-basis: 166px;
    height: 48px;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background:
        linear-gradient(135deg, #a93424 0%, #df6740 100%);
    box-shadow: 0 16px 34px rgba(185, 67, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26);
    font-size: 0.88rem;
    font-weight: 900;
}

.site-header .header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(185, 67, 47, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.home-slider {
    margin-top: 135px;
}

@media (max-width: 1180px) {
    .nav-shell {
        grid-template-columns: 196px minmax(0, 1fr) 150px;
        grid-template-rows: 88px;
        min-height: 88px;
    }

    .brand-logo {
        width: 184px;
        max-width: 184px;
    }

    .site-nav {
        gap: 2px;
        padding: 0 8px;
    }

    .site-nav > a,
    .nav-parent {
        padding: 0 8px;
        font-size: 0.74rem;
    }

    .site-header .header-cta {
        width: 150px;
        min-width: 150px;
        flex-basis: 150px;
        font-size: 0.8rem;
    }

    .home-slider {
        margin-top: 131px;
    }
}

@media (max-width: 980px) {
    .topbar {
        display: none;
    }

    .nav-shell {
        display: flex;
        grid-template-rows: 76px;
        min-height: 76px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
        border-color: rgba(16, 67, 38, 0.18);
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 8px 22px rgba(12, 34, 19, 0.08);
    }

    .site-nav::before,
    .site-nav::after {
        display: none;
    }

    .site-nav {
        position: fixed;
        inset: 88px 14px auto;
        display: none;
        max-height: calc(100vh - 110px);
        overflow: auto;
        padding: 14px;
        border: 1px solid rgba(16, 67, 38, 0.14);
        border-radius: var(--radius);
        background: #fffefa;
        box-shadow: 0 24px 54px rgba(12, 34, 19, 0.18);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > a,
    .nav-parent {
        justify-content: space-between;
        width: 100%;
        min-height: 48px;
        padding: 0 12px;
        font-size: 0.86rem;
        white-space: normal;
    }

    .site-nav > a + a,
    .site-nav > a + .nav-dropdown-wrap,
    .nav-dropdown-wrap + a,
    .nav-dropdown-wrap + .nav-dropdown-wrap {
        margin-top: 4px;
    }

    .site-header .header-cta {
        display: none;
    }

    .home-slider {
        margin-top: 79px;
    }
}

/* Premium top header color. */
.topbar {
    background:
        linear-gradient(90deg, #082515 0%, #134829 48%, #082515 100%);
    border-bottom: 1px solid rgba(247, 217, 133, 0.22);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.topbar p {
    border-color: rgba(247, 217, 133, 0.38);
    background: rgba(247, 217, 133, 0.12);
    color: #f7d985;
}

.topbar a,
.topbar span,
.topbar-links a,
.topbar-links span {
    border-color: rgba(247, 217, 133, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
}

.topbar-links a:hover {
    border-color: rgba(247, 217, 133, 0.42);
    background: rgba(247, 217, 133, 0.12);
    color: #ffffff;
}

/* Keep dark process section headings readable. */
.page-home .premium-process .eyebrow {
    color: #f8d982;
}

.page-home .premium-process .section-heading h2,
.page-home .premium-process h2,
.page-home .premium-process h3 {
    color: #ffffff;
}

.page-home .premium-process .section-heading > p,
.page-home .premium-process p {
    color: rgba(255, 255, 255, 0.82);
}

/* Warm premium process section background. */
.page-home .premium-process {
    background:
        linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 242, 226, 0.96)),
        url("../images/rice-quality-check-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .premium-process .eyebrow {
    color: var(--red);
}

.page-home .premium-process .section-heading h2,
.page-home .premium-process h2,
.page-home .premium-process h3 {
    color: var(--leaf-dark);
}

.page-home .premium-process .section-heading > p,
.page-home .premium-process p {
    color: var(--muted);
}

.page-home .premium-process .feature-card {
    border-color: rgba(16, 67, 38, 0.14);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(12, 34, 19, 0.1);
}

/* Final premium process treatment. */
.page-home .premium-process {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        linear-gradient(115deg, rgba(255, 253, 247, 0.98) 0%, rgba(255, 253, 247, 0.94) 56%, rgba(241, 232, 203, 0.96) 56%, rgba(249, 245, 232, 0.98) 100%),
        url("../images/breadcrumb-banner-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .premium-process::before {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(201, 154, 53, 0.22);
    border-radius: var(--radius);
    pointer-events: none;
    content: "";
}

.page-home .premium-process .container {
    position: relative;
    z-index: 1;
}

.page-home .premium-process .section-heading {
    margin-bottom: 34px;
    padding: 30px;
    border: 1px solid rgba(16, 67, 38, 0.13);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.9));
    box-shadow: 0 26px 70px rgba(12, 34, 19, 0.12);
}

.page-home .premium-process .section-heading .eyebrow {
    width: fit-content;
    min-height: 22px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(185, 67, 47, 0.14);
    border-radius: 999px;
    background: rgba(185, 67, 47, 0.08);
    color: var(--red);
}

.page-home .premium-process .section-heading h2 {
    max-width: 760px;
    color: #082515;
    font-size: 3rem;
}

.page-home .premium-process .section-heading > p {
    max-width: 500px;
    color: #34463a;
    font-weight: 700;
}

.page-home .premium-process .feature-grid {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.page-home .premium-process .feature-grid::before {
    position: absolute;
    top: 44px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 154, 53, 0.8), transparent);
    content: "";
}

.page-home .premium-process .feature-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.94));
    box-shadow: 0 24px 62px rgba(12, 34, 19, 0.13);
}

.page-home .premium-process .feature-card::after {
    position: absolute;
    inset: auto 20px 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--leaf), var(--gold));
    content: "";
}

.page-home .premium-process .feature-card span {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(201, 154, 53, 0.35);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 28%, #fff4c8, #d7a942 48%, #956718 100%);
    color: #082515;
    box-shadow: 0 16px 34px rgba(201, 154, 53, 0.28);
    font-size: 0.9rem;
}

.page-home .premium-process .feature-card h3 {
    color: var(--leaf-dark);
    font-family: var(--body);
    font-size: 1.18rem;
}

.page-home .premium-process .feature-card p {
    color: var(--muted);
}

.page-home .premium-process .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 82px rgba(12, 34, 19, 0.18);
}

@media (max-width: 980px) {
    .page-home .premium-process .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .premium-process .feature-grid::before {
        display: none;
    }
}

@media (max-width: 640px) {
    .page-home .premium-process {
        padding: 74px 0;
    }

    .page-home .premium-process::before {
        inset: 14px;
    }

    .page-home .premium-process .section-heading {
        padding: 24px 20px;
    }

    .page-home .premium-process .section-heading h2 {
        font-size: 2.18rem;
    }

    .page-home .premium-process .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium home product catalog section. */
.page-home .premium-catalog {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        linear-gradient(120deg, rgba(7, 18, 12, 0.94) 0%, rgba(16, 67, 38, 0.9) 42%, rgba(255, 253, 247, 0.96) 42%, rgba(255, 253, 247, 0.98) 100%),
        url("../images/sara-slider1-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .premium-catalog::before {
    position: absolute;
    inset: 28px;
    border: 1px solid rgba(247, 217, 133, 0.22);
    border-radius: var(--radius);
    pointer-events: none;
    content: "";
}

.page-home .premium-catalog .container {
    position: relative;
    z-index: 1;
}

.page-home .premium-catalog .section-heading {
    align-items: end;
    margin-bottom: 24px;
}

.page-home .premium-catalog .section-heading .eyebrow {
    color: #f8d982;
}

.page-home .premium-catalog .section-heading h2 {
    max-width: 650px;
    color: white;
}

.page-home .premium-catalog .section-heading > p {
    align-self: center;
    max-width: 440px;
    padding: 22px;
    border: 1px solid rgba(16, 67, 38, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    color: #314237;
    box-shadow: 0 18px 46px rgba(12, 34, 19, 0.12);
    backdrop-filter: blur(10px);
}

.catalog-premium-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 28px;
}

.catalog-premium-strip span {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(247, 217, 133, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.page-home .premium-catalog .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.page-home .premium-catalog .premium-category-card {
    min-height: 390px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: #07120c;
    box-shadow: 0 26px 70px rgba(3, 18, 10, 0.28);
}

.page-home .premium-catalog .premium-category-card-wide {
    grid-column: span 2;
}

.page-home .premium-catalog .premium-category-card img {
    min-height: 390px;
    height: 100%;
    filter: saturate(1.08) contrast(1.04);
    opacity: 0.84;
}

.page-home .premium-catalog .premium-category-card::after {
    background:
        linear-gradient(180deg, rgba(7, 18, 12, 0.08) 0%, rgba(7, 18, 12, 0.18) 30%, rgba(7, 18, 12, 0.92) 100%),
        linear-gradient(90deg, rgba(7, 18, 12, 0.45), transparent 55%);
}

.page-home .premium-catalog .premium-category-card div {
    padding: 28px;
}

.page-home .premium-catalog .premium-category-card span {
    min-height: 32px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(247, 217, 133, 0.14);
    color: #f8d982;
}

.page-home .premium-catalog .premium-category-card h3 {
    margin-bottom: 10px;
    color: white;
    font-size: 1.34rem;
}

.page-home .premium-catalog .premium-category-card p {
    color: rgba(255, 255, 255, 0.82);
}

.page-home .premium-catalog .premium-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 86px rgba(3, 18, 10, 0.34);
}

.page-home .premium-catalog .premium-category-card:hover img {
    opacity: 0.96;
    transform: scale(1.045);
}

.catalog-premium-close {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 26px;
    padding: 24px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 247, 0.9)),
        linear-gradient(90deg, rgba(16, 67, 38, 0.08), rgba(201, 154, 53, 0.12));
    box-shadow: 0 24px 60px rgba(12, 34, 19, 0.14);
}

.catalog-premium-close span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-premium-close strong {
    display: block;
    color: var(--leaf-dark);
    font-family: var(--heading);
    font-size: 1.55rem;
    line-height: 1.18;
}

.catalog-premium-close p {
    max-width: 740px;
    margin: 10px 0 0;
    color: var(--muted);
}

.catalog-close-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

@media (max-width: 1100px) {
    .page-home .premium-catalog {
        background:
            linear-gradient(180deg, rgba(7, 18, 12, 0.94) 0%, rgba(16, 67, 38, 0.86) 48%, rgba(255, 253, 247, 0.98) 48%, rgba(255, 253, 247, 0.98) 100%),
            url("../images/sara-slider1-premium.png");
        background-size: cover;
        background-position: center;
    }

    .page-home .premium-catalog .category-rail,
    .catalog-premium-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-home .premium-catalog .premium-category-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .page-home .premium-catalog {
        padding: 74px 0;
    }

    .page-home .premium-catalog::before {
        inset: 14px;
    }

    .page-home .premium-catalog .section-heading > p {
        padding: 18px;
    }

    .page-home .premium-catalog .category-rail,
    .catalog-premium-strip {
        grid-template-columns: 1fr;
    }

    .page-home .premium-catalog .premium-category-card,
    .page-home .premium-catalog .premium-category-card img {
        min-height: 320px;
    }
}

/* Readability reset for the home product catalog heading and badges. */
.page-home .premium-catalog {
    padding: 96px 0;
    background:
        linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(246, 251, 245, 0.98)),
        url("../images/sara-slider1-premium.png");
    background-size: cover;
    background-position: center right;
}

.page-home .premium-catalog::before {
    inset: 24px;
    border-color: rgba(16, 67, 38, 0.13);
}

.page-home .premium-catalog .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 22px;
}

.page-home .premium-catalog .section-heading .eyebrow {
    width: fit-content;
    min-height: 34px;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 67, 38, 0.1);
    color: var(--leaf-dark);
}

.page-home .premium-catalog .section-heading h2 {
    max-width: 760px;
    color: var(--leaf-dark);
    text-shadow: none;
}

.page-home .premium-catalog .section-heading > p {
    max-width: none;
    margin: 0;
    padding: 22px 24px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: #26362d;
    font-weight: 700;
    line-height: 1.62;
}

.page-home .premium-catalog .catalog-premium-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.page-home .premium-catalog .catalog-premium-strip span {
    flex: 1 1 230px;
    min-height: 58px;
    border: 1px solid rgba(247, 217, 133, 0.32);
    background:
        linear-gradient(135deg, #0b321d, #17603a);
    color: #fff8df;
    letter-spacing: 0;
    box-shadow: 0 18px 42px rgba(12, 34, 19, 0.18);
}

@media (max-width: 860px) {
    .page-home .premium-catalog .section-heading {
        grid-template-columns: 1fr;
    }

    .catalog-premium-close {
        grid-template-columns: 1fr;
    }

    .catalog-close-actions {
        justify-content: flex-start;
    }
}

/* Final premium polish for the Our Products section heading. */
.page-home .premium-catalog .catalog-premium-heading {
    position: relative;
    margin-bottom: 28px;
    padding: 30px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.92)),
        radial-gradient(circle at 12% 18%, rgba(247, 217, 133, 0.3), transparent 28%);
    box-shadow: 0 28px 72px rgba(12, 34, 19, 0.14);
    overflow: hidden;
}

.page-home .premium-catalog .catalog-premium-heading::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--gold), var(--leaf));
    content: "";
}

.page-home .premium-catalog .catalog-premium-heading .eyebrow {
    min-height: 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(16, 67, 38, 0.12);
    background:
        linear-gradient(135deg, rgba(16, 67, 38, 0.1), rgba(247, 217, 133, 0.18));
    color: var(--leaf-dark);
}

.page-home .premium-catalog .catalog-premium-heading h2 {
    max-width: 780px;
    margin-bottom: 0;
    color: #082515;
    font-size: 3.15rem;
}

.catalog-heading-line {
    width: min(320px, 100%);
    height: 4px;
    margin-top: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--leaf), transparent);
}

.catalog-heading-panel {
    padding: 24px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, #0f3b24, #082515);
    color: white;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 18px 44px rgba(12, 34, 19, 0.16);
}

.catalog-heading-panel strong {
    display: block;
    margin-bottom: 10px;
    color: #f8d982;
    font-size: 1.15rem;
    font-weight: 900;
}

.page-home .premium-catalog .catalog-heading-panel p {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

@media (max-width: 640px) {
    .page-home .premium-catalog .catalog-premium-heading {
        padding: 24px 20px;
    }

    .page-home .premium-catalog .catalog-premium-heading h2 {
        font-size: 2.18rem;
    }
}

/* Premium featured products section. */
.page-home .featured-premium {
    position: relative;
    overflow: hidden;
    padding: 104px 0;
    background:
        linear-gradient(135deg, rgba(7, 18, 12, 0.96) 0%, rgba(16, 67, 38, 0.92) 44%, rgba(246, 251, 245, 0.98) 44%, rgba(255, 253, 247, 0.98) 100%),
        url("../images/sara-slider3-premium.png");
    background-size: cover;
    background-position: center;
}

.page-home .featured-premium::before {
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(247, 217, 133, 0.22);
    border-radius: var(--radius);
    pointer-events: none;
    content: "";
}

.page-home .featured-premium .container {
    position: relative;
    z-index: 1;
}

.page-home .featured-premium .featured-premium-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.48fr);
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
    padding: 30px;
    border: 1px solid rgba(247, 217, 133, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(10, 33, 18, 0.96), rgba(16, 67, 38, 0.88));
    box-shadow: 0 28px 72px rgba(5, 18, 10, 0.26);
}

.page-home .featured-premium .featured-premium-heading .eyebrow {
    width: fit-content;
    min-height: 20px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(247, 217, 133, 0.28);
    border-radius: 999px;
    background: rgba(247, 217, 133, 0.12);
    color: #f8d982;
}

.page-home .featured-premium .featured-premium-heading h2 {
    margin-bottom: 0;
    color: white;
    font-size: 3rem;
}

.featured-heading-line {
    width: min(280px, 100%);
    height: 4px;
    margin-top: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.78), transparent);
}

.featured-heading-panel {
    padding: 24px;
    border: 1px solid rgba(16, 67, 38, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(3, 18, 10, 0.18);
}

.featured-heading-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--leaf-dark);
    font-size: 1.12rem;
    font-weight: 900;
}

.page-home .featured-premium .featured-heading-panel p {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.featured-premium-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.featured-premium-strip span {
    flex: 1 1 230px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 1px solid rgba(247, 217, 133, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.12);
    color: #fff8df;
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 16px 40px rgba(3, 18, 10, 0.18);
    backdrop-filter: blur(10px);
}

.page-home .featured-premium .product-grid {
    gap: 20px;
}

.page-home .featured-premium .premium-product-card {
    border: 1px solid rgba(16, 67, 38, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 62px rgba(12, 34, 19, 0.13);
}

.page-home .featured-premium .premium-product-card img {
    height: 260px;
    object-fit: contain;
    padding: 16px;
    background:
        radial-gradient(circle at 50% 42%, rgba(201, 154, 53, 0.16), transparent 48%),
        linear-gradient(180deg, #ffffff, #f7f4ea);
}

.page-home .featured-premium .premium-product-card div {
    padding: 22px;
}

.page-home .featured-premium .premium-product-card span {
    min-height: 30px;
    align-items: center;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(185, 67, 47, 0.08);
    color: var(--red);
}

.page-home .featured-premium .premium-product-card h3 {
    font-size: 1.18rem;
}

.page-home .featured-premium .premium-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 82px rgba(12, 34, 19, 0.2);
}

.featured-premium-close {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-top: 28px;
    padding: 24px;
    border: 1px solid rgba(247, 217, 133, 0.28);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(16, 67, 38, 0.96), rgba(8, 37, 21, 0.98));
    box-shadow: 0 24px 64px rgba(5, 18, 10, 0.22);
    color: white;
}

.featured-premium-close span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f8d982;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-premium-close strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.55rem;
    line-height: 1.18;
}

.featured-premium-close p {
    max-width: 720px;
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
    .page-home .featured-premium {
        background:
            linear-gradient(180deg, rgba(7, 18, 12, 0.96) 0%, rgba(16, 67, 38, 0.9) 42%, rgba(246, 251, 245, 0.98) 42%, rgba(255, 253, 247, 0.98) 100%),
            url("../images/sara-slider3-premium.png");
        background-size: cover;
        background-position: center;
    }

    .page-home .featured-premium .featured-premium-heading,
    .featured-premium-close {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-home .featured-premium {
        padding: 74px 0;
    }

    .page-home .featured-premium::before {
        inset: 14px;
    }

    .page-home .featured-premium .featured-premium-heading {
        padding: 24px 20px;
    }

    .page-home .featured-premium .featured-premium-heading h2 {
        font-size: 2.18rem;
    }
}

/* Worldwide import service page. */
.import-intro-grid,
.import-service-grid {
    display: grid;
    gap: 24px;
}

.import-intro-grid {
    grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
    align-items: stretch;
}

.import-highlight {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(201, 154, 53, 0.24);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(16, 67, 38, 0.96), rgba(8, 37, 21, 0.98)),
        url("../images/breadcrumb-banner-premium.png");
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    color: white;
}

.import-highlight span {
    color: var(--gold-soft);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.import-highlight strong {
    margin: 10px 0;
    font-family: var(--heading);
    font-size: 2.8rem;
    line-height: 1;
}

.import-highlight p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.import-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.import-process article {
    position: relative;
    min-height: 255px;
    padding: 24px;
    border: 1px solid rgba(16, 67, 38, 0.14);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 14px 36px rgba(26, 36, 29, 0.08);
    overflow: hidden;
}

.import-process article::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--gold));
    content: "";
}

.import-process span {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(16, 67, 38, 0.1);
    color: var(--leaf-dark);
    font-weight: 900;
}

.import-process h3 {
    font-family: var(--body);
    font-size: 1.08rem;
}

.import-process p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.import-service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.import-service-grid .quality-card {
    padding: 24px;
}

.import-service-grid .check-list {
    margin-top: 18px;
}

.import-cta {
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(8, 37, 21, 0.94), rgba(16, 67, 38, 0.88)),
        url("../images/breadcrumb-banner-premium.png");
    background-size: cover;
    background-position: center;
    color: white;
}

.import-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.import-cta h2 {
    max-width: 760px;
    color: white;
}

.import-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1180px) {
    .import-process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .import-intro-grid,
    .import-service-grid,
    .import-process {
        grid-template-columns: 1fr;
    }

    .import-process article {
        min-height: 0;
    }

    .import-cta-inner {
        display: block;
    }

    .import-cta-inner .button {
        margin-top: 18px;
    }
}

/* Premium after-slider product marquee. */
.page-home .catalog-strip-after-slider {
    margin-top: 0;
    border: 0;
    background:
        linear-gradient(90deg, #0b2b19 0%, #164a2d 22%, #c99a35 50%, #164a2d 78%, #0b2b19 100%);
    color: white;
    box-shadow:
        0 18px 42px rgba(10, 31, 18, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.page-home .catalog-strip-after-slider .catalog-strip-inner {
    min-height: 56px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
}

.page-home .catalog-strip-after-slider strong {
    position: relative;
    min-height: 22px;
    padding: 6px 18px 6px 30px;
    border: 1px solid rgba(255, 248, 230, 0.28);
    border-radius: var(--radius);
    background: linear-gradient(135deg, #b43e2a, #b43e2a);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(6, 25, 13, 0.22);
}

.page-home .catalog-strip-after-slider strong::before {
    position: absolute;
    top: 50%;
    left: 14px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(201, 74, 50, 0.14);
    content: "";
    transform: translateY(-50%);
}

.page-home .catalog-strip-after-slider marquee {
    color: #fff8e6;
    font-size: 0.94rem;
    font-weight: 900;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.22);
}

@media (max-width: 640px) {
    .page-home .catalog-strip-after-slider .catalog-strip-inner {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px 0;
    }

    .page-home .catalog-strip-after-slider strong {
        justify-self: start;
    }

    .page-home .catalog-strip-after-slider marquee {
        font-size: 0.86rem;
    }
}

/* Final mobile responsiveness guard across the site. */
@media (max-width: 980px) {
    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        position: fixed;
    }

    .nav-shell {
        width: min(100% - 28px, var(--container));
        min-height: 76px;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 44px;
    }

    .site-nav {
        position: fixed;
        top: 88px;
        right: 14px;
        left: 14px;
        display: none;
        width: auto;
        max-height: calc(100vh - 106px);
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .site-nav.is-open {
        display: block;
    }

    .nav-dropdown-wrap {
        width: 100%;
    }

    .site-nav > a,
    .nav-parent {
        display: flex;
        width: 100%;
        min-height: 48px;
        justify-content: space-between;
    }

    .simple-menu,
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-height: none;
        margin: 4px 0 8px;
        padding: 8px 0 8px 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-wrap.is-open .simple-menu,
    .nav-dropdown-wrap.is-open .mega-menu {
        display: block;
    }

    .site-nav.is-open .nav-dropdown-wrap.is-open > .simple-menu,
    .site-nav.is-open .nav-dropdown-wrap.is-open > .mega-menu {
        position: relative;
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        /* margin: 551px 0px 0 -170px; */
    }

    .mega-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }

    .mega-intro {
        display: none;
    }

    .home-slider {
        margin-top: 79px;
    }

    .page-hero {
        min-height: 360px;
        padding-top: 132px;
        padding-bottom: 54px;
    }

    .section-heading,
    .product-layout,
    .profile-grid,
    .contact-grid,
    .import-intro-grid,
    .import-service-grid,
    .catalog-premium-close,
    .featured-premium-close {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
        top: auto;
    }

    .catalog-close-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container,
    .nav-shell,
    .page-home .featured-premium .container,
    .page-home .premium-catalog .container,
    .page-home .premium-process .container {
        width: min(100% - 26px, var(--container));
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .brand-logo {
        width: 146px;
        max-width: 146px;
    }

    .home-slider {
        margin-top: 76px;
        overflow: visible;
    }

    .page-home .slider-track {
        min-height: 610px;
        max-height: none;
    }

    .slider-copy,
    .page-home .slider-copy {
        top: 46%;
        left: 18px;
        width: calc(100% - 36px);
        max-width: none;
        transform: translateY(-50%);
    }

    .page-home .slider-copy h1,
    .slider-copy h1 {
        font-size: 2.08rem;
        line-height: 1.14;
    }

    .slider-copy p,
    .page-home .slider-copy p:not(.eyebrow) {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .hero-actions,
    .section-actions,
    .row-actions,
    .catalog-close-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .button,
    .row-actions .button,
    .hero-actions .button,
    .section-actions .button {
        width: 100%;
        min-width: 0;
        white-space: normal;
        line-height: 1.2;
    }

    .hero-cert-line {
        gap: 8px;
    }

    .hero-cert-line span {
        flex: 1 1 100%;
        justify-content: center;
        text-align: center;
    }

    .page-home .slider-assurance {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        margin: 0;
        padding: 10px 13px;
        border-radius: 0;
        background: rgba(8, 37, 21, 0.94);
    }

    .page-home .slider-assurance div {
        min-height: 58px;
    }

    .page-home .slider-assurance strong {
        font-size: 1.18rem;
    }

    .page-home .premium-trust-grid,
    .home-market-grid,
    .category-rail,
    .product-grid,
    .feature-grid,
    .quality-grid,
    .gallery-grid,
    .cert-grid,
    .sitemap-grid,
    .footer-grid,
    .form-grid,
    .spec-grid,
    .page-home .premium-catalog .category-rail,
    .page-home .premium-process .feature-grid,
    .page-home .featured-premium .product-grid {
        grid-template-columns: 1fr;
    }

    .page-home .premium-category-card,
    .page-home .premium-category-card img {
        min-height: 300px;
    }

    .catalog-group {
        padding: 16px;
        scroll-margin-top: 92px;
    }

    .catalog-product-row {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 0;
    }

    .catalog-product-image img {
        height: 220px;
    }

    .product-detail img {
        height: 290px;
    }

    .product-detail-body,
    .inquiry-panel,
    .modal-form,
    .page-home .premium-catalog .catalog-premium-heading,
    .page-home .featured-premium .featured-premium-heading,
    .page-home .premium-process .section-heading {
        padding: 20px;
    }

    .quote-strip {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .breadcrumb {
        border-radius: var(--radius);
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .footer-cta-inner,
    .footer-bottom-inner,
    .import-cta-inner {
        display: block;
    }

    .footer-cta-inner .button,
    .import-cta-inner .button {
        margin-top: 18px;
    }

    .inquiry-dialog {
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
        padding: 20px;
        overflow-y: auto;
    }
}

@media (max-width: 420px) {
    .page-home .slider-track {
        min-height: 660px;
    }

    .page-home .slider-copy h1,
    .slider-copy h1 {
        font-size: 1.86rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .catalog-product-image img,
    .product-detail img {
        height: 240px;
    }
}

/* Premium footer contact icons. */
.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-item {
    display: grid !important;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0 !important;
    padding: 10px;
    border: 1px solid rgba(247, 217, 133, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.78);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

a.footer-contact-item:hover {
    border-color: rgba(247, 217, 133, 0.34);
    background: rgba(247, 217, 133, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-contact-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(247, 217, 133, 0.36);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 24%, #fff4c8, #d5a43a 52%, #8b641b 100%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.footer-contact-icon svg {
    width: 24px;
    height: 24px;
    margin: 6px 0px 0px 6px;
    fill: none;
    stroke: #102d1b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item strong,
.footer-contact-item span,
.footer-contact-item p {
    min-width: 0;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 3px;
    color: #f8d982;
    font-size: 0.82rem;
}

.footer-contact-item span,
.footer-contact-item p {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

a.footer-contact-item:hover span {
    color: #ffffff;
}

@media (max-width: 640px) {
    .footer-contact-item {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px;
        padding: 9px;
    }

    .footer-contact-icon {
        width: 34px;
        height: 34px;
    }

    .footer-contact-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Premium contact page. */
.page-contact .section#inquiry {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(246, 251, 245, 0.94)),
        url("../images/rice-bulk-logistics-premium.png");
    background-size: cover;
    background-position: center;
}

.page-contact .contact-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.42fr);
    gap: 28px;
}

.page-contact .inquiry-panel,
.page-contact .premium-contact-card {
    border-color: rgba(201, 154, 53, 0.22);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 253, 247, 0.94));
    box-shadow: 0 28px 76px rgba(12, 34, 19, 0.13);
}

.page-contact .inquiry-panel {
    padding: 34px;
}

.contact-form-heading {
    margin-bottom: 24px;
}

.contact-form-heading h2 {
    margin-bottom: 12px;
    color: var(--leaf-dark);
    font-size: 2.7rem;
}

.contact-form-heading p:not(.eyebrow) {
    max-width: 760px;
    color: #34463a;
    font-weight: 700;
}

.contact-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-highlights span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(31, 111, 67, 0.12);
    border-radius: 999px;
    background: rgba(31, 111, 67, 0.08);
    color: var(--leaf-dark);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.page-contact .field input,
.page-contact .field select,
.page-contact .field textarea {
    border-color: rgba(16, 67, 38, 0.14);
    background: #fffefa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.page-contact .field input:focus,
.page-contact .field select:focus,
.page-contact .field textarea:focus {
    outline: 2px solid rgba(201, 154, 53, 0.28);
    border-color: rgba(201, 154, 53, 0.48);
}

.premium-contact-card {
    padding: 26px;
}

.premium-contact-card h2 {
    margin-bottom: 18px;
    color: var(--leaf-dark);
    font-size: 2rem;
}

.contact-detail-list {
    display: grid;
    gap: 12px;
}

.contact-detail-item {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0 !important;
    padding: 12px;
    border: 1px solid rgba(16, 67, 38, 0.1);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--muted);
}

a.contact-detail-item:hover {
    border-color: rgba(201, 154, 53, 0.34);
    box-shadow: 0 14px 34px rgba(12, 34, 19, 0.1);
    transform: translateY(-2px);
}

.contact-detail-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 24%, #fff4c8, #d5a43a 52%, #8b641b 100%);
}

.contact-detail-icon svg {
    width: 19px;
    margin: 10px 0 0 11px;
    height: 19px;
    fill: none;
    stroke: #102d1b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-item strong,
.contact-detail-item span,
.contact-detail-item p {
    min-width: 0;
}

.contact-detail-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--leaf-dark);
    font-size: 0.82rem;
}

.contact-detail-item p,
.contact-detail-item span {
    display: block;
    margin: 0;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.contact-hours {
    margin-top: 16px;
    padding: 16px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, var(--leaf-dark), #1f6f43);
    color: white;
}

.contact-hours strong,
.contact-hours span {
    display: block;
}

.contact-hours strong {
    margin-bottom: 8px;
    color: #f8d982;
}

.contact-hours span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.page-contact .map-panel {
    min-height: 310px;
    align-items: end;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(8, 37, 21, 0.2), rgba(8, 37, 21, 0.9)),
        url("../images/breadcrumb-banner-premium.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 28px 76px rgba(12, 34, 19, 0.16);
}

.page-contact .map-panel h2 {
    color: white;
    font-size: 1.85rem;
}

.page-contact .map-panel p {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
    .page-contact .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-contact .inquiry-panel,
    .premium-contact-card {
        padding: 20px;
    }

    .contact-form-heading h2,
    .premium-contact-card h2 {
        font-size: 1.9rem;
    }

    .contact-highlights {
        display: grid;
        grid-template-columns: 1fr;
    }

    .contact-highlights span {
        justify-content: center;
        text-align: center;
    }

    .contact-detail-item {
        grid-template-columns: 36px minmax(0, 1fr);
        padding: 10px;
    }

    .contact-detail-icon {
        width: 36px;
        height: 36px;
    }

    .page-contact .map-panel {
        min-height: 260px;
    }
}

/* Premium topbar icon polish. */
.site-header .topbar {
    background:
        linear-gradient(90deg, #071f12 0%, #124b2b 48%, #071f12 100%);
    border-bottom: 1px solid rgba(247, 217, 133, 0.24);
}

.site-header .topbar-inner {
    min-height: 42px;
    gap: 16px;
}

.site-header .topbar p,
.site-header .topbar-links a,
.site-header .topbar-links > span {
    display: inline-flex;
    min-width: 0;
    min-height: 28px;
    align-items: center;
    gap: 7px;
    margin: 0;
    padding: 0 11px;
    border: 1px solid rgba(247, 217, 133, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.76rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.site-header .topbar p {
    border-color: rgba(247, 217, 133, 0.36);
    background: rgba(247, 217, 133, 0.13);
    color: #f8d982;
    text-transform: uppercase;
}

.site-header .topbar-links {
    min-width: 0;
    gap: 8px;
}

.site-header .topbar-icon {
    display: inline-grid;
    width: 26px;
    height: 19px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff4c8, #d5a43a);
}

.site-header .topbar-icon svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: #102d1b;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header .topbar-links a::before,
.site-header .topbar-links span::before {
    display: none;
}

.site-header .topbar-links a:hover {
    border-color: rgba(247, 217, 133, 0.42);
    background: rgba(247, 217, 133, 0.14);
    color: #ffffff;
}

@media (max-width: 1180px) {
    .site-header .topbar p,
    .site-header .topbar-links a,
    .site-header .topbar-links > span {
        padding: 0 8px;
        font-size: 0.7rem;
    }

    .site-header .topbar-icon {
        width: 16px;
        height: 16px;
        flex-basis: 16px;
    }
}

/* Final mobile menu fix. Keep this at the end so it wins over older header rules. */
@media (max-width: 980px) {
    .site-header .topbar {
        display: none;
    }

    .site-header {
        min-height: 76px;
        overflow: visible;
    }

    .nav-shell {
        display: flex;
        width: min(100% - 24px, var(--container));
        min-height: 76px;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin: 0 auto;
        padding: 0;
    }

    .brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-logo {
        width: 150px;
        max-width: 150px;
    }

    .nav-toggle {
        position: relative;
        z-index: 61;
        display: inline-flex;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
        border: 1px solid rgba(16, 67, 38, 0.18);
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(12, 34, 19, 0.12);
    }

    .nav-toggle span {
        width: 19px;
        height: 2px;
        margin: 0;
        background: var(--leaf-dark);
    }

    .site-nav {
        position: fixed;
        top: 84px;
        right: 12px;
        left: 12px;
        z-index: 60;
        display: none;
        width: auto;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 12px;
        border: 1px solid rgba(16, 67, 38, 0.14);
        border-radius: var(--radius);
        background: #fffefa;
        box-shadow: 0 24px 60px rgba(12, 34, 19, 0.22);
    }

    .site-nav.is-open {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .site-nav::before,
    .site-nav::after {
        display: none;
    }

    .nav-dropdown-wrap {
        position: relative;
        width: 100%;
    }

    .site-nav > a,
    .nav-parent {
        display: flex;
        width: 100%;
        min-height: 48px;
        align-items: center;
        justify-content: space-between;
        padding: 0 14px;
        border: 1px solid rgba(16, 67, 38, 0.08);
        border-radius: var(--radius);
        background: #ffffff;
        color: var(--leaf-dark);
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: normal;
        box-shadow: none;
    }

    .nav-parent span {
        flex: 0 0 auto;
    }

    .simple-menu,
    .mega-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-height: none;
        margin: 6px 0 4px;
        padding: 8px;
        border: 1px solid rgba(16, 67, 38, 0.08);
        border-radius: var(--radius);
        background: rgba(237, 244, 236, 0.8);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-dropdown-wrap.is-open .simple-menu,
    .nav-dropdown-wrap.is-open .mega-menu {
        display: block;
    }

    .simple-menu a,
    .mega-menu a {
        display: block;
        margin: 0;
        padding: 10px 12px;
        border-radius: 6px;
        color: #24362a;
        font-size: 0.86rem;
        line-height: 1.28;
    }

    .mega-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
        max-height: none;
        overflow: visible;
    }

    .mega-menu section {
        overflow: hidden;
        padding: 0;
        border: 1px solid rgba(16, 67, 38, 0.09);
        border-radius: var(--radius);
        background: #ffffff;
    }

    .mega-menu .mega-title {
        display: flex;
        min-height: 46px;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 0 12px;
        color: var(--leaf-dark);
        font-weight: 900;
    }

    .mega-menu .mega-title::after {
        width: 8px;
        height: 8px;
        margin-left: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        content: "";
        transform: rotate(45deg);
        transition: transform 0.18s ease;
    }

    .mega-menu section.is-open .mega-title::after {
        transform: rotate(225deg);
    }

    .mega-menu section a:not(.mega-title) {
        display: none;
        margin: 0 8px 8px;
        padding: 10px 12px;
        background: rgba(237, 244, 236, 0.78);
    }

    .mega-menu section.is-open a:not(.mega-title) {
        display: block;
    }

    .mega-menu section small,
    .mega-intro {
        display: none;
    }

    .site-header .header-cta {
        display: none;
    }

    .home-slider {
        margin-top: 76px;
    }

    .page-hero {
        padding-top: 128px;
    }
}

@media (max-width: 420px) {
    .brand-logo {
        width: 136px;
        max-width: 136px;
    }

    .site-nav {
        top: 80px;
        right: 10px;
        left: 10px;
        max-height: calc(100vh - 92px);
    }
}

/* Final mobile Products submenu stabilizer. */
@media (max-width: 980px) {
    .site-nav.is-open .nav-products-wrap.is-open > .mega-menu {
        position: static !important;
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-height: min(54vh, 420px) !important;
        margin: 6px 0 4px !important;
        padding: 8px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        border: 1px solid rgba(16, 67, 38, 0.12) !important;
        border-radius: var(--radius) !important;
        background: #f4f8ef !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .site-nav.is-open .nav-products-wrap.is-open .mega-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 7px !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .site-nav.is-open .nav-products-wrap .mega-menu section {
        width: 100%;
        overflow: hidden;
        border: 1px solid rgba(16, 67, 38, 0.1);
        border-radius: var(--radius);
        background: #ffffff;
    }

    .site-nav.is-open .nav-products-wrap .mega-menu .mega-title {
        min-height: 42px;
        padding: 0 11px;
        color: var(--leaf-dark);
        font-size: 0.83rem;
        line-height: 1.18;
    }

    .site-nav.is-open .nav-products-wrap .mega-menu section a:not(.mega-title) {
        display: none !important;
        margin: 0 8px 7px;
        padding: 9px 10px;
        background: rgba(237, 244, 236, 0.78);
        font-size: 0.8rem;
        line-height: 1.25;
    }

    .site-nav.is-open .nav-products-wrap .mega-menu section.is-open a:not(.mega-title) {
        display: block !important;
    }
}

@media (max-width: 420px) {
    .site-nav.is-open .nav-products-wrap.is-open > .mega-menu {
        max-height: min(50vh, 360px) !important;
    }
}
