:root {
    --ink: #17211d;
    --text: #39443f;
    --muted: #66736e;
    --line: #dde5df;
    --paper: #fbfbf8;
    --soft: #edf5ef;
    --mint: #78a88f;
    --leaf: #376b55;
    --coral: #d4876a;
    --gold: #b9975b;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(25, 42, 35, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

.sticky-site-head {
    position: relative;
    z-index: 60;
    background: var(--paper);
    box-shadow: 0 8px 24px rgba(26, 43, 36, 0.06);
}

.site-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px clamp(18px, 4vw, 64px);
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.topbar-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--leaf);
    font-size: 0.94rem;
    font-weight: 700;
}

.topbar-contact a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}

.topbar-contact svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.topbar-contact a:nth-child(2) svg {
    stroke-width: 1.7;
}

.topbar-contact a:hover {
    color: var(--coral);
}

.topbar-search {
    width: min(260px, 36vw);
}

.topbar-search input {
    min-height: 38px;
    border-radius: 8px;
    background: var(--paper);
}

.site-header {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(24px, 3.4vw, 48px);
    padding: 16px clamp(28px, 5vw, 78px);
    background: rgba(251, 251, 248, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    min-width: 0;
}

.brand img,
.custom-logo {
    width: auto;
    max-width: 230px;
    max-height: 68px;
    object-fit: contain;
}

.primary-nav {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    display: flex;
    justify-content: center;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: var(--leaf);
    color: var(--white);
    border-radius: 8px;
}

.brand-text {
    font-size: 1.18rem;
}

.menu {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 1.8vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: nowrap;
}

.menu li {
    position: relative;
}

.menu > li::after {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    top: 100%;
    height: 18px;
}

.menu .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 30;
    display: none;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.menu .sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

.menu .menu-item-has-children > a::after {
    content: ">";
    display: inline-block;
    margin-left: 7px;
    font-size: 1rem;
    line-height: 1;
}

.menu > .menu-item-has-children > a::after {
    content: "v";
}

.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
    display: grid;
    gap: 4px;
}

.menu > .menu-products {
    position: static;
}

.menu > .menu-item-has-children > a {
    margin-bottom: -24px;
    padding-bottom: 24px;
    background-image: linear-gradient(#00713c, #00713c);
    background-repeat: no-repeat;
    background-position: center calc(100% - 1px);
    background-size: 0 4px;
    transition: color 160ms ease, background-size 160ms ease;
}

.menu > .menu-item-has-children:hover > a,
.menu > .menu-item-has-children:focus-within > a {
    color: #00713c;
    background-size: 54px 4px;
}

.menu > .menu-products:hover > a,
.menu > .menu-products:focus-within > a {
    background-size: 120px 4px;
}

.menu > .menu-products > .sub-menu {
    left: 50%;
    top: calc(100% - 1px);
    display: grid;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    grid-template-columns: repeat(5, minmax(140px, 1fr)) minmax(220px, 280px);
    gap: 8px 34px;
    width: min(1280px, calc(100vw - 80px));
    min-width: 0;
    padding: 18px 22px 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.86)),
        url("../images/rd-lab.png") center / cover no-repeat;
    border-radius: 8px;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 140ms ease, visibility 140ms ease, transform 140ms ease;
}

.menu > .menu-products:hover > .sub-menu,
.menu > .menu-products:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.menu > .menu-products > .sub-menu > li {
    break-inside: avoid;
}

.menu > .menu-products > .sub-menu > li > a {
    color: #006b3d;
    font-size: 1.04rem;
    font-weight: 800;
}

.menu > .menu-products > .sub-menu > li > a::before {
    content: ">> ";
}

.menu > .menu-products > .sub-menu > li > .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin-top: 8px;
    padding: 0 0 0 26px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.menu > .menu-products > .sub-menu > li > .sub-menu a {
    padding: 4px 0;
    color: #2f3634;
    font-size: 0.95rem;
    font-weight: 500;
}

.menu > .menu-products > .sub-menu::after {
    content: "We can support private label and OEM customization for the categories shown here. Contact us for catalogue details and sample support.";
    grid-column: 6;
    grid-row: 1;
    white-space: pre-line;
    display: block;
    align-self: start;
    padding: 0 8px;
    color: #141b18;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
}

.menu > .menu-products > .sub-menu > .menu-catalogue-request {
    grid-column: 6;
    grid-row: 2;
}

.menu > .menu-products > .sub-menu > .menu-catalogue-request > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    background: #00713c;
    color: var(--white);
    font-weight: 800;
}

.menu > .menu-products > .sub-menu > .menu-catalogue-request > a::before,
.menu > .menu-products > .sub-menu > .menu-catalogue-request > a::after {
    content: "";
}

.menu .sub-menu a {
    display: block;
    padding: 9px 10px;
    border-radius: 6px;
}

.menu .sub-menu a:hover {
    background: var(--soft);
}

.menu a,
.header-cta,
.button,
.footer-cta {
    text-decoration: none;
}

.menu a {
    color: #000000;
    font-size: clamp(0.95rem, 1vw, 1.04rem);
    font-weight: 720;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--leaf);
}

.header-cta,
.button,
.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 8px;
    font-weight: 750;
}

.header-cta {
    flex: 0 0 auto;
    min-width: 145px;
    white-space: nowrap;
}

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

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

.mooyam-hero-slider {
    position: relative;
    min-height: clamp(520px, 48vw, 720px);
    overflow: hidden;
    background: #eef4ed;
    border-bottom: 1px solid var(--line);
}

.mooyam-hero-slider__track,
.mooyam-hero-slide {
    position: absolute;
    inset: 0;
}

.mooyam-hero-slide {
    display: flex;
    align-items: center;
    background-position: center right;
    background-size: cover;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 520ms ease, transform 720ms ease;
    pointer-events: none;
}

.mooyam-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.mooyam-hero-slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(251, 251, 248, 0.94) 0%, rgba(251, 251, 248, 0.82) 36%, rgba(251, 251, 248, 0.32) 64%, rgba(251, 251, 248, 0.08) 100%);
}

.mooyam-hero-slide__content {
    position: relative;
    z-index: 2;
    width: min(650px, 58vw);
    margin-left: clamp(56px, 7vw, 108px);
    padding: clamp(34px, 5vw, 70px) 0;
}

.mooyam-hero-slide__eyebrow {
    margin: 0 0 16px;
    color: var(--ink);
    font-size: clamp(0.92rem, 1vw, 1.08rem);
    font-weight: 500;
}

.mooyam-hero-slide h1 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.25rem, 3.3vw, 4.35rem);
    font-weight: 500;
    line-height: 1.2;
}

.mooyam-hero-slide__text {
    max-width: 620px;
    margin: 22px 0 0;
    color: #1d2924;
    font-size: clamp(1rem, 1.08vw, 1.12rem);
    line-height: 1.65;
}

.mooyam-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}

.mooyam-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    color: var(--white);
    background: #00713c;
    border: 1px solid #00713c;
    border-radius: 0;
    font-weight: 760;
    text-decoration: none;
}

.mooyam-hero-button.secondary {
    min-width: 260px;
}

.mooyam-hero-button:hover {
    background: var(--leaf);
    border-color: var(--leaf);
}

.mooyam-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(23, 33, 29, 0.82);
    color: var(--white);
    font-size: 2.3rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.mooyam-hero-arrow.prev {
    left: 24px;
}

.mooyam-hero-arrow.next {
    right: 24px;
}

.mooyam-hero-arrow:hover {
    background: #00713c;
}

.mooyam-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 9px;
    transform: translateX(-50%);
}

.mooyam-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    cursor: pointer;
}

.mooyam-hero-dots button.is-active {
    width: 32px;
    background: #00713c;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(28px, 5vw, 76px);
    align-items: center;
    min-height: calc(100vh - 82px);
    padding: clamp(38px, 7vw, 92px) clamp(18px, 5vw, 76px) clamp(30px, 5vw, 62px);
}

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

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

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5.6rem);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.5rem);
}

h3 {
    font-size: 1.2rem;
}

.hero p:not(.eyebrow),
.lead {
    margin: 22px 0 0;
    color: var(--text);
    font-size: clamp(1.03rem, 1.5vw, 1.24rem);
}

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

.hero-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.section {
    padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.section.narrow {
    max-width: 1020px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading p {
    max-width: 660px;
}

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

.feature-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
}

.category-card,
.feature-grid article,
.post-card {
    min-height: 220px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.category-card span {
    display: block;
    width: 34px;
    height: 6px;
    margin-bottom: 22px;
    background: linear-gradient(90deg, var(--leaf), var(--gold), var(--coral));
    border-radius: 999px;
}

.category-card p,
.feature-grid p,
.post-card p {
    color: var(--muted);
}

.category-card a {
    color: var(--leaf);
    font-weight: 800;
}

.split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.steps {
    display: grid;
    gap: 14px;
}

.steps div {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.steps strong {
    color: var(--leaf);
    font-size: 1.2rem;
}

.steps.large {
    margin-top: 34px;
}

.muted {
    background: var(--soft);
}

.cta-band {
    margin: clamp(28px, 5vw, 72px);
    padding: clamp(38px, 6vw, 76px);
    background: var(--ink);
    color: var(--white);
    border-radius: 8px;
}

.cta-band h2 {
    max-width: 780px;
    color: var(--white);
    margin-bottom: 28px;
}

.faq-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

details {
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

summary {
    cursor: pointer;
    color: var(--ink);
    font-weight: 800;
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-cards a {
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.contact-cards span,
.site-footer span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 750;
}

.inquiry-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 750;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 13px;
    color: var(--ink);
    font: inherit;
}

textarea {
    resize: vertical;
}

.site-footer {
    background: #3f403e;
    color: var(--white);
}

.footer-inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(38px, 5vw, 72px) 0;
}

.footer-brand-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.footer-logo img,
.footer-logo .custom-logo {
    width: auto;
    max-width: 180px;
    max-height: 82px;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.8fr 1.2fr;
    gap: clamp(26px, 4vw, 52px);
    padding-top: 34px;
}

.footer-grid h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.12rem;
}

.footer-grid a {
    color: var(--white);
    text-decoration: none;
}

.footer-grid a:hover {
    color: #bfe2d0;
}

.footer-products ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.88);
}

.footer-inquiry form,
.mooyam-contact-form-block form {
    display: grid;
    gap: 12px;
}

.form-notice {
    margin: 0 0 12px;
    padding: 10px 12px;
    color: var(--white);
    font-weight: 750;
}

.form-notice.success {
    background: #007a3d;
}

.form-notice.error {
    background: #a54036;
}

.footer-inquiry input,
.footer-inquiry select,
.footer-inquiry textarea,
.mooyam-contact-form-block input,
.mooyam-contact-form-block select,
.mooyam-contact-form-block textarea {
    border: 0;
    border-radius: 0;
    background: var(--white);
}

.footer-inquiry select,
.mooyam-contact-form-block select {
    min-height: 50px;
    color: var(--muted);
}

.footer-phone-field {
    display: grid;
    grid-template-columns: minmax(130px, 0.9fr) minmax(0, 1fr);
    gap: 10px;
}

.footer-inquiry button,
.mooyam-contact-form-block button {
    width: 150px;
    min-height: 42px;
    border: 0;
    border-radius: 0;
    background: #007a3d;
    color: var(--white);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.mooyam-contacts-page {
    padding-top: clamp(28px, 5vw, 64px);
    padding-bottom: clamp(48px, 7vw, 86px);
}

.mooyam-breadcrumb {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 0.95rem;
}

.mooyam-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.mooyam-contacts-layout {
    align-items: flex-start;
    gap: clamp(34px, 6vw, 72px);
}

.mooyam-contacts-info {
    padding: clamp(26px, 4vw, 44px);
    background: var(--white);
}

.mooyam-contacts-info h1 {
    margin: 0 0 26px;
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
}

.mooyam-contacts-info hr {
    margin-bottom: 24px;
}

.mooyam-contacts-info p {
    position: relative;
    margin: 0 0 18px;
    padding-left: 28px;
    color: var(--ink);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.mooyam-contacts-info p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--green);
}

.mooyam-contacts-info a {
    color: var(--ink);
    text-decoration: none;
}

.mooyam-contacts-form-card {
    padding: clamp(28px, 4vw, 52px);
    border-top: 5px solid var(--green);
    background: var(--white);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.mooyam-contacts-form-card h2 {
    margin: 0 0 8px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    text-align: center;
}

.mooyam-contacts-form-card > p {
    margin: 0 0 28px;
    color: var(--muted);
    text-align: center;
}

.mooyam-contacts-form-card .mooyam-contact-form-block form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
}

.mooyam-contacts-form-card .mooyam-contact-form-block input,
.mooyam-contacts-form-card .mooyam-contact-form-block select,
.mooyam-contacts-form-card .mooyam-contact-form-block textarea {
    border: 1px solid var(--line);
}

.mooyam-contacts-form-card .mooyam-contact-form-block .footer-phone-field,
.mooyam-contacts-form-card .mooyam-contact-form-block textarea,
.mooyam-contacts-form-card .mooyam-contact-form-block .form-notice {
    grid-column: 1 / -1;
}

.mooyam-contacts-form-card .mooyam-contact-form-block textarea {
    min-height: 120px;
}

.mooyam-contacts-form-card .mooyam-contact-form-block button {
    grid-column: 1 / -1;
    justify-self: center;
    width: 160px;
    border-radius: 999px;
}

.mooyam-faq-page {
    padding-top: clamp(28px, 5vw, 64px);
    padding-bottom: clamp(48px, 7vw, 86px);
}

.mooyam-faq-page > h1 {
    margin: 0 0 12px;
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.mooyam-faq-layout {
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
    margin-top: clamp(22px, 3vw, 36px);
    margin-bottom: clamp(38px, 5vw, 68px);
    padding: clamp(20px, 2.6vw, 30px);
    background: #f1f3f4;
    overflow: visible;
}

.mooyam-faq-sidebar {
    position: static !important;
    align-self: flex-start;
    max-height: none;
    overflow: visible;
}

.mooyam-faq-sidebar h2 {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 1.02rem;
}

.mooyam-faq-sidebar ul {
    display: grid;
    gap: 13px;
    margin: 0 0 22px;
    padding-left: 22px;
}

.mooyam-faq-sidebar li::marker {
    color: var(--green);
}

.mooyam-faq-sidebar li {
    color: var(--green);
    font-size: 0.98rem;
}

.mooyam-faq-sidebar li strong {
    color: var(--ink);
}

.mooyam-faq-help-card {
    padding: 20px 18px;
    border-radius: 6px;
    background: var(--white);
    text-align: center;
}

.mooyam-faq-help-card h3 {
    margin: 0 0 16px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.05;
}

.mooyam-faq-help-card p {
    margin: 0 0 20px;
    color: var(--ink);
}

.mooyam-faq-list {
    display: grid;
    gap: 8px;
    max-height: none;
    overflow: visible;
}

.mooyam-faq-list details {
    padding: 0;
    border: 1px solid rgba(17, 29, 25, 0.045);
    border-radius: 5px;
    background: var(--white);
    overflow: hidden;
}

.mooyam-faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 9px 40px 9px 14px;
    color: #333;
    font-size: clamp(0.86rem, 1.05vw, 0.96rem);
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.mooyam-faq-list summary::before {
    content: "?";
    display: grid;
    place-items: center;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 900;
}

.mooyam-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 15px;
    top: 50%;
    color: #9a9a9a;
    font-size: 1.15rem;
    line-height: 1;
    transform: translateY(-50%);
}

.mooyam-faq-list details[open] summary::after {
    content: "-";
}

.mooyam-faq-list details p {
    position: relative;
    margin: 0;
    padding: 0 40px 13px 44px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.mooyam-faq-list details p::before {
    content: "!";
    position: absolute;
    left: 17px;
    top: 0.2em;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #d9dddb;
    color: #6f7773;
    font-size: 0.78rem;
    font-weight: 900;
}

.mooyam-faq-anchor {
    display: block;
    scroll-margin-top: 120px;
}

.mooyam-faq-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: #6d776f;
    font-size: 0.92rem;
}

.mooyam-faq-pagination a,
.mooyam-faq-pagination span {
    display: grid;
    place-items: center;
    min-width: 28px;
    height: 28px;
    border-radius: 6px;
    color: inherit;
    text-decoration: none;
}

.mooyam-faq-pagination .is-active {
    background: var(--green);
    color: var(--white);
    font-weight: 800;
}

.mooyam-faq-pagination .is-disabled {
    color: #a8ada9;
}

.mooyam-faq-contact-section {
    margin-top: clamp(42px, 6vw, 78px);
}

.floating-contact {
    position: fixed;
    right: 16px;
    top: 48%;
    z-index: 50;
    display: grid;
    gap: 8px;
    transform: translateY(-50%);
}

.floating-item {
    position: relative;
}

.floating-button {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    background: #62bc68;
    border: 1px solid #62bc68;
    border-radius: 10px;
    color: var(--white);
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(20, 40, 34, 0.2);
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.floating-button svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-button:hover {
    background: #357a57;
    color: var(--white);
    transform: translateX(-2px);
    box-shadow: 0 12px 28px rgba(20, 40, 34, 0.26);
}

.floating-whatsapp {
    background: #11bf4f;
    border-color: #11bf4f;
}

.floating-whatsapp:hover {
    background: #0d9f41;
}

.floating-whatsapp svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke-width: 1.9;
}

.floating-whatsapp svg path:first-child {
    fill: transparent;
}

.floating-card {
    position: absolute;
    right: 58px;
    top: 0;
    display: none;
    min-width: 250px;
    padding: 15px 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--text);
    box-shadow: var(--shadow);
}

.floating-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
}

.floating-card p {
    margin: 0 0 8px;
    font-size: 0.92rem;
}

.floating-card a {
    display: inline;
    width: auto;
    height: auto;
    margin-top: 0;
    padding: 0;
    background: transparent;
    color: var(--leaf);
    border: 0;
    box-shadow: none;
    font-size: 0.94rem;
    text-decoration: underline;
}

.floating-item:hover .floating-card,
.floating-item:focus-within .floating-card {
    display: block;
}

.editable-content {
    padding: 0;
}

.editable-content > .mooyam-editable-page,
.editor-styles-wrapper .mooyam-editable-page {
    max-width: 1220px;
    margin: 0 auto;
    padding: clamp(36px, 6vw, 84px) clamp(18px, 4vw, 42px);
}

.mooyam-editable-page > * + * {
    margin-top: clamp(22px, 4vw, 52px);
}

.mooyam-editable-hero {
    gap: clamp(28px, 5vw, 72px);
    min-height: calc(100vh - 90px);
    align-items: center;
}

.mooyam-editable-hero h1 {
    max-width: 720px;
    font-size: clamp(2.45rem, 5vw, 5.25rem);
}

.mooyam-editable-hero .lead,
.mooyam-editable-page .lead {
    max-width: 720px;
    color: var(--text);
    font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.mooyam-rounded-image img,
.mooyam-wide-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.mooyam-rounded-image img {
    aspect-ratio: 4 / 3;
}

.mooyam-wide-image img {
    aspect-ratio: 16 / 7;
}

.mooyam-stat-row,
.mooyam-card-grid,
.mooyam-process {
    gap: 18px;
}

.mooyam-stat-row .wp-block-column,
.mooyam-card-grid .wp-block-column,
.mooyam-process .wp-block-column {
    min-height: 190px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.mooyam-stat-row .wp-block-column {
    min-height: 150px;
}

.mooyam-process .wp-block-column {
    background: var(--soft);
}

.mooyam-card-grid h3,
.mooyam-stat-row h3,
.mooyam-process h3 {
    margin-bottom: 12px;
}

.mooyam-card-grid p,
.mooyam-stat-row p,
.mooyam-process p {
    color: var(--muted);
}

.mooyam-logo-strip {
    gap: 16px;
}

.mooyam-logo-strip .wp-block-column {
    display: grid;
    place-items: center;
    min-height: 110px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--leaf);
    font-size: 1.2rem;
    font-weight: 850;
}

.mooyam-split-section {
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(24px, 4vw, 48px) 0;
}

.mooyam-cta-block {
    padding: clamp(34px, 6vw, 76px);
    background: var(--ink);
    color: var(--white);
    border-radius: 8px;
}

.mooyam-cta-block h2,
.mooyam-cta-block p {
    color: var(--white);
}

.mooyam-cta-block .eyebrow {
    color: #f2b896;
}

.wp-block-button__link {
    border-radius: 8px;
    padding: 13px 20px;
    background: var(--leaf);
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--leaf);
    border: 1px solid var(--leaf);
}

.wp-block-details {
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.wp-block-details summary {
    color: var(--ink);
    font-weight: 800;
}

.wp-block-details p {
    margin-bottom: 0;
    color: var(--muted);
}

.mooyam-about-page {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(28px, 5vw, 64px) 0 clamp(48px, 7vw, 92px);
}

.mooyam-about-hero-image {
    margin: 0;
}

.mooyam-about-hero-image img {
    width: 100%;
    max-height: 540px;
    object-fit: cover;
    border-radius: 0 42px 0 0;
}

.mooyam-about-title-band {
    width: min(640px, 100%);
    margin: -44px 0 48px;
    padding: 18px clamp(24px, 5vw, 60px);
    background: #00713c;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.mooyam-about-title-band h1 {
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 500;
}

.mooyam-about-company {
    align-items: flex-start;
    gap: clamp(34px, 5vw, 72px);
    margin-bottom: clamp(24px, 4vw, 38px);
}

.mooyam-about-company-stats {
    display: grid;
    gap: 28px;
    text-align: center;
}

.mooyam-about-company-stats h3 {
    margin: 0;
    color: #00713c;
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1;
}

.mooyam-about-company-stats p {
    margin: -18px 0 10px;
    color: #000;
    font-size: 1rem;
}

.mooyam-about-company-copy p {
    margin: 0 0 16px;
    color: #000;
    line-height: 1.75;
}

.mooyam-about-certificates {
    margin-bottom: clamp(34px, 5vw, 58px);
}

.mooyam-about-certificates h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.mooyam-certificate-scroll {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    padding: 6px 4px 18px;
    scroll-snap-type: x mandatory;
}

.mooyam-certificate-scroll figure,
.mooyam-certificate-scroll .wp-block-image {
    flex: 0 0 420px !important;
    width: 420px !important;
    max-width: 82vw;
    height: auto !important;
    margin: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    box-sizing: border-box;
    scroll-snap-align: start;
}

.mooyam-certificate-scroll img {
    width: 100%;
    height: auto !important;
    display: block;
    object-fit: contain;
}

.wp-block-gallery.has-nested-images.is-cropped.mooyam-certificate-scroll figure.wp-block-image:not(#individual-image) img {
    flex: none !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

.mooyam-about-production-stats {
    gap: 0;
    margin: 0 calc(50% - 50vw) clamp(48px, 7vw, 86px);
    padding: 42px max(20px, calc((100vw - 1280px) / 2));
    background: #f5f4f1;
    text-align: center;
}

.mooyam-about-production-stats .wp-block-column {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.mooyam-about-production-stats .wp-block-column:last-child {
    border-right: 0;
}

.mooyam-about-production-stats h3 {
    margin: 0 0 10px;
    color: #00713c;
    font-size: 1.25rem;
}

.mooyam-about-production-stats p {
    margin: 0;
    color: #000;
    font-weight: 650;
}

.mooyam-about-contact {
    align-items: center;
    gap: clamp(28px, 5vw, 68px);
    margin-bottom: clamp(48px, 7vw, 86px);
    padding: clamp(28px, 5vw, 56px);
    background: var(--white);
    border: 1px solid var(--line);
}

.mooyam-about-contact-avatar figure {
    margin: 0;
}

.mooyam-about-contact-avatar img {
    width: min(260px, 70vw);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.mooyam-about-contact-copy h2 {
    margin-top: 0;
    color: var(--ink);
    font-size: clamp(2rem, 4vw, 3rem);
}

.mooyam-about-contact-copy p {
    color: #000;
    font-size: 1.08rem;
}

.mooyam-about-oem-cta {
    padding: clamp(34px, 6vw, 70px);
    background: #00713c;
    color: var(--white);
}

.mooyam-about-oem-cta .eyebrow,
.mooyam-about-oem-cta h2 {
    color: var(--white);
}

.mooyam-about-oem-cta h2 {
    margin-top: 0;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.05;
}

.mooyam-about-oem-cta .wp-block-button.is-style-outline .wp-block-button__link {
    color: var(--white);
    border-color: var(--white);
}

.mooyam-simple-product-page {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(48px, 7vw, 96px) 0;
}

.mooyam-simple-product-page h1 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.08;
}

.mooyam-simple-product-page p {
    max-width: 760px;
    margin: 0 0 28px;
    color: var(--text);
    font-size: 1.12rem;
}

.ym-products-page {
    max-width: 100%;
}

.ym-products-layout {
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: clamp(30px, 4vw, 58px);
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(42px, 6vw, 78px) 0;
}

.ym-products-sidebar {
    padding-right: 26px;
    border-right: 1px solid var(--line);
}

.ym-sidebar-search {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.ym-sidebar-search h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.ym-sidebar-search p {
    margin: 0;
    color: #8c9491;
    font-size: 0.95rem;
}

.ym-products-list {
    display: grid;
    gap: 8px;
}

.ym-products-sidebar a {
    color: #8c9491;
    text-decoration: none;
}

.ym-category-parent {
    margin: 8px 0 0;
}

.ym-category-parent a {
    color: #006b3d;
    font-weight: 800;
}

.ym-category-child {
    margin: 0 0 0 26px;
}

.ym-category-child a {
    color: #8c9491;
}

.ym-products-sidebar .is-active a,
.ym-products-sidebar a:hover {
    color: var(--leaf);
}

.ym-products-heading {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.ym-products-heading h1 {
    margin: 0 0 12px;
    color: #989fa0;
    font-size: clamp(2.35rem, 4vw, 3.7rem);
    font-weight: 300;
    line-height: 1.15;
}

.ym-products-heading p,
.ym-products-note p {
    margin: 0;
    color: #111;
    font-size: clamp(1.06rem, 1.4vw, 1.34rem);
    line-height: 1.65;
}

.ym-products-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    gap: 26px;
    margin: 34px 0;
    padding: 22px 24px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
        url("../images/rd-lab.png") center / cover no-repeat;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.ym-products-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    background: #00713c;
    color: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.ym-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 42px);
}

.ym-product-card {
    text-align: center;
}

.ym-product-card figure,
.ym-product-card .wp-block-image {
    margin: 0;
}

.ym-product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--white);
}

.ym-product-card-category {
    margin-top: 13px;
    color: #777;
    font-size: 0.88rem;
}

.ym-product-card h2 {
    margin: 8px 0 0;
    color: #aeb3b5;
    font-size: 1.05rem;
    font-weight: 760;
    line-height: 1.35;
}

.product-catalog-layout {
    display: grid;
    grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 68px);
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(42px, 6vw, 82px) 0;
}

.product-catalog-sidebar {
    padding: 0 clamp(12px, 2vw, 24px) 0 0;
    border-right: 1px solid var(--line);
}

.product-sidebar-search {
    display: grid;
    gap: 12px;
    margin-bottom: 38px;
}

.product-sidebar-search label {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 500;
}

.product-sidebar-search div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 10px;
}

.product-sidebar-search input {
    min-height: 54px;
    border-radius: 0;
    background: var(--white);
}

.product-sidebar-search button {
    min-height: 54px;
    border: 0;
    border-radius: 6px;
    background: #2f455d;
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.product-category-tree,
.product-category-tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-category-tree {
    display: grid;
    gap: 10px;
}

.product-category-tree ul {
    display: grid;
    gap: 8px;
    padding-top: 8px;
    padding-left: 18px;
}

.product-category-tree a {
    color: #91979a;
    font-size: 0.96rem;
    text-decoration: none;
}

.product-category-tree strong {
    color: #111;
    font-weight: 500;
}

.product-category-tree .is-active > a,
.product-category-tree a:hover {
    color: var(--leaf);
}

.product-catalog-heading {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.product-catalog-heading h1 {
    margin: 0 0 12px;
    color: #999da0;
    font-size: clamp(2.25rem, 4vw, 3.55rem);
    font-weight: 300;
    line-height: 1.15;
}

.product-catalog-heading p {
    margin: 0;
    color: #050505;
    font-size: clamp(1.08rem, 1.5vw, 1.42rem);
    line-height: 1.65;
}

.product-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 44px 0 34px;
    color: #111;
    font-size: 0.98rem;
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(26px, 3vw, 44px);
}

.product-card-preview {
    text-align: center;
}

.product-card-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--white);
}

.product-card-preview span {
    display: block;
    margin-top: 14px;
    color: #777;
    font-size: 0.88rem;
}

.product-card-preview h2 {
    margin: 8px 0 0;
    color: #b0b3b5;
    font-size: 1.05rem;
    font-weight: 750;
    line-height: 1.35;
}

@media (max-width: 1180px) {
    .site-header {
        gap: 20px;
        padding: 14px 36px;
    }

    .brand img,
    .custom-logo {
        max-width: 190px;
    }

    .menu {
        gap: 14px;
    }

    .menu a {
        font-size: 0.94rem;
    }

    .header-cta {
        min-width: 132px;
        padding: 0 14px;
    }
}

@media (max-width: 1020px) {
    .site-topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .topbar-search {
        width: 100%;
    }

    .site-header {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }

    .primary-nav {
        flex: 1 1 100%;
        order: 4;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .menu {
        justify-content: flex-start;
        min-width: max-content;
    }

    .menu .sub-menu {
        position: static;
        min-width: 0;
        box-shadow: none;
    }

    .mooyam-hero-slider {
        min-height: 620px;
    }

    .mooyam-hero-slide {
        align-items: flex-start;
        background-position: center bottom;
    }

    .mooyam-hero-slide__shade {
        background: linear-gradient(180deg, rgba(251, 251, 248, 0.96) 0%, rgba(251, 251, 248, 0.86) 48%, rgba(251, 251, 248, 0.36) 100%);
    }

    .mooyam-hero-slide__content {
        width: min(100% - 96px, 720px);
        margin: 0 auto;
        padding-top: 52px;
    }

    .mooyam-hero-slide h1 {
        font-size: clamp(2rem, 6vw, 3.4rem);
    }

    .hero,
    .split,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .category-grid,
    .feature-grid,
    .feature-grid.two,
    .mooyam-editable-hero,
    .mooyam-split-section,
    .mooyam-stat-row,
    .mooyam-card-grid,
    .mooyam-process {
        grid-template-columns: 1fr;
    }

    .mooyam-editable-hero {
        min-height: auto;
    }

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

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

    .mooyam-about-company,
    .mooyam-about-contact {
        grid-template-columns: 1fr;
    }

    .mooyam-about-company-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .menu > .menu-products > .sub-menu {
        position: static;
        transform: none;
        width: max-content;
        max-width: none;
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        background: var(--white);
    }

    .menu > .menu-products > .sub-menu::after {
        display: none;
    }

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

    .ym-products-sidebar {
        padding-right: 0;
        padding-bottom: 26px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

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

    .product-catalog-sidebar {
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-bottom: 28px;
    }

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

@media (max-width: 560px) {
    .topbar-contact {
        display: grid;
        gap: 8px;
    }

    .brand img,
    .custom-logo {
        max-width: 150px;
        max-height: 58px;
    }

    .header-cta {
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .mooyam-hero-slider {
        min-height: 610px;
    }

    .mooyam-hero-slide__content {
        width: calc(100% - 36px);
        padding-top: 34px;
    }

    .mooyam-hero-slide__eyebrow {
        font-size: 0.86rem;
    }

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

    .mooyam-hero-slide__text {
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .mooyam-hero-slide__actions {
        display: grid;
        gap: 10px;
        margin-top: 22px;
    }

    .mooyam-hero-button,
    .mooyam-hero-button.secondary {
        width: 100%;
        min-width: 0;
        min-height: 46px;
        padding: 0 14px;
        text-align: center;
    }

    .mooyam-hero-arrow {
        top: auto;
        bottom: 54px;
        width: 42px;
        height: 42px;
        font-size: 2rem;
        transform: none;
    }

    .mooyam-hero-arrow.prev {
        left: 16px;
    }

    .mooyam-hero-arrow.next {
        right: 16px;
    }

    .hero-image img {
        min-height: 280px;
    }

    .steps div {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        width: min(100% - 28px, 1280px);
    }

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

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

    .mooyam-contacts-form-card .mooyam-contact-form-block form {
        grid-template-columns: 1fr;
    }

    .mooyam-faq-layout {
        padding: 22px;
    }

    .mooyam-faq-sidebar {
        position: static;
    }

    .mooyam-faq-list summary {
        padding-right: 42px;
    }

    .mooyam-faq-list details p {
        padding: 0 24px 14px 44px;
    }

    .mooyam-faq-list details p::before {
        left: 17px;
    }

    .mooyam-about-page {
        width: calc(100% - 28px);
    }

    .mooyam-about-title-band {
        margin-top: -28px;
        padding: 16px 20px;
    }

    .mooyam-about-company-stats,
    .mooyam-about-production-stats {
        grid-template-columns: 1fr;
    }

    .mooyam-about-production-stats .wp-block-column {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 18px;
    }

    .mooyam-about-production-stats .wp-block-column:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .mooyam-certificate-scroll figure,
    .mooyam-certificate-scroll .wp-block-image {
        flex-basis: 86vw !important;
        width: 86vw !important;
        height: auto !important;
    }

    .ym-products-layout {
        width: calc(100% - 28px);
        padding-top: 28px;
    }

    .ym-products-note,
    .ym-product-grid {
        grid-template-columns: 1fr;
    }

    .ym-products-note a {
        width: 100%;
    }

    .ym-products-heading h1 {
        font-size: 2.2rem;
    }

    .product-catalog-layout {
        width: calc(100% - 28px);
        padding-top: 28px;
    }

    .product-sidebar-search div,
    .product-card-grid,
    .product-toolbar {
        grid-template-columns: 1fr;
    }

    .product-sidebar-search div,
    .product-toolbar {
        display: grid;
    }

    .product-sidebar-search button {
        width: 100%;
    }

    .product-category-tree ul {
        padding-left: 12px;
    }

    .product-catalog-heading h1 {
        font-size: 2.2rem;
    }

    .product-card-grid {
        gap: 28px;
    }

    .floating-contact {
        right: 10px;
        top: auto;
        bottom: 16px;
        grid-template-columns: repeat(2, 1fr);
        transform: none;
    }

    .floating-button {
        width: 52px;
        height: 48px;
    }

    .floating-card {
        right: 0;
        top: auto;
        bottom: 52px;
        width: min(280px, calc(100vw - 24px));
    }
}
