* {
    box-sizing: border-box;
}

:root {
    --green-dark: #102719;
    --green: #1f5f35;
    --green-soft: #e8f2eb;
    --cream: #f7f3ea;
    --text: #142018;
    --muted: #66736a;
    --white: #ffffff;
    --border: #dfe7df;
    --shadow: 0 24px 70px rgba(16, 39, 25, 0.14);
    --wood: #b97942;
    --wood-soft: #f2e5d4;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
}

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

img {
    max-width: 100%;
}

section[id],
footer[id] {
    scroll-margin-top: 100px;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}

/* ===== HEADER ===== */

.site-header {
    background: rgba(247, 243, 234, 0.92);
    border-bottom: 1px solid rgba(16, 39, 25, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.logo-img {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-img img {
    width: 108px;
    height: auto;
    display: block;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.header-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.header-menu-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-dark);
    transition: 0.2s;
}

.header-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.header-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    display: flex;
    gap: 22px;
    font-size: 15px;
    font-weight: 800;
    color: var(--green-dark);
    flex: 0 1 auto;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: 0.2s;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-search {
    height: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    width: min(280px, 24vw);
    min-width: 210px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    overflow: hidden;
}

.header-search input {
    width: 100%;
    height: 100%;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--green-dark);
    font: inherit;
    font-size: 14px;
    line-height: 1;
    padding: 0 16px;
    appearance: none;
    -webkit-appearance: none;
}

.header-search input::placeholder {
    color: #879087;
    opacity: 1;
}

.header-search button {
    border: 0;
    border-left: 1px solid var(--border);
    background: var(--green-soft);
    color: var(--green-dark);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    min-width: 74px;
    padding: 0 16px;
    transition: background 0.2s, color 0.2s;
}

.header-search button:hover {
    background: var(--green-dark);
    color: white;
}

.header-whatsapp,
.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    color: var(--white);
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 800;
    white-space: nowrap;
}

.header-whatsapp {
    background: #25d366;
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.22);
}

.language-switcher {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex: 0 0 auto;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: white;
}

.language-switcher a {
    min-width: 39px;
    padding: 8px 9px;
    border-radius: 999px;
    color: #677168;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}

.language-switcher a:hover {
    color: var(--green-dark);
}

.language-switcher a.active {
    background: var(--green-dark);
    color: white;
}

/* ===== INFO STRIP ===== */

.info-strip {
    background: var(--green-dark);
    color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 1px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: rgba(255,255,255,0.04);
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255,255,255,0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-item strong {
    font-size: 17px;
}

.info-item p {
    margin: 5px 0 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
}

.info-phone-list {
    display: grid;
    gap: 5px;
}

.info-phone-list a {
    display: block;
    color: white;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

/* ===== HERO NEW ===== */

.hero-new {
    padding: 82px 0 64px;
    background:
        radial-gradient(circle at 76% 24%, rgba(185, 121, 66, 0.18), transparent 32%),
        radial-gradient(circle at 18% 82%, rgba(31, 95, 53, 0.1), transparent 28%),
        linear-gradient(135deg, #f7f3ea 0%, #e8f2eb 100%);
    overflow: hidden;
}

.hero-new-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.hero-new h1 {
    font-size: 64px;
    line-height: 1;
    margin: 0 0 24px;
    letter-spacing: 0;
    color: var(--green-dark);
}

.hero-new-description {
    font-size: 20px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
    max-width: 650px;
}

.hero-new-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-conversion {
    max-width: 520px;
    margin-top: 34px;
}

.hero-primary-action {
    min-height: 76px;
    border-radius: 18px;
    background: var(--green-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px 15px 22px;
    box-shadow: 0 16px 30px rgba(16, 39, 25, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(16, 39, 25, 0.24);
}

.hero-primary-action span {
    display: grid;
    gap: 4px;
}

.hero-primary-action small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 800;
}

.hero-primary-action strong {
    font-size: 18px;
    line-height: 1.2;
}

.hero-primary-action b {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 20px;
}

.hero-secondary-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 15px;
    padding: 0 4px;
}

.hero-secondary-actions a {
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 900;
}

.hero-secondary-actions a:hover {
    color: var(--green);
}

.hero-secondary-actions span {
    color: var(--wood);
}

.primary-button,
.ghost-button,
.wood-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.2s;
}

.wood-button {
    background: var(--wood-soft);
    color: #6f3f1d;
    border: 1px solid rgba(185, 121, 66, 0.24);
}

.primary-button {
    background: var(--green-dark);
    color: white;
    box-shadow: 0 16px 30px rgba(16, 39, 25, 0.22);
}

.ghost-button {
    background: white;
    color: var(--green-dark);
    border: 1px solid var(--border);
}

.primary-button:hover,
.ghost-button:hover,
.wood-button:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 42px;
    max-width: 650px;
}

.hero-stats div {
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(16, 39, 25, 0.08);
    border-radius: 22px;
    padding: 18px;
}

.hero-stats strong {
    display: block;
    font-size: 27px;
    color: var(--green-dark);
}

.hero-stats span {
    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.hero-image-main {
    height: 520px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(2deg);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 22px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    min-width: 210px;
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.floating-card strong {
    color: var(--green-dark);
}

.top-card {
    top: 38px;
    left: -28px;
}

.bottom-card {
    right: -18px;
    bottom: 40px;
}

/* ===== QUICK CATEGORIES ===== */

.quick-categories {
    padding: 26px 0;
    background: var(--green-dark);
}

.quick-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 12px;
}

.quick-categories-grid a {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    border-radius: 18px;
    min-height: 54px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    transition: 0.2s;
}

.quick-categories-grid a:hover {
    background: white;
    color: var(--green-dark);
}

/* ===== HOME CATEGORIES ===== */

.home-categories-section {
    padding: 82px 0;
    background: #fffdf8;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(16, 39, 25, 0.06);
    transition: 0.2s;
}

.home-category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 95, 53, 0.24);
    box-shadow: 0 18px 36px rgba(16, 39, 25, 0.1);
}

.home-category-thumb {
    display: block;
    height: 116px;
    margin: -24px -24px 16px;
    overflow: hidden;
    background: #f4f0e7;
}

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

.home-category-card strong {
    display: block;
    color: var(--green-dark);
    font-size: 22px;
    margin-bottom: 8px;
}

.home-category-card span {
    color: var(--muted);
    line-height: 1.5;
}

.home-products-grid {
    margin-top: 0;
}

/* ===== CATALOG ===== */

.catalog-section {
    padding: 78px 0 90px;
    background: #fffdf8;
}

.catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.catalog-heading > div {
    max-width: 760px;
}

.price-download-button {
    min-width: 270px;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid rgba(31, 95, 53, 0.18);
    border-radius: 18px;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 12px 16px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}

.price-download-button > span:first-child {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: var(--green-dark);
    color: white;
    font-size: 22px;
    font-weight: 900;
}

.price-download-button > span:last-child {
    display: grid;
    gap: 3px;
}

.price-download-button strong,
.price-download-button small {
    display: block;
}

.price-download-button strong {
    font-size: 15px;
}

.price-download-button small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.3;
}

.price-download-button:hover {
    background: white;
    box-shadow: 0 14px 28px rgba(16, 39, 25, 0.1);
    transform: translateY(-2px);
}

.category-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: stretch;
    gap: 32px;
    margin-bottom: 42px;
}

.category-hero-grid .catalog-heading {
    margin-bottom: 0;
}

.category-hero-image {
    min-height: 300px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px rgba(16, 39, 25, 0.10);
    background: white;
}

.category-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.category-landing {
    padding: 78px 0 96px;
    background:
        radial-gradient(circle at 92% 10%, rgba(31, 95, 53, 0.10), transparent 32%),
        #fffdf8;
}

.category-landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: stretch;
    gap: 34px;
    margin-bottom: 34px;
}

.category-landing-copy {
    min-height: 360px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(31, 95, 53, 0.08), rgba(190, 139, 78, 0.12)),
        white;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 18px 42px rgba(16, 39, 25, 0.08);
}

.category-landing-copy h1 {
    margin: 0 0 18px;
    color: var(--green-dark);
    font-size: 58px;
    line-height: 1.04;
}

.category-landing-copy > p:not(.eyebrow) {
    margin: 0;
    max-width: 680px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.category-landing-actions,
.category-order-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.category-purpose-panel,
.category-order-panel {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: white;
    padding: 30px;
    box-shadow: 0 14px 34px rgba(16, 39, 25, 0.07);
}

.category-purpose-panel {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 44px;
}

.category-purpose-panel h2,
.category-products-head h2,
.category-order-copy h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 34px;
    line-height: 1.12;
}

.category-purpose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-purpose-chip {
    border: 1px solid rgba(31, 95, 53, 0.16);
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    padding: 12px 16px;
    font-weight: 900;
}

.category-products-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.category-products-grid {
    margin-bottom: 48px;
}

.category-order-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.category-order-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.category-order-steps div {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fffdf8;
    padding: 20px;
}

.category-order-steps span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--wood);
    font-weight: 900;
}

.category-order-steps strong {
    display: block;
    color: var(--green-dark);
    font-size: 19px;
    margin-bottom: 8px;
}

.category-order-steps p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.category-order-actions {
    grid-column: 1 / -1;
    margin-top: 0;
}

.catalog-heading h1 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-size: 48px;
    line-height: 1.08;
}

.catalog-heading p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.catalog-controls {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 28px;
    box-shadow: 0 12px 30px rgba(16, 39, 25, 0.06);
}

.catalog-search {
    margin-bottom: 18px;
}

.catalog-search label {
    display: block;
    margin-bottom: 9px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 900;
}

.catalog-search input {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fffdf8;
    color: var(--green-dark);
    font-size: 17px;
    padding: 0 18px;
    outline: none;
}

.catalog-search input:focus {
    border-color: rgba(31, 95, 53, 0.44);
    box-shadow: 0 0 0 4px rgba(31, 95, 53, 0.08);
}

.catalog-controls-head,
.catalog-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.catalog-controls-head {
    margin: 4px 0 14px;
    color: var(--green-dark);
}

.catalog-mobile-filter-toggle {
    display: flex;
    width: 100%;
    min-height: 46px;
    border: 1.5px solid rgba(31, 95, 53, 0.2);
    border-radius: 14px;
    background: rgba(31, 95, 53, 0.06);
    color: var(--green-dark);
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font: inherit;
    font-weight: 700;
    font-size: 15px;
    padding: 0 16px;
    transition: background 0.15s, border-color 0.15s;
    margin-bottom: 2px;
}

.catalog-mobile-filter-toggle:hover {
    border-color: rgba(31, 95, 53, 0.4);
    background: rgba(31, 95, 53, 0.1);
}

.catalog-mobile-filter-toggle strong {
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--green);
    background: rgba(31, 95, 53, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
}

.catalog-filter-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.32s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
}

.catalog-filter-panel.is-open {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 16px;
}

.catalog-reset-button {
    border: 0;
    background: transparent;
    color: var(--green);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    padding: 4px 0;
}

.catalog-select-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.catalog-select-filters label,
.catalog-results-bar label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.catalog-select-filters select,
.catalog-results-bar select {
    width: 100%;
    min-height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fffdf8;
    color: var(--green-dark);
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    padding: 0 12px;
    opacity: 1;
    -webkit-text-fill-color: currentColor;
}

.catalog-select-filters select option,
.catalog-results-bar select option {
    background: #fffdf8;
    color: var(--green-dark);
}

.catalog-select-filters select.is-placeholder {
    color: rgba(16, 39, 25, 0.68);
}

.catalog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog-filter {
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fffdf8;
    color: var(--green-dark);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    padding: 11px 17px;
    transition: 0.2s;
}

.catalog-filter.active,
.catalog-filter:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: white;
}

.catalog-results-bar {
    margin-bottom: 18px;
}

.catalog-results-bar p {
    margin: 0;
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 900;
}

.catalog-results-bar label {
    grid-template-columns: auto minmax(190px, 1fr);
    align-items: center;
}

.catalog-results-actions {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    gap: 14px;
}

.catalog-view-switcher {
    display: inline-flex;
    gap: 3px;
    padding: 3px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}

.catalog-view-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    padding: 0 9px;
    transition: 0.2s;
}

.catalog-view-button span:first-child {
    color: currentColor;
    font-size: 19px;
    line-height: 1;
}

.catalog-view-button:hover {
    background: var(--green-soft);
    color: var(--green-dark);
}

.catalog-view-button.active {
    background: var(--green-dark);
    color: white;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.catalog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(16, 39, 25, 0.08);
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    content-visibility: auto;
    contain-intrinsic-size: 520px;
}

.catalog-card[hidden] {
    display: none;
}

.catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(16, 39, 25, 0.12);
}

.catalog-card-image {
    height: 220px;
    display: block;
    overflow: hidden;
}

.catalog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.catalog-card:hover .catalog-card-image img {
    transform: scale(1.04);
}

.catalog-card-body {
    padding: 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.catalog-card-category,
.product-detail-category {
    width: fit-content;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.catalog-card h2 {
    margin: 16px 0 10px;
    color: var(--green-dark);
    font-size: 22px;
    line-height: 1.18;
}

.catalog-card-size {
    display: block;
    margin-top: 10px;
    color: var(--wood);
    font-size: 17px;
    line-height: 1.35;
}

.catalog-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
    min-height: 76px;
}

.catalog-card-bottom {
    margin-top: auto;
    padding-top: 24px;
}

.catalog-card-bottom strong {
    display: block;
    color: var(--green);
    font-size: 20px;
    margin-bottom: 16px;
}

.catalog-card-bottom strong.price-on-request {
    color: #888;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.catalog-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.catalog-card-button,
.catalog-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    text-align: center;
    font-weight: 900;
    border-radius: 999px;
}

.catalog-card-button {
    background: var(--green-dark);
    color: white;
}

.catalog-whatsapp-button {
    background: #25d366;
    color: white;
}

.catalog-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.catalog-grid--compact .catalog-card-image {
    height: 170px;
}

.catalog-grid--compact .catalog-card-body {
    padding: 17px;
}

.catalog-grid--compact .catalog-card h2 {
    margin: 13px 0 8px;
    font-size: 19px;
}

.catalog-grid--compact .catalog-card-size {
    margin-top: 7px;
    font-size: 15px;
}

.catalog-grid--compact .catalog-card p {
    min-height: 64px;
    font-size: 14px;
}

.catalog-grid--compact .catalog-card-bottom {
    padding-top: 18px;
}

.catalog-grid--compact .catalog-card-bottom strong {
    font-size: 17px;
    margin-bottom: 13px;
}

.catalog-grid--compact .catalog-card-actions {
    gap: 7px;
}

.catalog-grid--compact .catalog-card-button,
.catalog-grid--compact .catalog-whatsapp-button {
    min-height: 42px;
    font-size: 13px;
}

.catalog-grid--list {
    grid-template-columns: 1fr;
    gap: 16px;
}

.catalog-grid--list .catalog-card:not([hidden]) {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
}

.catalog-grid--list .catalog-card-image {
    height: 100%;
    min-height: 260px;
}

.catalog-grid--list .catalog-card-body {
    padding: 20px 22px;
}

.catalog-grid--list .catalog-card h2 {
    margin: 12px 0 8px;
}

.catalog-grid--list .catalog-card p {
    min-height: 0;
}

.catalog-grid--list .catalog-card-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
}

.catalog-grid--list .catalog-card-bottom strong {
    margin-bottom: 0;
}

.catalog-grid--list .catalog-card-actions {
    width: min(100%, 310px);
}

.catalog-empty {
    margin: 28px 0 0;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
    color: var(--muted);
    font-size: 18px;
    text-align: center;
}

/* ===== PRODUCT DETAIL ===== */

.product-page {
    padding: 78px 0 96px;
    background:
        radial-gradient(circle at 90% 12%, rgba(31, 95, 53, 0.12), transparent 30%),
        #fffdf8;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: start;
}

.product-detail-image {
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--green-soft);
}

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

.product-detail-image--contain {
    background: white;
}

.product-detail-image--contain img {
    object-fit: contain;
    padding: 24px;
}

.product-detail-info {
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 44px rgba(16, 39, 25, 0.08);
}

.back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--muted);
    font-weight: 800;
}

.product-detail-info h1 {
    margin: 18px 0 16px;
    color: var(--green-dark);
    font-size: 42px;
    line-height: 1.08;
}

.product-title-size {
    display: block;
    margin-top: 14px;
    color: var(--wood);
    font-size: 0.58em;
    line-height: 1.3;
}

.product-detail-description {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.product-specs {
    margin: 0 0 28px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fffdf8;
}

.product-specs h2 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-size: 20px;
}

.product-specs dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.product-specs div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 18px;
    align-items: start;
}

.product-specs dt {
    color: var(--muted);
    font-weight: 800;
}

.product-specs dd {
    margin: 0;
    color: var(--green-dark);
    font-weight: 900;
}

.variant-label {
    display: block;
    margin-bottom: 10px;
    color: var(--green-dark);
    font-weight: 900;
}

.variant-select,
.quantity-control input {
    width: 100%;
    min-height: 58px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fffdf8;
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 800;
    padding: 0 18px;
}

.product-shades {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fffdf8;
}

.product-shades-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.product-shades-heading label {
    color: var(--green-dark);
    font-weight: 900;
}

.product-shades-heading strong {
    color: var(--green);
    font-size: 14px;
    text-align: right;
}

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

.product-shade-button {
    min-width: 0;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: white;
    color: var(--green-dark);
    cursor: pointer;
    display: grid;
    gap: 7px;
    padding: 7px;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-shade-button > span {
    width: 100%;
    height: 38px;
    display: block;
    border: 1px solid rgba(16, 39, 25, 0.12);
    border-radius: 9px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.08)),
        var(--shade-color);
}

.product-shade-button small {
    overflow: hidden;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.2;
    text-overflow: ellipsis;
}

.product-shade-button:hover,
.product-shade-button.active {
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(31, 95, 53, 0.12);
    transform: translateY(-1px);
}

.product-shades > p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.product-shade-reference {
    margin-top: 14px;
}

.product-shade-reference summary {
    color: var(--green);
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
}

.product-shade-reference img {
    width: 100%;
    max-height: 560px;
    display: block;
    margin-top: 12px;
    border-radius: 14px;
    object-fit: contain;
    background: #f3f0e8;
}

.quantity-label {
    display: block;
    margin: 18px 0 10px;
    color: var(--green-dark);
    font-weight: 900;
}

.quantity-control {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.quantity-control span {
    min-height: 58px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f5f1e8;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 18px;
    font-weight: 900;
}

.product-material-calculator {
    margin-top: 22px;
    padding: 20px;
    border: 1px solid rgba(185, 121, 66, 0.22);
    border-radius: 20px;
    background: var(--wood-soft);
}

.product-material-calculator h2 {
    margin: 0 0 8px;
    color: var(--green-dark);
    font-size: 20px;
}

.product-material-calculator p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.5;
}

.material-calculator-inputs,
.material-calculator-result {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.material-calculator-inputs label {
    display: grid;
    gap: 8px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 900;
}

.material-calculator-inputs input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(185, 121, 66, 0.28);
    border-radius: 14px;
    background: white;
    color: var(--green-dark);
    font: inherit;
    font-size: 17px;
    font-weight: 800;
    padding: 0 14px;
}

.material-calculator-result {
    margin-top: 16px;
}

.material-calculator-result[hidden] {
    display: none;
}

.material-calculator-result div {
    padding: 13px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.material-calculator-result span,
.material-calculator-result strong {
    display: block;
}

.material-calculator-result span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.material-calculator-result strong {
    color: var(--green-dark);
    font-size: 20px;
}

.product-price {
    margin: 28px 0 14px;
    padding: 24px;
    border-radius: 22px;
    background: var(--green-soft);
    border: 1px solid rgba(31, 95, 53, 0.12);
}

.product-price span {
    display: block;
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 6px;
}

.product-price strong {
    color: var(--green-dark);
    font-size: 42px;
    line-height: 1;
}

.product-price small {
    color: var(--muted);
    font-weight: 800;
}

.product-total {
    margin-bottom: 28px;
    padding: 20px 24px;
    border: 1px solid rgba(185, 121, 66, 0.2);
    border-radius: 20px;
    background: var(--wood-soft);
}

.product-total span,
.product-total strong,
.product-total small {
    display: block;
}

.product-total span {
    margin-bottom: 7px;
    color: var(--muted);
    font-weight: 800;
}

.product-total strong {
    color: var(--green-dark);
    font-size: 28px;
    line-height: 1.1;
}

.product-total small {
    margin-top: 7px;
    color: var(--muted);
    font-weight: 800;
}

.whatsapp-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: white;
    font-weight: 900;
    box-shadow: 0 16px 30px rgba(37, 211, 102, 0.24);
}

/* ===== SECTIONS ===== */

.featured-section,
.process-section {
    padding: 82px 0;
    background: #fffdf8;
}

.material-help-section {
    padding: 0 0 82px;
    background: #fffdf8;
}

.material-help-card {
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(31, 95, 53, 0.08), rgba(190, 139, 78, 0.12)),
        white;
    padding: 34px;
    box-shadow: 0 18px 42px rgba(16, 39, 25, 0.08);
}

.material-help-card .section-heading {
    max-width: 820px;
}

.section-heading span {
    display: block;
    margin-top: 14px;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.6;
}

.material-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.material-help-link {
    min-height: 136px;
    border: 1px solid rgba(31, 95, 53, 0.14);
    border-radius: 20px;
    background: rgba(255, 253, 248, 0.84);
    color: var(--green-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(16, 39, 25, 0.06);
    transition: 0.2s;
}

.material-help-link:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 95, 53, 0.34);
    background: white;
    box-shadow: 0 18px 34px rgba(16, 39, 25, 0.10);
}

.material-help-link strong {
    font-size: 22px;
}

.material-help-link span {
    color: var(--muted);
    line-height: 1.45;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 38px;
}

.section-heading h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -1px;
    color: var(--green-dark);
}

.section-heading p {
    margin: 0 0 10px;
    color: var(--green);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== PRODUCTS ===== */

.modern-products-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.modern-product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(16, 39, 25, 0.08);
}

.product-image {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.large-product .product-image {
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s;
}

.modern-product-card:hover img {
    transform: scale(1.05);
}

.product-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--green-dark);
    color: white;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    z-index: 2;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: var(--green-dark);
}

.product-info p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0 0 22px;
}

.product-bottom {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.product-bottom span {
    color: var(--green);
    font-size: 20px;
    font-weight: 900;
}

.product-bottom a {
    font-weight: 900;
    color: var(--green-dark);
}

/* ===== CALCULATOR PREVIEW ===== */

.calculator-preview {
    padding: 70px 0;
    background: var(--green-soft);
}

.calculator-card {
    background: var(--green-dark);
    color: white;
    border-radius: 34px;
    padding: 44px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    box-shadow: var(--shadow);
}

.calculator-card h2 {
    font-size: 40px;
    margin: 0 0 14px;
}

.calculator-card p {
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-size: 18px;
}

.calculator-card .eyebrow {
    color: #a8d8b4;
}

.fake-selector {
    background: white;
    border-radius: 26px;
    padding: 26px;
    color: var(--green-dark);
}

.fake-selector label {
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.fake-selector select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    font-size: 16px;
}

.fake-price {
    margin-top: 18px;
    font-size: 34px;
    font-weight: 900;
    color: var(--green);
}

/* ===== CUSTOM ===== */

.custom-section {
    padding: 86px 0;
    background: #fffdf8;
}

.custom-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 58px;
    align-items: center;
}

.custom-text h2,
.about-modern h2 {
    font-size: 44px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: var(--green-dark);
}

.custom-text p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 18px;
    margin-bottom: 28px;
}

.custom-carousel {
    min-width: 0;
}

.custom-carousel-stage {
    position: relative;
    aspect-ratio: 1.34 / 1;
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: #f4f0e7;
    box-shadow: 0 20px 46px rgba(16, 39, 25, 0.12);
    touch-action: pan-y;
}

.custom-carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity 0.35s ease, transform 0.45s ease, visibility 0.35s;
}

.custom-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

.custom-carousel-slide figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 160px);
    border-radius: 12px;
    background: rgba(16, 39, 25, 0.88);
    color: white;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    padding: 10px 13px;
}

.custom-carousel-controls {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.94);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    box-shadow: 0 10px 24px rgba(16, 39, 25, 0.16);
}

.custom-carousel-controls button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--green-dark);
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    font-weight: 900;
}

.custom-carousel-controls button:hover {
    background: var(--green-dark);
    color: white;
}

.custom-carousel-controls span {
    min-width: 42px;
    color: var(--muted);
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}

.custom-carousel-controls b {
    color: var(--green-dark);
}

.custom-carousel-thumbs {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.custom-carousel-thumbs button {
    min-width: 0;
    aspect-ratio: 1 / 0.72;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #f4f0e7;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    opacity: 0.62;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
}

.custom-carousel-thumbs button:hover,
.custom-carousel-thumbs button.active {
    border-color: var(--green);
    opacity: 1;
    transform: translateY(-2px);
}

.custom-carousel-thumbs img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ===== PROCESS ===== */

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

.process-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 26px;
}

.process-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    background: var(--green-dark);
    color: white;
    font-weight: 900;
    margin-bottom: 18px;
}

.process-card h3 {
    margin: 0 0 12px;
    color: var(--green-dark);
}

.process-card p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* ===== ABOUT ===== */

.about-modern {
    padding: 88px 0;
    background: #eef3ed;
    color: var(--green-dark);
    border-top: 1px solid rgba(16, 39, 25, 0.08);
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.about-modern .eyebrow {
    color: var(--green);
}

.about-modern-intro {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: start;
    margin-bottom: 42px;
}

.about-modern h2 {
    color: var(--green-dark);
}

.about-modern p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 18px;
    margin: 0;
}

.about-company-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 22px;
    align-items: stretch;
}

.about-company-story {
    min-height: 100%;
    border-radius: 22px;
    background: var(--green-dark);
    color: white;
    padding: 32px;
    display: grid;
    align-content: start;
}

.about-company-year {
    display: block;
    color: white;
    font-size: 112px;
    font-weight: 900;
    line-height: 0.85;
    margin-bottom: 22px;
}

.about-company-story > div > strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.about-company-story p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.6;
}

.about-company-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 30px;
}

.about-company-stats div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 16px;
}

.about-company-stats strong,
.about-company-stats span {
    display: block;
}

.about-company-stats strong {
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
}

.about-company-stats span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.4;
}

.about-proof-list {
    border: 1px solid rgba(16, 39, 25, 0.1);
    border-radius: 22px;
    background: #fffdf8;
    padding: 10px 28px;
}

.about-proof-list article {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.about-proof-list article:last-child {
    border-bottom: 0;
}

.about-proof-list article > span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.about-proof-list h3 {
    margin: 2px 0 6px;
    color: var(--green-dark);
    font-size: 18px;
}

.about-proof-list p {
    font-size: 15px;
    line-height: 1.55;
}

.about-visit-strip {
    margin-top: 22px;
    border: 1px solid rgba(16, 39, 25, 0.1);
    border-radius: 18px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
}

.about-visit-strip div {
    display: grid;
    gap: 5px;
}

.about-visit-strip strong {
    color: var(--green-dark);
    line-height: 1.3;
}

.about-visit-strip div span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.about-visit-strip a {
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    font-weight: 800;
    white-space: nowrap;
}

.about-visit-strip a span {
    color: var(--wood);
}

/* ===== INFORMATION PAGES ===== */

.information-page {
    padding: 76px 0 92px;
    background: #fffdf8;
}

.information-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.information-nav {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    padding: 14px;
}

.information-nav p {
    margin: 0 0 6px;
    padding: 8px 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.information-nav a {
    border-radius: 12px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    padding: 12px 10px;
}

.information-nav a:hover,
.information-nav a.active {
    background: var(--green-soft);
    color: var(--green);
}

.information-content {
    min-width: 0;
    max-width: 820px;
}

.information-header {
    margin-bottom: 30px;
}

.information-header h1 {
    margin: 0 0 16px;
    color: var(--green-dark);
    font-size: 48px;
    line-height: 1.08;
}

.information-header > p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.information-highlight,
.information-section,
.information-action {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: white;
    padding: 25px;
}

.information-highlight {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    border-left: 5px solid var(--green);
    background: var(--green-soft);
}

.information-highlight strong {
    color: var(--green-dark);
    font-size: 18px;
    line-height: 1.45;
}

.information-highlight span {
    color: var(--muted);
    line-height: 1.55;
}

.information-section {
    margin-top: 14px;
}

.information-section h2 {
    margin: 0 0 15px;
    color: var(--green-dark);
    font-size: 24px;
    line-height: 1.2;
}

.information-section p,
.information-section li,
.information-section address {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.information-section p {
    margin: 0 0 12px;
}

.information-section p:last-child {
    margin-bottom: 0;
}

.information-section address {
    margin: 0 0 14px;
    color: var(--green-dark);
    font-style: normal;
    font-weight: 800;
}

.information-section address a {
    color: var(--green);
}

.information-section ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding-left: 20px;
}

.information-warning {
    border-left: 5px solid var(--wood);
    background: #fffaf3;
}

.information-action {
    margin-top: 20px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.information-action div {
    display: grid;
    gap: 5px;
}

.information-action strong {
    color: white;
    font-size: 18px;
}

.information-action span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
}

.information-action a {
    min-height: 44px;
    border-radius: 12px;
    background: white;
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 900;
    padding: 0 17px;
}

/* ===== FOOTER ===== */

.footer {
    background: #fffdf8;
    padding: 70px 0;
}

.footer h2 {
    text-align: center;
    color: var(--green-dark);
    font-size: 38px;
    margin: 0 0 34px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.contact-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(16, 39, 25, 0.06);
}

.contact-card h3 {
    margin-top: 0;
    color: var(--green-dark);
}

.contact-card p {
    margin: 7px 0;
    color: var(--muted);
    font-size: 14px;
}

.contact-card p a {
    color: inherit;
    display: inline-block;
    font-weight: 800;
    transition: color 0.2s;
}

.contact-card p a:hover {
    color: var(--green);
}

.footer-information-links {
    margin-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-top: 22px;
}

.footer-information-links strong {
    color: var(--green-dark);
    font-size: 14px;
}

.footer-information-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.footer-information-links a:hover {
    color: var(--green);
}

/* ===== FLOAT BUTTONS ===== */

.social {
    position: fixed;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 30;
    box-shadow: 0 12px 30px rgba(16, 39, 25, 0.22);
    overflow: hidden;
    padding: 0;
    background: transparent;
}

.social img {
    width: 54px;
    height: 54px;
    display: block;
}

.whatsapp {
    bottom: 232px;
}

.instagram {
    bottom: 166px;
}

.facebook {
    bottom: 100px;
    background: #1877f2;
}

.chat-button {
    position: fixed;
    right: 20px;
    bottom: 26px;
    background: var(--green-dark);
    color: white;
    padding: 17px 28px;
    border-radius: 999px;
    font-weight: 900;
    z-index: 30;
    box-shadow: 0 12px 30px rgba(16, 39, 25, 0.22);
}

.mobile-app-nav {
    display: none;
}

/* ===== ADMIN ===== */

.admin-page {
    background: #fffdf8;
    padding: 64px 0 86px;
}

.admin-login-card {
    max-width: 460px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 36px rgba(16, 39, 25, 0.08);
}

.admin-login-card h1,
.admin-header h1 {
    margin: 0 0 10px;
    color: var(--green-dark);
    font-size: 38px;
    line-height: 1.1;
}

.admin-login-card p,
.admin-header p {
    margin: 0;
    color: var(--muted);
}

.admin-alert {
    margin: 20px 0;
    border-radius: 14px;
    background: #fff0ed;
    color: #8a2c1f;
    padding: 13px 15px;
    font-weight: 800;
}

.admin-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.admin-table-wrap {
    overflow-x: auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(16, 39, 25, 0.07);
}

.admin-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--green-dark);
    background: #f5f1e8;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--green-dark);
}

.admin-table td strong,
.admin-table td span {
    display: block;
}

.admin-table td span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.admin-product-thumb {
    width: 76px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    background: #f4f0e7;
}

.admin-form,
.admin-edit-form {
    display: grid;
    gap: 20px;
}

.admin-form label,
.admin-edit-form label {
    display: grid;
    gap: 8px;
    color: var(--green-dark);
    font-weight: 900;
}

.admin-form input,
.admin-edit-form input,
.admin-edit-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    color: var(--green-dark);
    font: inherit;
    font-weight: 700;
    padding: 14px 16px;
    outline: none;
}

.admin-form input:focus,
.admin-edit-form input:focus,
.admin-edit-form textarea:focus {
    border-color: rgba(31, 95, 53, 0.44);
    box-shadow: 0 0 0 4px rgba(31, 95, 53, 0.08);
}

.admin-edit-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(16, 39, 25, 0.08);
}

.admin-image-editor {
    display: grid;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 22px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fffdf8;
}

.admin-image-preview {
    min-height: 230px;
    border-radius: 16px;
    overflow: hidden;
    background: #f0eee7;
}

.admin-image-preview img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    display: block;
    object-fit: cover;
}

.admin-image-fields {
    display: grid;
    align-content: start;
    gap: 16px;
    min-width: 0;
}

.admin-image-fields strong {
    display: block;
    color: var(--green-dark);
    font-size: 22px;
    margin-bottom: 6px;
}

.admin-image-fields p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.admin-image-fields .admin-upload-note {
    border-left: 3px solid var(--wood);
    color: #76502f;
    font-size: 13px;
    padding-left: 11px;
}

.admin-edit-form .admin-file-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 52px;
    border-radius: 14px;
    background: var(--green-dark);
    color: white;
    cursor: pointer;
    padding: 10px 14px 10px 18px;
}

.admin-edit-form .admin-file-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.admin-file-field span {
    max-width: 65%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
    padding: 8px 10px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-edit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.admin-wide-field {
    grid-column: 1 / -1;
}

.admin-variants {
    display: grid;
    gap: 14px;
    padding-top: 8px;
}

.admin-variants h2 {
    margin: 0;
    color: var(--green-dark);
    font-size: 24px;
}

.admin-variant-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fffdf8;
}

.admin-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-button,
.admin-secondary-button,
.admin-small-button {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
}

.admin-button {
    min-height: 52px;
    padding: 0 24px;
    background: var(--green-dark);
    color: white;
}

.admin-secondary-button {
    min-height: 46px;
    padding: 0 20px;
    background: #f5f1e8;
    color: var(--green-dark);
    border: 1px solid var(--border);
}

.admin-small-button {
    min-height: 38px;
    padding: 0 15px;
    background: var(--green-dark);
    color: white;
    font-size: 14px;
}

.admin-empty {
    color: var(--muted);
    font-size: 18px;
}

/* ===== OLD CLASSES SAFETY ===== */

.hero,
.popular,
.wood-products,
.order-section,
.about {
    display: none;
}

/* ===== MOBILE ===== */

@media (max-width: 1100px) {
    html {
        scroll-padding-bottom: 96px;
    }

    body {
        padding-bottom: calc(86px + env(safe-area-inset-bottom));
        overflow-x: hidden;
    }

    .site-header {
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 10px 30px rgba(16, 39, 25, 0.08);
    }

    .header-inner {
        min-height: 62px;
        padding: 8px 0;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 14px;
    }

    .header-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .header-menu {
        width: 100%;
        flex: 0 0 100%;
        display: grid;
        gap: 14px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
    }

    .header-menu.is-open {
        max-height: 590px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        margin-top: 4px;
        border: 1px solid var(--border);
        border-radius: 24px;
        background: white;
        padding: 14px;
        box-shadow: 0 18px 42px rgba(16, 39, 25, 0.12);
    }

    .header-search {
        height: 52px;
        width: 100%;
        min-width: 0;
        border-radius: 16px;
        box-shadow: inset 0 0 0 1px rgba(16, 39, 25, 0.03);
    }

    .header-search input,
    .header-search button {
        font-size: 16px;
    }

    .header-search button {
        min-width: 88px;
        padding: 0 18px;
    }

    .main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        gap: 10px 14px;
        font-size: 15px;
    }

    .main-nav a {
        min-width: 0;
        border: 1px solid var(--border);
        border-radius: 16px;
        background: #fffdf8;
        padding: 13px 14px;
        overflow-wrap: anywhere;
    }

    .main-nav a::after {
        display: none;
    }

    .logo-img {
        align-self: center;
    }

    .header-whatsapp {
        align-self: stretch;
        justify-content: center;
        text-align: center;
        min-height: 50px;
    }

    .language-switcher {
        width: 100%;
        border-radius: 16px;
        background: #f5f7f2;
    }

    .language-switcher a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 13px;
        font-size: 14px;
    }

    .info-strip {
        background: #fffdf8;
        padding: 10px 0;
    }

    .info-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(238px, 78vw);
        grid-template-columns: none;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .info-grid::-webkit-scrollbar {
        display: none;
    }

    .info-item {
        scroll-snap-align: start;
        border-radius: 20px;
        background: var(--green-dark);
        padding: 14px;
        gap: 12px;
    }

    .info-item > div:last-child {
        min-width: 0;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: 19px;
    }

    .info-item strong,
    .info-phone-list a {
        font-size: 15px;
    }

    .info-item p {
        font-size: 13px;
    }

    .mobile-app-nav {
        position: fixed;
        left: 50%;
        bottom: calc(10px + env(safe-area-inset-bottom));
        z-index: 60;
        width: min(460px, calc(100% - 20px));
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 5px;
        border: 1px solid rgba(16, 39, 25, 0.1);
        border-radius: 26px;
        background: rgba(255, 253, 248, 0.96);
        box-shadow: 0 18px 46px rgba(16, 39, 25, 0.22);
        backdrop-filter: blur(18px);
        padding: 8px;
        transform: translateX(-50%);
    }

    .mobile-app-nav a {
        min-width: 0;
        min-height: 58px;
        border-radius: 19px;
        color: var(--green-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
        font-weight: 900;
    }

    .mobile-app-nav a span {
        width: 26px;
        height: 26px;
        border-radius: 10px;
        background: var(--green-soft);
        color: var(--green);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        line-height: 1;
    }

    .mobile-app-nav a:nth-child(4) {
        background: #25d366;
        color: white;
    }

    .mobile-app-nav a:nth-child(4) span {
        background: rgba(255, 255, 255, 0.22);
        color: white;
    }

    .mobile-app-nav a.active {
        background: var(--green-dark);
        color: white;
    }

    .mobile-app-nav a.active span {
        background: rgba(255, 255, 255, 0.16);
        color: white;
    }

    .page-catalog .info-strip,
    .page-product .info-strip,
    .page-category-page .info-strip,
    .page-information-page .info-strip,
    .page-admin .info-strip,
    .page-admin-login .info-strip,
    .page-admin-edit-product .info-strip {
        display: none;
    }

    .page-admin .mobile-app-nav,
    .page-admin-login .mobile-app-nav,
    .page-admin-edit-product .mobile-app-nav {
        display: none;
    }

    .hero-new-grid,
    .home-categories-grid,
    .material-help-grid,
    .catalog-grid,
    .category-landing-hero,
    .category-hero-grid,
    .category-purpose-panel,
    .category-order-panel,
    .category-order-steps,
    .admin-edit-grid,
    .product-detail-grid,
    .modern-products-grid,
    .calculator-card,
    .custom-grid,
    .process-grid,
    .about-modern-intro,
    .about-company-grid,
    .about-stats-grid,
    .about-modern-cards,
    .about-warehouse-note,
    .about-modern-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .information-page {
        padding: 52px 0 70px;
    }

    .information-layout {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .information-nav {
        position: static;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        grid-template-columns: none;
        overflow-x: auto;
        padding: 8px;
        scrollbar-width: none;
    }

    .information-nav::-webkit-scrollbar {
        display: none;
    }

    .information-nav p {
        display: none;
    }

    .information-nav a {
        white-space: nowrap;
    }

    .information-content {
        max-width: none;
    }

    .information-action {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-information-links {
        flex-wrap: wrap;
    }

    .hero-new-grid,
    .hero-new-grid > *,
    .custom-grid,
    .custom-grid > *,
    .product-detail-grid,
    .product-detail-grid > *,
    .category-landing-hero,
    .category-landing-hero > *,
    .category-hero-grid,
    .category-hero-grid > * {
        min-width: 0;
        max-width: 100%;
    }

    .quick-categories-grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(132px, 42vw);
        grid-template-columns: none;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .quick-categories-grid::-webkit-scrollbar {
        display: none;
    }

    .quick-categories-grid a {
        min-height: 48px;
        border-radius: 999px;
        scroll-snap-align: start;
    }

    .catalog-section,
    .category-landing,
    .product-page,
    .home-categories-section,
    .material-help-section {
        padding: 52px 0 70px;
    }

    .category-landing-copy {
        min-height: auto;
        padding: 28px;
        border-radius: 24px;
    }

    .category-landing-copy h1 {
        font-size: 38px;
        overflow-wrap: anywhere;
    }

    .category-purpose-panel,
    .category-order-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .category-products-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .material-help-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-new {
        padding: 38px 0 30px;
    }

    .hero-new-grid {
        gap: 26px;
    }

    .hero-new-description {
        font-size: 17px;
        line-height: 1.55;
    }

    .hero-new h1,
    .hero-new-description {
        overflow-wrap: anywhere;
    }

    .hero-new-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .primary-button,
    .ghost-button,
    .wood-button {
        width: 100%;
        text-align: center;
    }

    .primary-button,
    .ghost-button,
    .wood-button,
    .catalog-card-button,
    .catalog-whatsapp-button {
        min-height: 50px;
    }

    .catalog-heading h1,
    .product-detail-info h1 {
        font-size: 32px;
        overflow-wrap: anywhere;
    }

    .catalog-heading {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .price-download-button {
        width: 100%;
        min-width: 0;
    }

    .category-hero-image {
        min-height: 240px;
        border-radius: 24px;
    }

    .catalog-controls {
        padding: 18px;
        border-radius: 20px;
    }

    .catalog-mobile-filter-toggle {
        width: 100%;
        min-height: 52px;
        border: 1px solid rgba(31, 95, 53, 0.16);
        border-radius: 16px;
        background: var(--green-dark);
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font: inherit;
        font-weight: 900;
        padding: 0 16px;
    }

    .catalog-mobile-filter-toggle strong {
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        padding: 7px 11px;
        font-size: 12px;
    }

    .catalog-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .catalog-filters::-webkit-scrollbar {
        display: none;
    }

    .catalog-filter {
        flex: 0 0 auto;
        min-width: auto;
        scroll-snap-align: start;
    }

    .catalog-results-actions {
        align-items: stretch;
        flex-wrap: wrap;
    }

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

    .catalog-grid--list .catalog-card:not([hidden]) {
        grid-template-columns: 220px minmax(0, 1fr);
    }

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

    .admin-page {
        padding: 48px 0 68px;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login-card,
    .admin-edit-form {
        padding: 22px;
        border-radius: 22px;
    }

    .admin-image-editor {
        grid-template-columns: 1fr;
    }

    .admin-image-preview,
    .admin-image-preview img {
        min-height: 260px;
    }

    .admin-variant-row {
        grid-template-columns: 1fr;
    }

    .catalog-card p {
        min-height: auto;
    }

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

    .product-detail-image {
        height: 340px;
        border-radius: 24px;
    }

    .product-detail-info {
        padding: 24px;
        border-radius: 24px;
    }

    .whatsapp-product-button {
        position: static;
        border-radius: 18px;
        box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
    }

    .product-price strong {
        font-size: 34px;
    }

    .material-calculator-inputs,
    .material-calculator-result {
        grid-template-columns: 1fr;
    }

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

    .product-specs div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .hero-new h1 {
        font-size: 40px;
    }

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

    .hero-image-main {
        height: 360px;
        transform: none;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
    }

    .hero-stats div {
        padding: 14px;
        border-radius: 18px;
    }

    .hero-stats div:last-child {
        grid-column: 1 / -1;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    .hero-conversion {
        max-width: none;
        margin-top: 24px;
    }

    .hero-primary-action {
        width: 100%;
        min-height: 72px;
    }

    .hero-secondary-actions {
        justify-content: space-between;
        gap: 14px;
    }

    .about-company-grid {
        gap: 14px;
    }

    .about-company-story {
        padding: 26px;
    }

    .about-company-year {
        font-size: 90px;
    }

    .about-proof-list {
        padding: 6px 20px;
    }

    .about-visit-strip {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .custom-carousel-stage {
        aspect-ratio: 1.15 / 1;
        border-radius: 20px;
    }

    .custom-carousel-thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 76px;
        grid-template-columns: none;
        overflow-x: auto;
        padding: 2px 1px 5px;
        scrollbar-width: none;
    }

    .custom-carousel-thumbs::-webkit-scrollbar {
        display: none;
    }

    .about-modern-intro {
        gap: 20px;
    }

    .about-stat-card,
    .about-value-card {
        min-height: auto;
    }

    .about-warehouse-note span {
        white-space: normal;
    }

    .social {
        display: none;
    }

    .chat-button {
        display: none;
    }

    .logo-img img {
        width: 96px;
    }
}

@media (max-width: 520px) {
    .container {
        width: calc(100% - 28px);
        max-width: none;
        margin-left: 14px;
        margin-right: 14px;
    }

    .logo-img img {
        width: 78px;
    }

    .header-menu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .main-nav {
        gap: 8px;
        font-size: 14px;
    }

    .main-nav a {
        border-radius: 14px;
        padding: 12px;
    }

    .info-grid {
        grid-auto-columns: 100%;
    }

    .hero-new h1 {
        font-size: 34px;
        line-height: 1.06;
        margin-bottom: 16px;
    }

    .hero-new-description {
        font-size: 16px;
    }

    .hero-primary-action {
        min-height: 68px;
        border-radius: 16px;
        padding: 13px 14px 13px 17px;
    }

    .hero-primary-action strong {
        font-size: 16px;
    }

    .hero-primary-action b {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .hero-secondary-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        margin-top: 10px;
        padding: 0;
    }

    .hero-secondary-actions a {
        justify-content: space-between;
        min-height: 42px;
        border-bottom: 1px solid rgba(16, 39, 25, 0.1);
    }

    .hero-image-main {
        height: 238px;
        border-radius: 24px;
    }

    .custom-carousel-stage {
        aspect-ratio: 1 / 0.94;
        border-radius: 18px;
    }

    .custom-carousel-slide figcaption {
        left: 10px;
        right: 10px;
        bottom: 62px;
        max-width: none;
        border-radius: 10px;
        font-size: 12px;
        padding: 8px 10px;
    }

    .custom-carousel-controls {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: space-between;
    }

    .custom-carousel-thumbs {
        grid-auto-columns: 68px;
    }

    .floating-card {
        display: none;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .section-heading h2,
    .custom-text h2,
    .about-modern h2 {
        font-size: 30px;
        letter-spacing: 0;
    }

    .home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .home-category-card {
        min-width: 0;
        padding: 12px;
        border-radius: 18px;
    }

    .home-category-thumb {
        height: 92px;
        margin: -12px -12px 11px;
    }

    .home-category-card strong {
        font-size: 17px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }

    .home-category-card > span:last-child {
        display: none;
    }

    .home-category-card,
    .material-help-link,
    .process-card,
    .contact-card {
        border-radius: 20px;
    }

    .info-item {
        min-width: 0;
    }

    .info-item strong,
    .info-item p {
        overflow-wrap: anywhere;
    }

    .catalog-heading h1,
    .product-detail-info h1 {
        font-size: 30px;
        line-height: 1.16;
    }

    .page-catalog .catalog-section,
    .page-product .product-page,
    .page-category-page .category-landing {
        padding-top: 30px;
    }

    .catalog-heading {
        margin-bottom: 24px;
    }

    .catalog-heading p:last-child {
        font-size: 16px;
        line-height: 1.55;
    }

    .catalog-controls {
        margin-bottom: 20px;
    }

    .catalog-controls-head,
    .catalog-results-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .catalog-results-bar label {
        grid-template-columns: 1fr;
    }

    .catalog-results-actions {
        flex-direction: column;
    }

    .catalog-view-switcher {
        width: 100%;
    }

    .catalog-view-button {
        flex: 1;
        justify-content: center;
        padding: 0 6px;
    }

    .catalog-select-filters {
        grid-template-columns: 1fr;
    }

    /* Compact: 2 columns marketplace style (like Kaspi) */
    .catalog-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .catalog-grid--compact .catalog-card {
        border-radius: 14px;
    }

    .catalog-grid--compact .catalog-card-image {
        height: 156px;
    }

    .catalog-grid--compact .catalog-card-body {
        padding: 10px;
    }

    .catalog-grid--compact .catalog-card-category {
        display: none;
    }

    .catalog-grid--compact .catalog-card h2 {
        margin: 0 0 4px;
        font-size: 13px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    .catalog-grid--compact .catalog-card-size {
        font-size: 11px;
        margin-top: 2px;
    }

    .catalog-grid--compact .catalog-card p {
        display: none;
    }

    .catalog-grid--compact .catalog-card-bottom {
        padding-top: 8px;
    }

    .catalog-grid--compact .catalog-card-bottom strong {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .catalog-grid--compact .catalog-card-actions {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .catalog-grid--compact .catalog-card-button {
        display: none;
    }

    .catalog-grid--compact .catalog-whatsapp-button {
        min-height: 34px;
        font-size: 12px;
        border-radius: 10px;
    }

    /* List: no photo, clean text rows */
    .catalog-grid--list {
        gap: 8px;
    }

    .catalog-grid--list .catalog-card:not([hidden]) {
        display: flex;
        flex-direction: row;
        align-items: center;
        border-radius: 14px;
        gap: 0;
    }

    .catalog-grid--list .catalog-card-image {
        display: none;
    }

    .catalog-grid--list .catalog-card-body {
        padding: 12px 14px;
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .catalog-grid--list .catalog-card-category {
        display: none;
    }

    .catalog-grid--list .catalog-card h2 {
        margin: 0 0 2px;
        font-size: 14px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    .catalog-grid--list .catalog-card-size {
        font-size: 12px;
        margin-top: 2px;
    }

    .catalog-grid--list .catalog-card p {
        display: none;
    }

    .catalog-grid--list .catalog-card-bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding-top: 8px;
        gap: 8px;
    }

    .catalog-grid--list .catalog-card-bottom strong {
        font-size: 16px;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .catalog-grid--list .catalog-card-actions {
        grid-template-columns: 1fr;
        gap: 0;
        flex-shrink: 0;
    }

    .catalog-grid--list .catalog-card-button {
        display: none;
    }

    .catalog-grid--list .catalog-whatsapp-button {
        min-height: 34px;
        font-size: 12px;
        padding: 0 12px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .product-detail-image {
        height: 280px;
        border-radius: 22px;
    }

    .product-detail-info {
        padding: 18px;
        border-radius: 22px;
    }

    .product-detail-image--contain img {
        padding: 14px;
    }

    .product-shades {
        padding: 14px;
    }

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

    .contacts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .contact-card {
        min-width: 0;
        padding: 16px 10px;
    }

    .contact-card p {
        overflow-wrap: anywhere;
    }

    .information-header h1 {
        font-size: 34px;
    }

    .information-header > p:last-child {
        font-size: 16px;
    }

    .information-highlight,
    .information-section,
    .information-action {
        padding: 19px;
        border-radius: 16px;
    }

    .information-section h2 {
        font-size: 21px;
    }

    .information-section p,
    .information-section li,
    .information-section address {
        font-size: 15px;
    }

    .information-action a {
        width: 100%;
    }

    .footer-information-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .about-stat-card {
        padding: 18px;
        border-radius: 20px;
    }

    .about-stat-card strong {
        font-size: 30px;
    }

    .about-value-card {
        padding: 20px;
        border-radius: 20px;
    }

    .about-value-card h3 {
        font-size: 20px;
    }

    .about-value-card p {
        font-size: 15px;
    }

    .about-modern {
        padding: 58px 0;
    }

    .about-modern-intro {
        margin-bottom: 26px;
    }

    .about-modern p {
        font-size: 16px;
    }

    .about-company-story {
        padding: 22px;
        border-radius: 20px;
    }

    .about-company-year {
        font-size: 78px;
        margin-bottom: 18px;
    }

    .about-company-story > div > strong {
        font-size: 21px;
    }

    .about-company-stats {
        grid-template-columns: 1fr;
        margin-top: 22px;
    }

    .about-proof-list {
        padding: 4px 16px;
        border-radius: 20px;
    }

    .about-proof-list article {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 12px;
        padding: 17px 0;
    }

    .about-proof-list h3 {
        font-size: 17px;
    }

    .about-proof-list p {
        font-size: 14px;
    }

    .about-visit-strip {
        padding: 17px;
        border-radius: 18px;
    }
}

/* =============================================
   DESIGN UPGRADE — FONTS, ANIMATIONS, REVEALS
   ============================================= */

/* --- Fonts --- */
body {
    font-family: 'Inter', Arial, sans-serif;
}

h1, h2, h3 {
    font-family: 'Oswald', Arial, sans-serif;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-new h1 {
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* --- Hero background: richer warm gradient + subtle wood grain --- */
.hero-new {
    background:
        repeating-linear-gradient(
            72deg,
            transparent,
            transparent 38px,
            rgba(185, 121, 66, 0.025) 38px,
            rgba(185, 121, 66, 0.025) 40px
        ),
        radial-gradient(ellipse 60% 55% at 75% 15%, rgba(185, 121, 66, 0.28) 0%, transparent 100%),
        radial-gradient(ellipse 38% 38% at 10% 92%, rgba(31, 95, 53, 0.16) 0%, transparent 100%),
        linear-gradient(155deg, #fef9ee 0%, #f5f0e3 58%, #ecf3ee 100%);
}

/* Floating cards: warm top accent */
.floating-card {
    border-top: 3px solid var(--wood);
}

/* --- Hero entrance animations --- */
@media (prefers-reduced-motion: no-preference) {
    @keyframes hero-fade-up {
        from { opacity: 0; transform: translateY(22px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes hero-float {
        0%, 100% { transform: translateY(0); }
        50%       { transform: translateY(-11px); }
    }

    .hero-new .eyebrow          { animation: hero-fade-up 0.55s ease both; animation-delay: 0.05s; }
    .hero-new h1                { animation: hero-fade-up 0.6s  ease both; animation-delay: 0.15s; }
    .hero-new .hero-new-description { animation: hero-fade-up 0.6s ease both; animation-delay: 0.25s; }
    .hero-conversion            { animation: hero-fade-up 0.6s  ease both; animation-delay: 0.35s; }
    .hero-stats                 { animation: hero-fade-up 0.6s  ease both; animation-delay: 0.45s; }
    .hero-visual                { animation: hero-fade-up 0.7s  ease both; animation-delay: 0.1s; }

    .top-card    { animation: hero-float 5.5s ease-in-out infinite; }
    .bottom-card { animation: hero-float 5.5s ease-in-out infinite; animation-delay: -2.75s; }
}

/* --- Scroll reveal --- */
.reveal,
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.reveal.is-visible,
.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.31s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.40s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.49s; }

/* --- Enhanced hover on category cards --- */
.home-category-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.home-category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(16, 39, 25, 0.13);
    border-color: rgba(185, 121, 66, 0.28);
}

.home-category-thumb img {
    transition: transform 0.45s ease;
}

.home-category-card:hover .home-category-thumb img {
    transform: scale(1.06);
}

/* --- Process cards — warmer look --- */
.process-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(16, 39, 25, 0.1);
}

/* --- Section headings: eyebrow line --- */
.section-heading p {
    font-family: 'Inter', Arial, sans-serif;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.6;
}



/* ===== FAQ Section ===== */
.faq-section {
    padding: 60px 0;
    background: #f8faf8;
}

.faq-section .section-heading {
    max-width: 780px;
    margin: 0 auto 38px;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    color: var(--green-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 24px 20px;
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.faq-item p a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 600px) {
    .faq-item summary {
        font-size: 14px;
        padding: 16px 18px;
    }
    .faq-item p {
        padding: 14px 18px 16px;
    }
}

.catalog-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.catalog-category-link {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1.5px solid rgba(31, 95, 53, 0.25);
    border-radius: 20px;
    background: rgba(31, 95, 53, 0.05);
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}

.catalog-category-link:hover {
    background: rgba(31, 95, 53, 0.12);
    border-color: var(--green);
}

/* ── Сетка категорий каталога ── */
.catalog-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 12px;
    margin-bottom: 36px;
}

.cat-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(31, 95, 53, 0.14);
    text-decoration: none;
    color: var(--green-dark);
    background: #fff;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 60, 30, 0.13);
    border-color: rgba(31, 95, 53, 0.3);
}

.cat-card-img {
    height: 90px;
    background-size: cover;
    background-position: center;
    background-color: #f2ede4;
}

.cat-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    gap: 4px;
}

.cat-card-name {
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--green-dark);
}

.cat-card-arrow {
    font-size: 14px;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.15s;
}

.cat-card:hover .cat-card-arrow {
    transform: translateX(3px);
}

@media (max-width: 480px) {
    .catalog-category-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 8px;
    }
    .cat-card-img { height: 72px; }
}


/* ============================================================
   ДИЗАЙН v2 — визуальные улучшения
   ============================================================ */

:root {
    --grad-green: linear-gradient(135deg, #2a7a47 0%, #102719 100%);
    --grad-warm:  linear-gradient(135deg, #d4894c 0%, #9a5e2a 100%);
    --grad-wa:    linear-gradient(135deg, #2ecc71 0%, #1da851 100%);
    --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Карточки каталога ── */
.catalog-card {
    border: 1px solid rgba(223,231,223,0.7);
    box-shadow: 0 2px 8px rgba(16,39,25,0.05),
                0 8px 24px rgba(16,39,25,0.07);
    transition: transform 0.35s var(--ease-out),
                box-shadow 0.35s var(--ease-out),
                border-color 0.35s;
}

.catalog-card:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 4px 16px rgba(16,39,25,0.06),
                0 24px 52px rgba(16,39,25,0.14);
    border-color: rgba(31,95,53,0.2);
}

/* Тонкий градиент внизу фото */
.catalog-card-image {
    position: relative;
}
.catalog-card-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 56px;
    background: linear-gradient(to top, rgba(16,39,25,0.18), transparent);
    pointer-events: none;
}

/* Плавнее зум фото */
.catalog-card-image img {
    transition: transform 0.5s var(--ease-out);
}
.catalog-card:hover .catalog-card-image img {
    transform: scale(1.07);
}

/* Бейдж категории */
.catalog-card-category {
    background: linear-gradient(135deg,#e8f4ed,#d0e9d8);
    border: 1px solid rgba(31,95,53,0.14);
    letter-spacing: 0.07em;
    box-shadow: 0 1px 4px rgba(31,95,53,0.08);
}

/* Цена — градиентный текст */
.catalog-card-bottom strong:not(.price-on-request) {
    font-size: 22px;
    background: var(--grad-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Кнопка «Подробнее» */
.catalog-card-button {
    background: var(--grad-green);
    box-shadow: 0 2px 10px rgba(16,39,25,0.22);
    transition: transform 0.22s var(--ease-out),
                box-shadow 0.22s var(--ease-out);
}
.catalog-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16,39,25,0.32);
}

/* Кнопка WhatsApp */
.catalog-whatsapp-button {
    background: var(--grad-wa);
    box-shadow: 0 2px 10px rgba(37,211,102,0.22);
    transition: transform 0.22s var(--ease-out),
                box-shadow 0.22s var(--ease-out);
}
.catalog-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.34);
}

/* ── Фильтры-чипсы ── */
.catalog-filter {
    box-shadow: 0 1px 4px rgba(16,39,25,0.06);
    transition: all 0.22s var(--ease-in-out);
}
.catalog-filter.active,
.catalog-filter:hover {
    background: var(--grad-green);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(16,39,25,0.22);
    transform: translateY(-1px);
}

/* ── Главные кнопки сайта ── */
.primary-button,
.hero-primary-action {
    background: var(--grad-green) !important;
    box-shadow: 0 4px 18px rgba(16,39,25,0.28);
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
}
.primary-button:hover,
.hero-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16,39,25,0.38);
}

.wood-button {
    background: var(--grad-warm) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(185,121,66,0.28);
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
}
.wood-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(185,121,66,0.38);
}

/* ── Статистика героя ── */
.hero-stats div {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 4px 20px rgba(16,39,25,0.1);
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
}
.hero-stats div:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(16,39,25,0.14);
}
.hero-stats strong {
    background: var(--grad-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 30px;
}

/* ── Инфо-бар (шапка) ── */
.info-item {
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 10px 18px;
    transition: background 0.2s;
}
.info-item:hover {
    background: rgba(255,255,255,0.11);
}

/* ── Страница продукта — цена ── */
.product-price strong {
    background: var(--grad-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Кнопка WhatsApp в шапке ── */
.header-whatsapp {
    transition: transform 0.25s var(--ease-out),
                box-shadow 0.25s var(--ease-out);
}
.header-whatsapp:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ── Скролл-ревил с лучшим ease ── */
.reveal-stagger > * {
    transition: opacity 0.55s var(--ease-out),
                transform 0.55s var(--ease-out);
}

/* ── Категории на главной / в каталоге (карточки категорий) ── */
.catalog-category-link {
    transition: all 0.25s var(--ease-out);
    box-shadow: 0 1px 4px rgba(16,39,25,0.06);
}
.catalog-category-link:hover {
    background: var(--grad-green);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(16,39,25,0.2);
}

/* ── Поле поиска — фокус ── */
.catalog-search-input:focus,
input[type="search"]:focus,
input[type="text"]:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(31,95,53,0.12);
    outline: none;
}

