:root {
    --sm-red: #9f1f2d;
    --sm-red-dark: #7d1722;
    --sm-navy: #13243d;
    --sm-ink: #1d2530;
    --sm-muted: #66707c;
    --sm-soft: #f4f2ed;
    --sm-soft-blue: #eef1f4;
    --sm-line: #dddfe3;
    --sm-white: #ffffff;
    --sm-green: #16814b;
    --sm-shadow: 0 18px 45px rgba(19, 36, 61, .08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--sm-white);
    color: var(--sm-ink);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.offcanvas-open {
    overflow: hidden;
}

.corporate-site a {
    text-decoration: none;
}

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

.corporate-site .container {
    max-width: 1200px;
}

.utility-bar {
    min-height: 38px;
    background: var(--sm-navy);
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
}

.utility-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.utility-inner > span,
.utility-inner > div,
.utility-inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.utility-inner > div {
    gap: 24px;
}

.utility-inner a {
    color: rgba(255, 255, 255, .76);
    transition: color .2s ease;
}

.utility-inner a:hover {
    color: #fff;
}

.utility-inner i {
    color: #d86a74;
}

.corporate-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    min-height: 78px;
    padding: 10px 0;
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(19, 36, 61, .08);
    transition: box-shadow .22s ease, min-height .22s ease;
}

.corporate-navbar.is-scrolled {
    min-height: 68px;
    box-shadow: 0 10px 30px rgba(19, 36, 61, .07);
}

.corporate-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--sm-navy);
}

.corporate-brand:hover {
    color: var(--sm-navy);
}

.corporate-brand img {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    object-fit: contain;
}

.corporate-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.12;
}

.corporate-brand strong {
    color: var(--sm-navy);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.corporate-brand small {
    margin-top: 5px;
    color: var(--sm-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.corporate-nav-links {
    gap: 4px;
}

.corporate-nav-links .nav-link {
    position: relative;
    padding: 12px 13px !important;
    color: #4f5966;
    font-size: 13px;
    font-weight: 600;
}

.corporate-nav-links .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 5px;
    height: 2px;
    background: var(--sm-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.corporate-nav-links .nav-link:hover,
.corporate-nav-links .nav-link.active {
    color: var(--sm-navy);
}

.corporate-nav-links .nav-link.active::after,
.corporate-nav-links .nav-link:hover::after {
    transform: scaleX(1);
}

.nav-contact-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 9px 16px;
    border: 1px solid var(--sm-navy);
    border-radius: 4px;
    background: var(--sm-navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.nav-contact-button:hover {
    border-color: var(--sm-red);
    background: var(--sm-red);
    color: #fff;
}

.corporate-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--sm-line);
    border-radius: 4px;
    background: #fff;
    color: var(--sm-navy);
    box-shadow: none !important;
}

.corporate-toggler i {
    font-size: 24px;
}

.corporate-offcanvas {
    width: min(380px, 92vw) !important;
    border: 0 !important;
}

.corporate-offcanvas .offcanvas-header {
    padding: 20px 22px;
    border-bottom: 1px solid var(--sm-line);
}

.corporate-offcanvas .corporate-brand img {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
}

.corporate-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    padding: 16px 22px 22px;
}

.mobile-navigation {
    display: grid;
}

.mobile-navigation a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--sm-line);
    color: var(--sm-navy);
    font-size: 15px;
    font-weight: 600;
}

.mobile-navigation i {
    color: #98a0aa;
}

.mobile-contact-box {
    padding: 20px;
    border-radius: 4px;
    background: var(--sm-soft);
}

.mobile-contact-box small,
.mobile-contact-box strong {
    display: block;
}

.mobile-contact-box small {
    color: var(--sm-muted);
    font-size: 11px;
}

.mobile-contact-box strong {
    margin: 5px 0 14px;
    color: var(--sm-navy);
    font-size: 17px;
}

.mobile-contact-box .btn {
    width: 100%;
    border-radius: 4px;
    background: var(--sm-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.company-hero {
    position: relative;
    padding: 92px 0 86px;
    background: #fbfaf7;
    border-bottom: 1px solid #ebe8e1;
}

.hero-copy {
    position: relative;
    max-width: 650px;
    padding-left: 24px;
}

.hero-copy::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 3px;
    left: 0;
    width: 3px;
    background: var(--sm-red);
}

.company-kicker,
.section-kicker {
    display: inline-block;
    color: var(--sm-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.company-hero h1 {
    max-width: 700px;
    margin: 20px 0 22px;
    color: var(--sm-navy);
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.045em;
}

.company-hero .hero-copy > p {
    max-width: 620px;
    margin: 0;
    color: var(--sm-muted);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
}

.primary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 1px solid var(--sm-red);
    border-radius: 4px;
    background: var(--sm-red);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.primary-button:hover {
    border-color: var(--sm-red-dark);
    background: var(--sm-red-dark);
    color: #fff;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 0;
    border: 0;
    color: var(--sm-navy);
    font-size: 13px;
    font-weight: 700;
}

.text-button:hover {
    color: var(--sm-red);
}

.text-button i {
    color: var(--sm-green);
    font-size: 18px;
}

.hero-company-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 540px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid #ddd9d1;
}

.hero-company-detail div {
    display: flex;
    flex-direction: column;
}

.hero-company-detail small {
    margin-bottom: 5px;
    color: #87909a;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-company-detail strong,
.hero-company-detail a {
    color: var(--sm-navy);
    font-size: 13px;
    font-weight: 600;
}

.hero-catalog {
    max-width: 540px;
    margin-left: auto;
    border: 1px solid #dad6ce;
    background: #fff;
    box-shadow: var(--sm-shadow);
}

.hero-catalog-head,
.hero-catalog-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-catalog-head {
    min-height: 52px;
    padding: 0 20px;
    border-bottom: 1px solid #e3dfd7;
    color: #68717b;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero-product-stage {
    min-height: 400px;
    display: grid;
    place-items: center;
    padding: 28px;
    background: var(--sm-soft);
}

.hero-product-stage img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(19, 36, 61, .12));
}

.hero-product-placeholder {
    width: 100%;
    min-height: 340px;
    display: grid;
    place-items: center;
    color: #a8afb7;
    font-size: 70px;
}

.hero-catalog-foot {
    min-height: 72px;
    padding: 12px 18px 12px 20px;
    border-top: 1px solid #e3dfd7;
}

.hero-catalog-foot > div {
    display: flex;
    flex-direction: column;
}

.hero-catalog-foot small {
    color: #8a929b;
    font-size: 10px;
}

.hero-catalog-foot strong {
    margin-top: 4px;
    color: var(--sm-navy);
    font-size: 15px;
}

.hero-catalog-foot > a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--sm-line);
    border-radius: 50%;
    color: var(--sm-navy);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.hero-catalog-foot > a:hover {
    border-color: var(--sm-navy);
    background: var(--sm-navy);
    color: #fff;
}

.category-strip {
    background: var(--sm-navy);
}

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

.category-strip-grid a {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 18px;
    border-left: 1px solid rgba(255, 255, 255, .11);
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.category-strip-grid a:last-child {
    border-right: 1px solid rgba(255, 255, 255, .11);
}

.category-strip-grid a:hover {
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

.category-strip-grid span {
    color: #d47780;
    font-size: 9px;
    font-weight: 700;
}

.section-space {
    padding: 104px 0;
}

.about-company {
    background: #fff;
}

.company-document {
    border: 1px solid var(--sm-line);
    background: #fff;
    box-shadow: var(--sm-shadow);
}

.document-label,
.document-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 18px;
    color: #7a838e;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.document-label {
    border-bottom: 1px solid var(--sm-line);
}

.document-footer {
    border-top: 1px solid var(--sm-line);
}

.document-footer span:first-child {
    color: var(--sm-navy);
}

.document-image {
    min-height: 310px;
    display: grid;
    place-items: center;
    padding: 34px;
    background: #f6f5f2;
}

.document-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid #dedede;
    background: #fff;
}

.about-copy {
    max-width: 600px;
    margin-left: auto;
}

.about-copy h2,
.section-heading h2,
.strength-intro h2,
.contact-copy h2 {
    margin: 16px 0 20px;
    color: var(--sm-navy);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -.038em;
}

.about-copy > p,
.strength-intro > p,
.contact-copy > p {
    margin: 0;
    color: var(--sm-muted);
    font-size: 15px;
    line-height: 1.85;
}

.company-facts {
    margin: 38px 0 0;
    border-top: 1px solid var(--sm-line);
}

.company-facts > div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid var(--sm-line);
}

.company-facts dt,
.company-facts dd {
    margin: 0;
}

.company-facts dt {
    color: #858e98;
    font-size: 11px;
    font-weight: 600;
}

.company-facts dd,
.company-facts a {
    color: var(--sm-navy);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
}

.product-section {
    background: var(--sm-soft);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    align-items: end;
    gap: 50px;
    margin-bottom: 48px;
}

.section-heading h2 {
    max-width: 730px;
    margin-bottom: 0;
}

.section-heading > p {
    margin: 0 0 4px;
    color: var(--sm-muted);
    font-size: 14px;
    line-height: 1.8;
}

.product-card-natural {
    overflow: hidden;
    border: 1px solid #d8d7d2;
    border-radius: 4px;
    background: #fff;
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.product-card-natural:hover {
    border-color: #b9b5ad;
    box-shadow: 0 18px 36px rgba(19, 36, 61, .08);
    transform: translateY(-3px);
}

.product-photo {
    position: relative;
    min-height: 310px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 0;
    background: #f7f6f2;
    border-bottom: 1px solid #e2e0da;
}

.product-carousel,
.product-carousel .carousel-inner,
.product-carousel .carousel-item {
    width: 100%;
    height: 100%;
}

.product-carousel .carousel-item {
    min-height: 309px;
    padding: 22px;
}

.product-photo img {
    width: 100%;
    height: 265px;
    object-fit: contain;
    transition: transform .3s ease;
    filter: drop-shadow(0 12px 14px rgba(19, 36, 61, .10));
}

.product-card-natural:hover .product-photo img {
    transform: scale(1.025);
}

.product-gallery-count {
    position: absolute;
    z-index: 4;
    top: 14px;
    right: 14px;
    min-width: 48px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 0 9px;
    border: 1px solid rgba(19, 36, 61, .12);
    border-radius: 3px;
    background: rgba(255, 255, 255, .92);
    color: var(--sm-navy);
    font-size: 10px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.product-gallery-control {
    top: 50%;
    bottom: auto;
    width: 36px;
    height: 42px;
    margin-top: -21px;
    border: 1px solid rgba(19, 36, 61, .12);
    background: rgba(255, 255, 255, .94);
    color: var(--sm-navy);
    opacity: 0;
    transition: opacity .2s ease, background .2s ease, color .2s ease;
}

.product-gallery-control.carousel-control-prev {
    left: 12px;
}

.product-gallery-control.carousel-control-next {
    right: 12px;
}

.product-gallery-control:hover {
    background: var(--sm-navy);
    color: #fff;
}

.product-card-natural:hover .product-gallery-control,
.product-gallery-control:focus-visible {
    opacity: 1;
}

.product-gallery-dots {
    z-index: 4;
    bottom: 10px;
    gap: 5px;
    margin-bottom: 0;
}

.product-gallery-dots [data-bs-target] {
    width: 7px;
    height: 7px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(19, 36, 61, .28);
    opacity: 1;
}

.product-gallery-dots .active {
    width: 20px;
    border-radius: 10px;
    background: var(--sm-red);
}

.product-placeholder {
    width: 100%;
    min-height: 265px;
    display: grid;
    place-items: center;
    color: #a7afb7;
    font-size: 62px;
}

.product-info {
    padding: 24px;
}

.product-title-line {
    display: flex;
    align-items: baseline;
    gap: 13px;
}

.product-title-line > span {
    color: var(--sm-red);
    font-size: 10px;
    font-weight: 700;
}

.product-title-line h3 {
    margin: 0;
    color: var(--sm-navy);
    font-size: 18px;
    font-weight: 700;
}

.product-info p {
    min-height: 69px;
    margin: 14px 0 20px;
    color: var(--sm-muted);
    font-size: 13px;
    line-height: 1.75;
}

.product-info > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sm-navy);
    font-size: 12px;
    font-weight: 700;
}

.product-info > a:hover {
    color: var(--sm-red);
}

.product-info > a i {
    transition: transform .2s ease;
}

.product-info > a:hover i {
    transform: translate(2px, -2px);
}

.empty-product-state {
    padding: 38px;
    border: 1px solid var(--sm-line);
    background: #fff;
    color: var(--sm-muted);
    text-align: center;
}

.company-strengths {
    background: #fff;
}

.strength-intro {
    max-width: 490px;
    position: sticky;
    top: 110px;
}

.strength-intro h2 {
    font-size: clamp(34px, 3.8vw, 48px);
}

.strength-list {
    border-top: 1px solid var(--sm-line);
}

.strength-list article {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--sm-line);
}

.strength-list article > span {
    padding-top: 3px;
    color: var(--sm-red);
    font-size: 10px;
    font-weight: 700;
}

.strength-list h3 {
    margin: 0 0 8px;
    color: var(--sm-navy);
    font-size: 17px;
    font-weight: 700;
}

.strength-list p {
    max-width: 570px;
    margin: 0;
    color: var(--sm-muted);
    font-size: 13px;
    line-height: 1.75;
}

.contact-section {
    padding-top: 20px;
    background: #fff;
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    border-radius: 4px;
    overflow: hidden;
    background: var(--sm-navy);
    color: #fff;
}

.contact-copy {
    padding: clamp(38px, 6vw, 72px);
}

.section-kicker.light {
    color: #e18a92;
}

.contact-copy h2 {
    max-width: 650px;
    color: #fff;
}

.contact-copy > p {
    max-width: 620px;
    color: rgba(255, 255, 255, .66);
}

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

.contact-actions .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.contact-primary {
    border: 1px solid #fff;
    background: #fff;
    color: var(--sm-navy);
}

.contact-primary:hover {
    border-color: #f1f1f1;
    background: #f1f1f1;
    color: var(--sm-navy);
}

.contact-secondary {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
}

.contact-secondary:hover {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .035);
}

.contact-detail-list > div {
    position: relative;
    padding: 18px 42px 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-detail-list > div:first-child {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.contact-detail-list small,
.contact-detail-list strong,
.contact-detail-list a {
    display: block;
}

.contact-detail-list small {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-detail-list strong,
.contact-detail-list a {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.65;
}

.contact-detail-list button {
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    background: transparent;
    color: #fff;
    transform: translateY(-50%);
}

.contact-detail-list button:hover {
    background: rgba(255, 255, 255, .08);
}

.maps-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff !important;
    font-size: 12px !important;
}

.maps-link:hover {
    background: rgba(255, 255, 255, .06);
}

.company-footer {
    padding: 76px 0 24px;
    border-top: 1px solid var(--sm-line);
    background: #f8f8f6;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr .65fr .8fr 1.1fr;
    gap: 46px;
}

.footer-brand img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
}

.footer-identity > p {
    max-width: 380px;
    margin: 18px 0 0;
    color: var(--sm-muted);
    font-size: 13px;
    line-height: 1.75;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links > strong,
.footer-contact > strong {
    margin-bottom: 16px;
    color: var(--sm-navy);
    font-size: 12px;
    font-weight: 700;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    margin: 0 0 10px;
    color: var(--sm-muted);
    font-size: 12px;
    line-height: 1.65;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--sm-red);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 52px;
    padding-top: 22px;
    border-top: 1px solid var(--sm-line);
    color: #7c858f;
    font-size: 11px;
}

.footer-bottom a {
    color: var(--sm-navy);
    font-weight: 600;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1020;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 15px;
    border-radius: 4px;
    background: #168d50;
    color: #fff;
    box-shadow: 0 12px 28px rgba(22, 141, 80, .24);
    font-size: 12px;
    font-weight: 700;
    transition: background .2s ease, transform .2s ease;
}

.floating-whatsapp:hover {
    background: #107542;
    color: #fff;
    transform: translateY(-2px);
}

.copy-toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 1100;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 4px;
    background: #111820;
    color: #fff;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.copy-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .55s ease, transform .55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .product-photo img,
    .product-card-natural,
    .floating-whatsapp {
        transition: none;
    }
}

@media (max-width: 1199.98px) {
    .company-hero h1 {
        font-size: 52px;
    }

    .hero-product-stage {
        min-height: 360px;
    }

    .hero-product-stage img {
        height: 305px;
    }

    .footer-main {
        grid-template-columns: 1.45fr .7fr .85fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 991.98px) {
    html {
        scroll-padding-top: 76px;
    }

    .corporate-navbar {
        min-height: 72px;
    }

    .company-hero {
        padding: 74px 0;
    }

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

    .hero-catalog {
        max-width: 760px;
        margin: 0;
    }

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

    .category-strip-grid a:nth-child(4),
    .category-strip-grid a:nth-child(5) {
        border-top: 1px solid rgba(255, 255, 255, .11);
    }

    .category-strip-grid a:last-child {
        border-right: 0;
    }

    .section-space {
        padding: 82px 0;
    }

    .about-copy {
        max-width: 760px;
        margin-left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .strength-intro {
        max-width: 700px;
        position: static;
    }

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

    .contact-detail-list {
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
    }

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

    .footer-contact {
        grid-column: 1 / -1;
        padding-top: 24px;
        border-top: 1px solid var(--sm-line);
    }
}

@media (max-width: 767.98px) {
    .corporate-navbar {
        min-height: 66px;
        padding: 7px 0;
    }

    .corporate-brand {
        gap: 9px;
    }

    .corporate-brand img {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
    }

    .corporate-brand strong {
        max-width: 190px;
        font-size: 12px;
    }

    .corporate-brand small {
        margin-top: 4px;
        font-size: 9px;
    }

    .company-hero {
        padding: 58px 0 62px;
    }

    .hero-copy {
        padding-left: 17px;
    }

    .company-hero h1 {
        margin: 16px 0 18px;
        font-size: 39px;
        line-height: 1.1;
    }

    .company-hero .hero-copy > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin-top: 26px;
    }

    .primary-button,
    .text-button {
        width: 100%;
        min-height: 48px;
        justify-content: center;
    }

    .text-button {
        border: 1px solid #d9d7d1;
        border-radius: 4px;
        background: #fff;
    }

    .hero-company-detail {
        gap: 15px;
        margin-top: 30px;
    }

    .hero-company-detail strong,
    .hero-company-detail a {
        font-size: 11px;
    }

    .hero-catalog-head {
        min-height: 48px;
        padding: 0 15px;
    }

    .hero-product-stage {
        min-height: 300px;
        padding: 18px;
    }

    .hero-product-stage img {
        height: 260px;
    }

    .hero-catalog-foot {
        min-height: 66px;
        padding: 10px 13px 10px 15px;
    }

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

    .category-strip-grid a {
        min-height: 64px;
        padding: 10px 13px;
        border-bottom: 1px solid rgba(255, 255, 255, .11);
        font-size: 11px;
    }

    .category-strip-grid a:nth-child(odd) {
        border-left: 0;
    }

    .category-strip-grid a:nth-child(even) {
        border-right: 0;
    }

    .section-space {
        padding: 68px 0;
    }

    .document-image {
        min-height: 220px;
        padding: 18px;
    }

    .about-copy h2,
    .section-heading h2,
    .strength-intro h2,
    .contact-copy h2 {
        font-size: 32px;
    }

    .company-facts > div {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 15px 0;
    }

    .product-photo {
        min-height: 285px;
    }

    .product-carousel .carousel-item {
        min-height: 284px;
        padding: 18px;
    }

    .product-photo img {
        height: 245px;
    }

    .product-gallery-control {
        width: 34px;
        height: 40px;
        opacity: 1;
    }

    .product-info p {
        min-height: auto;
    }

    .strength-list article {
        grid-template-columns: 38px 1fr;
        gap: 12px;
        padding: 22px 0;
    }

    .contact-section {
        padding-top: 0;
    }

    .contact-copy,
    .contact-detail-list {
        padding: 30px 23px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 22px;
    }

    .footer-identity,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 38px;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 16px;
        padding: 0;
        border-radius: 50%;
        font-size: 19px;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (max-width: 420px) {
    .corporate-brand strong {
        max-width: 155px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .company-hero h1 {
        font-size: 34px;
    }

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

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

    .category-strip-grid a {
        border-right: 0;
        border-left: 0;
    }

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

    .footer-links,
    .footer-contact,
    .footer-identity {
        grid-column: 1;
    }
}
