@charset "utf-8";

:root {
    --ink: #18342f;
    --ink-soft: #56706a;
    --green: #27695c;
    --green-dark: #1e5148;
    --green-soft: #dcece6;
    --mint: #eef7f3;
    --coral: #e88478;
    --cream: #fbf8f2;
    --white: #ffffff;
    --line: #dfe9e5;
    --shadow-sm: 0 8px 24px rgba(28, 73, 64, .08);
    --shadow-lg: 0 24px 70px rgba(28, 73, 64, .14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

html {
    scroll-behavior: smooth;
}

body.mamanda-home {
    margin: 0;
    color: var(--ink);
    background: var(--cream) !important;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.mamanda-home *,
.mamanda-home *::before,
.mamanda-home *::after {
    box-sizing: border-box;
}

.mamanda-home a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(39, 105, 92, .10);
    background: rgba(251, 248, 242, .94);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 34px;
}

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

.brand img,
.footer-brand img {
    width: 154px;
    height: 52px;
    object-fit: contain;
}

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

.site-nav a {
    position: relative;
    padding: 29px 0 25px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--coral);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--green-dark);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions,
.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button {
    display: inline-flex;
    min-height: 42px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

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

.button--primary {
    color: #fff !important;
    background: var(--green);
    box-shadow: 0 8px 20px rgba(39, 105, 92, .18);
}

.button--primary:hover {
    background: var(--green-dark);
    box-shadow: 0 12px 28px rgba(39, 105, 92, .25);
}

.button--ghost {
    color: var(--green) !important;
    border-color: var(--line);
    background: rgba(255, 255, 255, .55);
}

.button--light {
    color: var(--green-dark) !important;
    border-color: rgba(39, 105, 92, .14);
    background: var(--white);
}

.button--large {
    min-height: 50px;
    padding: 0 24px;
    font-size: 14px;
}

.hero-section {
    width: min(1180px, calc(100% - 40px));
    margin: 52px auto 24px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(39, 105, 92, .10);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.mamanda-home .frameOption {
    width: min(1180px, calc(100% - 40px));
    max-width: 1180px;
    margin: 34px auto 0 !important;
}

.mamanda-home .hero-slider {
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #9bdcc5;
}

.hero-slider .mySlides2 {
    width: 100%;
    height: auto;
    margin: 0 !important;
    overflow: hidden;
}

.hero-slider .mySlides2 img {
    width: 100% !important;
    height: auto !important;
    min-height: 0;
    aspect-ratio: 1366 / 768;
    margin: 0 !important;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
    object-fit: contain;
    object-position: center;
}

.hero-slider center {
    display: none;
}

.hero-intro {
    padding: 46px 52px 50px;
    text-align: center;
    background:
        radial-gradient(circle at 95% 5%, rgba(232, 132, 120, .15), transparent 34%),
        var(--white);
}

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

.hero-intro h1 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.07;
    letter-spacing: -.035em;
}

.hero-intro h1 span {
    color: var(--green);
}

.hero-intro > p:not(.eyebrow) {
    max-width: 470px;
    margin: 22px auto 28px;
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.75;
}

.hero-intro .hero-actions {
    justify-content: center;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 30px;
    justify-content: center;
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 650;
}

.trust-row span::before {
    content: "✓";
    width: 20px;
    height: 20px;
    margin-right: 7px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
}

.availability-wrap {
    scroll-margin-top: 100px;
}

.mamanda-home .availability-card {
    height: auto !important;
    padding: 42px 46px 38px;
    border: 1px solid rgba(39, 105, 92, .10);
    border-radius: var(--radius-lg);
    background: var(--green) !important;
    box-shadow: var(--shadow-lg);
}

.section-heading--center {
    text-align: center;
}

.availability-card .content {
    padding: 0 !important;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500 !important;
}

.availability-card .eyebrow {
    color: #ffd0ca;
}

.section-subtitle {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
}

.availability-grid {
    height: auto !important;
    margin: 30px 0 0 !important;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mamanda-home .field-group {
    width: 100%;
    height: auto;
    float: none;
}

.field-group label {
    margin: 0 0 8px;
    display: block;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.field-group center {
    text-align: left;
}

.mamanda-home .paramSearch {
    width: 100% !important;
    max-width: none !important;
    height: 50px;
    padding: 0 14px !important;
    border: 1px solid rgba(255, 255, 255, .32) !important;
    border-radius: var(--radius-sm) !important;
    outline: none;
    color: var(--ink);
    background: rgba(255, 255, 255, .96);
    font-size: 14px !important;
    text-align: left !important;
}

.mamanda-home .paramSearch:focus {
    border-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, .14);
}

.search-submit {
    height: auto !important;
    margin-top: 18px !important;
    text-align: center;
}

.mamanda-home .buttonSearch {
    min-width: 190px;
    height: 50px;
    margin: 0 !important;
    padding: 0 24px !important;
    border: 0;
    border-radius: 999px !important;
    color: var(--green-dark);
    background: #fff !important;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(9, 44, 37, .20);
    transition: transform .2s ease, box-shadow .2s ease;
}

.mamanda-home .buttonSearch:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(9, 44, 37, .25);
}

.availability-card > div[style*="height : 20px"] {
    display: none;
}

.mamanda-home .product-showcase,
.mamanda-home .promo-showcase,
.mamanda-home .video-showcase,
.mamanda-home .story-showcase {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
}

.section-title {
    padding: 28px 30px 18px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--ink) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px !important;
    font-weight: 500 !important;
}

.section-title a,
.section-title span {
    color: var(--green) !important;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 12px !important;
    font-weight: 800;
    text-decoration: none;
}

.product-showcase > div[style*="float"] {
    margin: 0 !important;
    padding: 4px 24px 30px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.product-showcase > div[style*="float"] a {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: var(--mint);
}

.mamanda-home .frameSectionOtherInfo {
    width: 100% !important;
    height: 210px !important;
    margin: 0 !important;
    display: block !important;
    float: none !important;
    border-radius: 16px !important;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-showcase a:hover .frameSectionOtherInfo {
    transform: scale(1.04);
}

.promo-showcase {
    padding-bottom: 28px;
}

.mamanda-home .frameSectionOtherInfo2 {
    width: min(620px, 82%) !important;
    max-height: 360px;
    margin: 0 auto !important;
    border-radius: var(--radius-md) !important;
    object-fit: cover;
}

.promo-showcase .text,
.story-showcase .text {
    color: var(--ink) !important;
    font-size: 18px;
}

.promo-showcase .dot3,
.story-showcase .dot {
    width: 8px;
    height: 8px;
    background: #c8d8d3;
}

.promo-showcase .active,
.story-showcase .active {
    background: var(--coral);
}

.video-showcase {
    padding: 0 24px 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.video-showcase > .section-title {
    margin: 0 -24px;
    grid-column: 1 / -1;
}

.mamanda-home #videoFrame {
    width: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    float: none !important;
    border: 1px solid var(--line) !important;
    border-radius: var(--radius-md);
    color: var(--ink);
    background: var(--mint);
}

.mamanda-home #iFrameStyle {
    width: 100%;
    height: 250px;
    display: block;
}

#videoFrame > div,
#videoFrame a {
    color: var(--ink) !important;
}

#videoFrame > div[style*="width : 300px"] {
    width: auto !important;
    color: var(--ink-soft) !important;
}

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

.mamanda-home .service-links .frameIndex {
    width: 100% !important;
    min-width: 0 !important;
    height: 255px !important;
    margin: 0 !important;
    padding: 34px 24px;
    display: grid !important;
    place-items: center;
    float: none !important;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white) !important;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.service-links .frameIndex:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mamanda-home .service-links #imageIndex {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 16px !important;
    object-fit: contain;
}

.mamanda-home .service-links #textIndex {
    padding: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.mamanda-home .service-links #textIndexAdd {
    max-width: 280px;
    padding: 9px 0 0;
    color: var(--ink-soft);
    font-size: 12px;
    font-style: normal;
    line-height: 1.55;
}

.mamanda-home .story-showcase {
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-bottom: 28px;
}

.story-showcase #imageArticle {
    width: min(720px, 82%) !important;
    max-height: 430px;
    border: 0 !important;
    border-radius: var(--radius-md) !important;
    object-fit: cover;
}

.bottomMenu {
    position: fixed;
    right: 28px;
    bottom: 24px;
    z-index: 90;
    width: 280px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 18px;
    color: #fff;
    background: var(--green);
    box-shadow: 0 16px 40px rgba(21, 67, 58, .28);
}

#categoryList {
    height: 330px;
    margin: 0;
    padding: 12px 18px;
    display: none;
    overflow: auto;
    color: white;
    background: var(--green-dark);
}

.categoryProduct {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.categoryProduct a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}

#headMenu {
    height: auto;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    color: white;
    background: var(--green);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.site-footer {
    margin-top: 70px;
    padding: 58px 0 0;
    color: rgba(255, 255, 255, .78);
    background: #173c35;
}

.site-footer__inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 70px;
}

.footer-brand img {
    padding: 5px;
    border-radius: 12px;
    background: var(--white);
}

.footer-brand p {
    max-width: 390px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-column h2 {
    margin: 0 0 7px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500;
}

.footer-column p,
.footer-column a {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-decoration: none;
}

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

.site-footer__bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 46px auto 0;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: 12px;
}

@media (max-width: 980px) {
    .site-header__inner {
        gap: 18px;
    }

    .site-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .hero-slider .mySlides2 img {
        min-height: 0;
        aspect-ratio: 1366 / 768;
    }

    .hero-intro {
        padding: 42px;
    }

    .product-showcase > div[style*="float"] {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mamanda-home .frameSectionOtherInfo {
        height: 170px !important;
    }
}

@media (max-width: 760px) {
    .site-header__inner,
    .hero-section,
    .mamanda-home .frameOption,
    .mamanda-home .story-showcase,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(100% - 28px, 1180px);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .brand img {
        width: 126px;
        height: 44px;
    }

    .header-actions {
        gap: 6px;
    }

    .header-actions .button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-section {
        margin-top: 22px;
        border-radius: 22px;
    }

    .mamanda-home .hero-slider {
        width: 100%;
        max-width: none;
        margin: 0 !important;
        border-radius: 22px 22px 0 0;
    }

    .hero-slider .mySlides2,
    .hero-slider .mySlides2 img {
        width: 100% !important;
        border-radius: 22px 22px 0 0 !important;
    }

    .hero-slider .mySlides2 img {
        height: auto !important;
        aspect-ratio: 1366 / 768;
        object-fit: cover;
        object-position: center;
    }

    .hero-intro {
        padding: 30px 24px 34px;
    }

    .hero-intro h1 {
        font-size: 38px;
    }

    .hero-intro > p:not(.eyebrow) {
        margin: 17px auto 23px;
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .availability-card {
        padding: 32px 20px 28px !important;
        border-radius: 22px !important;
    }

    .availability-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .product-showcase > div[style*="float"] {
        padding: 2px 14px 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .mamanda-home .frameSectionOtherInfo {
        height: 165px !important;
    }

    .section-title {
        padding: 22px 18px 15px !important;
        font-size: 23px !important;
    }

    .video-showcase {
        padding: 0 14px 18px;
        grid-template-columns: 1fr;
    }

    .video-showcase > .section-title {
        margin: 0 -14px;
    }

    .mamanda-home #iFrameStyle {
        height: 220px;
    }

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

    .mamanda-home .service-links .frameIndex {
        height: auto !important;
        min-height: 220px;
    }

    .story-showcase #imageArticle,
    .mamanda-home .frameSectionOtherInfo2 {
        width: calc(100% - 28px) !important;
    }

    .bottomMenu {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
    }

    .site-footer {
        margin-top: 48px;
        padding-top: 42px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 420px) {
    .hero-slider .mySlides2 img {
        aspect-ratio: 1366 / 768;
    }

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

    .trust-row {
        flex-direction: column;
    }

    .mamanda-home .frameSectionOtherInfo {
        height: 145px !important;
    }
}

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

    .mamanda-home *,
    .mamanda-home *::before,
    .mamanda-home *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
