.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --color-sky-100: #c9f0f8;
    --color-sky-300: #90e0ef;
    --color-sky-500: #00b4d8;
    --color-blue-700: #0077b6;
    --color-blue-950: #03045e;
    --content-width: 1200px;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #1a4004;
}

body {
    margin: 0;
    min-width: 320px;
    background: #fff;
    color: #1a4004;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
}

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

.site-header {
    border-bottom: 1px solid #a8eb61;
    background: #478307;
}

.site-header-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-logo {
    max-height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.site-brand-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a4004;
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu-panel {
    display: none;
}

.main-menu,
.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
}

.main-menu > li {
    position: relative;
}

.main-menu a {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    font-size: 15px;
    font-family: roboto;
}

.main-menu a:hover,
.main-menu a:focus-visible {
    background: #a8eb61;
    color: #1a4004;
}

.main-menu .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.main-menu .submenu a {
    white-space: nowrap;
}

.main-menu li:hover > .submenu,
.main-menu li:focus-within > .submenu {
    display: block;
}

.site-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-search input {
    min-width: 190px;
    padding: 8px 10px;
    border: 1px solid var(--color-sky-500);
    border-radius: 6px;
}

.site-search button {
    padding: 8px 11px;
    border: 1px solid #65b115;
    border-radius: 6px;
    background: #65b115;
    color: #fff;
    cursor: pointer;
}

.site-footer {
    margin-top: 40px;
    background: #1a4004;
    color: #ecfbdb;
}

.site-footer-inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 36px 16px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 28px;
}

.footer-column h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #fff;
}

.footer-column p {
    margin: 0 0 10px;
    line-height: 1.6;
}

.footer-column span {
    font-weight: 700;
    color: #fff;
}

.footer-column a {
    color: #ecfbdb;
    text-decoration: none;
}

.footer-column a:hover {
    color: #a8eb61;
}

.footer-logo {
    max-height: 70px;
    max-width: 220px;
    object-fit: contain;
    background: #a8eb6130;
    padding: 8px;
    border-radius: 8px;
}

.footer-intro {
    margin-top: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.home-hero {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 20px auto 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    align-items: stretch;
}

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

.home-hero-sidebar-only {
    grid-template-columns: 280px;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 16px;
    text-align: center;
    color: #cbd5e1;
}

.scroll-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1100;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #65b115;
    color: #fff;
    box-shadow: 0 8px 20px rgba(3, 4, 94, 0.24);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    background: #1a4004;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-banner-slider {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #ecfbdb;
}

.home-banner-track {
    position: relative;
    aspect-ratio: 920 / 420;
}

.home-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease;
}

.home-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-banner-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.home-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-banner-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.home-banner-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.home-banner-nav:hover {
    background: rgba(0, 0, 0, 0.72);
}

.home-banner-nav:active {
    transform: translateY(-50%) scale(0.94);
}

.home-banner-nav:focus-visible,
.home-banner-dots button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.home-banner-prev {
    left: 12px;
}

.home-banner-next {
    right: 12px;
}

.home-banner-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-banner-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
}

.home-banner-dots button.is-active {
    background: var(--color-sky-500);
}

.home-sidebar-menu {
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.home-sidebar-menu h2 {
    margin: 0;
    padding: 14px 16px;
    background: #65b115;
    color: #fff;
    font-size: 18px;
}

.home-sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-sidebar-menu li + li {
    border-top: 1px solid #ecfbdb;
}

.home-sidebar-menu a {
    display: block;
    padding: 13px 16px;
    color: #1a4004;
    text-decoration: none;
    font-weight: 600;
}

.home-sidebar-menu a:hover {
    background: #ecfbdb;
    color: #65b115;
}

.home-sidebar-menu nav + nav {
    border-top: 1px solid #a8eb61;
    margin-top: 16px;
    padding-top: 16px;
}

.home-section {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto 42px;
}

.home-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    border-bottom: 2px solid #a8eb61;
}

.home-section-heading h2 {
    margin: 0;
    padding: 10px 16px;
    border-radius: 6px 6px 0 0;
    background: #65b115;
    color: #fff;
    font-size: 20px;
    line-height: 26px;
}

.home-section-heading > a {
    color: #65b115;
    font-weight: 700;
    text-decoration: none;
}

.home-section-heading > a:hover {
    color: #1a4004;
}

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-product-card:hover {
    border-color: var(--color-sky-500);
    box-shadow: 0 8px 22px rgba(0, 119, 182, 0.14);
    transform: translateY(-2px);
}

.home-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ecfbdb;
    color: #65b115;
    text-decoration: none;
}

.home-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.03);
}

.home-product-content {
    padding: 14px;
}

.home-product-content h3 {
    min-height: 36px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 18px;
}

.home-product-content h3 a {
    color: #1a4004;
    text-decoration: none;
}

.home-product-content h3 a:hover {
    color: #65b115;
}

.home-product-price {
    margin: 0;
    color: #65b115;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.home-news-section {
    padding-top: 2px;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
}

.home-news-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #fff;
}

.home-news-image {
    display: block;
    min-height: 132px;
    overflow: hidden;
    background: #ecfbdb;
}

.home-news-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.home-news-item:hover .home-news-image img {
    transform: scale(1.04);
}

.home-news-content {
    min-width: 0;
    padding: 12px 14px;
}

.home-news-content h3 {
    margin: 0 0 5px;
    font-size: 15px;
    line-height: 19px;
}

.home-news-content h3 a {
    color: #1a4004;
    text-decoration: none;
}

.home-news-content h3 a:hover {
    color: #65b115;
}

.home-news-content time {
    display: block;
    margin-bottom: 6px;
    color: #65b115;
    font-size: 12px;
    line-height: 16px;
}

.home-news-content p {
    display: -webkit-box;
    display: box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

    line-clamp: 3;
}

.home-empty-state {
    padding: 18px;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #ecfbdb;
}

.product-category-page {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 24px auto 46px;
}

.product-category-page h1 {
    margin: 0 0 22px;
    color: #1a4004;
    font-size: 30px;
    line-height: 38px;
}

.service-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: start;
}

.service-category-main {
    min-width: 0;
}

.service-full-content-section {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
}

.service-full-content {
    color: #1f2937;
    line-height: 1.7;
    max-height: none;
    overflow: visible;
}

.service-full-content img {
    max-width: 100%;
    height: auto;
}

.service-category-summary {
    color: #1f2937;
    font-size: 15px;
    line-height: 24px;
}

.service-category-sidebar {
    min-width: 0;
}

.service-detail-page {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 24px auto 46px;
}

.service-detail-page h1 {
    margin: 0 0 14px;
    color: #1a4004;
    font-size: 32px;
    line-height: 40px;
}

.service-detail-summary {
    max-width: 960px;
    margin: 0 0 28px;
    color: #334155;
    font-size: 16px;
    line-height: 26px;
}

.service-sidebar-posts ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-sidebar-posts li + li {
    border-top: 1px solid #e5e7eb;
}

.sidebar-menu-block .service-sidebar-post {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    color: #1f2937;
    text-decoration: none;
}

.sidebar-menu-block .service-sidebar-post:hover,
.sidebar-menu-block .service-sidebar-post:focus-visible {
    background: #f9fafb;
    color: #dc2626;
}

.service-sidebar-post-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #ecfbdb;
    color: #65b115;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
}

.service-sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-sidebar-post-title {
    min-width: 0;
    font-weight: 700;
    line-height: 19px;
}

.news-listing-page {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 24px auto 46px;
}

.news-listing-page h1 {
    margin: 0 0 22px;
    color: #1a4004;
    font-size: 30px;
    line-height: 38px;
}

.news-listing-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: start;
}

.news-listing-main,
.news-listing-sidebar {
    min-width: 0;
}

.news-listing-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px dashed #4a90e2;
}

.news-listing-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 6px;
    background: #ecfbdb;
    color: #65b115;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}

.news-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-listing-content h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 26px;
}

.news-listing-content h3 a {
    color: #1a4004;
    text-decoration: none;
}

.news-listing-content h3 a:hover,
.news-listing-content h3 a:focus-visible {
    color: #65b115;
}

.news-listing-content time {
    display: block;
    margin-bottom: 8px;
    color: #65b115;
    font-size: 13px;
    line-height: 18px;
}

.news-listing-content p {
    margin: 0 0 12px;
    color: #334155;
    line-height: 1.65;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    color: #dc2626;
    text-decoration: none;
    font-weight: 800;
}

.news-read-more:hover,
.news-read-more:focus-visible {
    color: #65b115;
}

.news-pagination {
    margin-bottom: 0;
}

.news-detail-page {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 24px auto 46px;
}

.news-detail-page h1 {
    margin: 0 0 22px;
    color: #1a4004;
    font-size: 32px;
    line-height: 40px;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: start;
}

.news-detail-main,
.news-detail-sidebar {
    min-width: 0;
}

.news-detail-summary {
    margin: 0 0 22px;
    color: #334155;
    font-size: 16px;
    line-height: 26px;
}

.news-content {
    color: #1f2937;
    line-height: 1.7;
}

.news-content img {
    max-width: 100%;
    height: auto;
}

.news-sidebar-posts ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-sidebar-posts li + li {
    border-top: 1px solid #e5e7eb;
}

.sidebar-menu-block .news-sidebar-post {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    color: #1f2937;
    text-decoration: none;
}

.sidebar-menu-block .news-sidebar-post:hover,
.sidebar-menu-block .news-sidebar-post:focus-visible {
    background: #f9fafb;
    color: #dc2626;
}

.news-sidebar-post-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 6px;
    background: #ecfbdb;
    color: #65b115;
    font-size: 11px;
    line-height: 14px;
    text-align: center;
}

.news-sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-sidebar-post-title {
    min-width: 0;
    font-weight: 700;
    line-height: 19px;
}

.product-category-grid {
    margin-bottom: 28px;
}

.category-product-browser {
    transition: opacity 0.2s ease;
}

.category-product-browser.is-loading {
    opacity: 0.5;
    pointer-events: none;
}

.category-filter {
    margin: 20px 0 28px;
    padding: 20px;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #ecfbdb;
}

.category-filter-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.category-filter-heading h2 {
    margin: 0;
    color: #1a4004;
    font-size: 22px;
}

.category-filter-heading a {
    color: #65b115;
    font-weight: 700;
}

.category-filter form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.category-filter-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    flex: 1;
    gap: 14px;
}

.category-filter-field {
    display: grid;
    gap: 7px;
    color: #1a4004;
    font-weight: 700;
}

.category-filter-field select {
    width: 100%;
    min-height: 42px;
    padding: 0 36px 0 12px;
    border: 1px solid #a8eb61;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
}

.category-filter button {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid #65b115;
    border-radius: 6px;
    background: #65b115;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.category-result-count {
    margin: 0 0 14px;
    color: #4b5563;
    font-weight: 700;
}

@media (max-width: 640px) {
    .category-filter form {
        display: grid;
    }

    .category-filter button {
        width: 100%;
    }
}

.category-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 34px;
}

.category-pagination a,
.category-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid #a8eb61;
    border-radius: 6px;
    background: #fff;
    color: #1a4004;
    text-decoration: none;
    font-weight: 700;
}

.category-pagination a:hover,
.category-pagination a:focus-visible {
    border-color: #65b115;
    background: #ecfbdb;
    color: #65b115;
}

.category-pagination span {
    border-color: #65b115;
    background: #65b115;
    color: #fff;
}

.category-content-section {
    margin-top: 34px;
    border-top: 1px solid #a8eb61;
    padding-top: 24px;
}

.category-content {
    position: relative;
    max-height: 300px;
    overflow: hidden;
    color: #1f2937;
    line-height: 1.7;
    transition: max-height 0.35s ease;
}

.category-content:not(.is-expanded)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72px;
    background: linear-gradient(rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}

.category-content img {
    max-width: 100%;
    height: auto;
}

.category-content-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin: 18px auto 0;
    padding: 0 18px;
    border: 1px solid #65b115;
    border-radius: 6px;
    background: #65b115;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
}

.category-content-toggle:hover,
.category-content-toggle:focus-visible {
    background: #1a4004;
    border-color: #1a4004;
}

.product-detail-page {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 24px auto 46px;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(280px, 45%) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
    margin-bottom: 34px;
}

.product-detail-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #ecfbdb;
    color: #65b115;
    font-weight: 700;
}

.product-detail-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.product-detail-summary h1 {
    margin: 0 0 14px;
    color: #1a4004;
    font-size: 32px;
    line-height: 40px;
}

.product-detail-price {
    margin: 0 0 16px;
    color: #65b115;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
}

.product-detail-short {
    margin-bottom: 22px;
    color: #334155;
    line-height: 1.7;
}

.product-attribute-table {
    width: 100%;
    margin: 0 0 20px;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 15px;
    line-height: 1.5;
}

.product-attribute-table td {
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid #dbeafe;
    vertical-align: middle;
}

.product-attribute-table tr:last-child td {
    border-bottom: 0;
}

.product-attribute-table tr:nth-child(even) td {
    background: #f8fbff;
}

.product-attribute-table td:first-child {
    width: 36%;
    border-right: 1px solid #dbeafe;
    background: #eff6ff;
    font-weight: 700;
    color: #1a4004;
}

.product-attribute-table tr:nth-child(even) td:first-child {
    background: #eaf4ff;
}

.product-attribute-table a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 4px 10px;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    background: #ffffff;
    color: #65b115;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-attribute-table a:hover,
.product-attribute-table a:focus-visible {
    border-color: #65b115;
    background: #eff6ff;
    color: #1a4004;
    text-decoration: none;
}

.product-consult-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 6px;
    background: #e22d33;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.product-consult-button:hover,
.product-consult-button:focus-visible {
    background: #c91f25;
    color: #fff;
}

.product-detail-body {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(220px, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 38px;
}

.product-detail-content-section {
    min-width: 0;
    border-top: 1px solid #a8eb61;
    padding-top: 24px;
}

.product-detail-content {
    max-height: 300px;
}

.product-category-sidebar {
    min-width: 0;
}

.product-sidebar-empty {
    margin: 0;
    padding: 14px 16px;
    color: #64748b;
}

.product-related-section {
    margin-top: 34px;
}

.page-with-sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    width: min(var(--content-width), calc(100% - 32px));
    margin: 28px auto;
}

.page-main-content {
    min-width: 0;
}

.page-main-content h1 {
    margin: 0 0 22px;
    color: #1a4004;
    font-size: 30px;
    line-height: 38px;
}

.product-index-section {
    margin-bottom: 34px;
}

.service-index-section {
    margin-bottom: 34px;
}

.product-index-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-index-category-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #a8eb61;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-index-category-card:hover {
    border-color: var(--color-sky-500);
    box-shadow: 0 8px 22px rgba(0, 119, 182, 0.14);
    transform: translateY(-2px);
}

.product-index-category-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ecfbdb;
    color: #65b115;
    text-decoration: none;
}

.product-index-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.product-index-category-card:hover .product-index-category-image img {
    transform: scale(1.03);
}

.product-index-category-card h3 {
    margin: 0;
    padding: 14px;
    font-size: 16px;
    line-height: 20px;
}

.product-index-category-card h3 a {
    color: #1a4004;
    text-decoration: none;
}

.product-index-category-card h3 a:hover {
    color: #65b115;
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-menu-block {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.sidebar-menu-block h2 {
    margin: 0;
    padding: 14px 16px;
    background: #f3f4f6;
    font-size: 18px;
}

.sidebar-menu-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-menu-block li + li {
    border-top: 1px solid #e5e7eb;
}

.sidebar-menu-block a {
    display: block;
    padding: 12px 16px;
    color: #1f2937;
    text-decoration: none;
}

.sidebar-menu-block a:hover {
    background: #f9fafb;
    color: #dc2626;
}

.listing-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.error-page {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 16px;
    background: #f8fafc;
}

.error-card {
    width: min(620px, 100%);
    padding: 42px 28px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    text-align: center;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
}

.error-code {
    margin: 0 0 8px;
    color: #ef4444;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
}

.error-card h1 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 30px;
}

.error-message {
    margin: 0 auto 24px;
    max-width: 460px;
    color: #4b5563;
    line-height: 1.7;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.error-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.error-primary {
    background: #111827;
    color: #fff;
}

.error-secondary {
    border: 1px solid #d1d5db;
    color: #111827;
    background: #fff;
}

@media (max-width: 900px) {
    .site-header-inner {
        flex-wrap: wrap;
    }

    .site-search {
        width: 100%;
        margin-left: 0;
    }

    .site-search input {
        flex: 1;
        min-width: 0;
    }

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

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

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

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

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .page-with-sidebar {
        grid-template-columns: 1fr;
    }

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

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

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

    .product-detail-hero,
    .product-detail-body {
        grid-template-columns: 1fr;
    }

    .product-detail-body {
        gap: 22px;
    }

    .home-banner-caption {
        left: 12px;
        right: 12px;
        bottom: 12px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    .site-header-inner {
        min-height: 58px;
        padding-right: 70px;
    }

    .desktop-main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        position: fixed;
        top: 12px;
        right: 12px;
        z-index: 1400;
        width: 46px;
        height: 46px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 6px;
        background: #478307;
        color: #fff;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: block;
        background: rgba(0, 0, 0, 0.28);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .mobile-menu-panel {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1300;
        display: block;
        width: 80vw;
        max-width: 360px;
        min-width: 260px;
        overflow-y: auto;
        background: #fff;
        box-shadow: 14px 0 30px rgba(0, 0, 0, 0.24);
        transform: translateX(-105%);
        transition: transform 0.25s ease;
    }

    body.mobile-menu-open .mobile-menu-backdrop {
        opacity: 1;
        visibility: visible;
    }

    body.mobile-menu-open .mobile-menu-panel {
        transform: translateX(0);
    }

    .mobile-menu,
    .mobile-submenu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .mobile-menu {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .mobile-menu li + li,
    .mobile-submenu li {
        border-top: 1px solid #ecfbdb;
    }

    .mobile-menu a {
        display: block;
        padding: 14px 18px;
        color: #1a4004;
        text-decoration: none;
        font-weight: 800;
        text-transform: uppercase;
    }

    .mobile-menu a:hover,
    .mobile-menu a:focus-visible {
        background: #ecfbdb;
        color: #478307;
    }

    .mobile-submenu {
        background: #f8fff0;
    }

    .mobile-submenu a {
        padding-left: 34px;
        font-size: 13px;
        font-weight: 700;
        text-transform: none;
    }
}

@media (max-width: 600px) {
    .site-header-inner {
        gap: 10px;
    }

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

    .home-hero,
    .home-section,
    .product-detail-page,
    .service-detail-page,
    .product-category-page {
        width: min(100% - 20px, var(--content-width));
    }

    .product-detail-hero {
        gap: 20px;
    }

    .product-detail-image {
        min-height: 260px;
    }

    .product-detail-summary h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .home-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-index-category-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-news-item {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .news-listing-page,
    .news-detail-page {
        width: min(100% - 20px, var(--content-width));
    }

    .news-detail-page h1 {
        font-size: 26px;
        line-height: 34px;
    }

    .news-listing-item {
        grid-template-columns: 125px minmax(0, 1fr);
        gap: 12px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .news-listing-content h3 {
        font-size: 16px;
        line-height: 21px;
    }

    .news-listing-content p {
        font-size: 14px;
        line-height: 21px;
    }

    .home-news-image {
        min-height: 120px;
    }

    .home-news-content {
        padding: 10px;
    }

    .home-news-content p {
        display: -webkit-box;
        overflow: hidden;

        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;

        line-clamp: 2;
    }

    .scroll-to-top {
        right: 14px;
        bottom: 14px;
        width: 40px;
        height: 40px;
        font-size: 21px;
    }
}
