:root {
    --gp-teal: #008b8b;
    --gp-teal-dark: #006666;
    --gp-teal-mid: #009090;
    --gp-mint: #e0f7fa;
    --gp-mint-soft: #b2ebf2;
    --gp-text: #1f2a2d;
    --gp-muted: #5c6b70;
    --gp-border: #e4ecee;
    --gp-radius-sm: 8px;
    --gp-radius-md: 12px;
    --gp-radius-lg: 16px;
    --gp-radius-pill: 999px;
    --gp-shadow-card: 0 4px 18px rgba(0, 0, 0, 0.08);
    --gp-max: 1200px;
    --gp-page-pad: 24px;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    background: #fff;
    font-family: "Montserrat", system-ui, sans-serif;
    color: var(--gp-text);
    font-size: 15px;
    line-height: 1.45;
    overflow-x: hidden;
}

.page {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: none;
}

.container {
    width: min(1280px, calc(100% - var(--gp-page-pad) * 2));
    margin: 0 auto;
}

.hero-stack {
    position: relative;
    overflow: visible;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid var(--gp-border);
}

.topbar-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--gp-teal);
}

.brand-mark {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(200px, 46vw);
    object-fit: contain;
}

.top-icons {
    display: flex;
    gap: 8px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--gp-border);
    background: #fff;
    font-size: 16px;
    color: #4a6066;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.icon-btn:hover {
    background: #f5f9fa;
}

.hero {
    position: relative;
    z-index: 3;
    padding-top: 48px;
    min-height: 580px;
    color: #fff;
    background-color: var(--gp-teal-mid);
}

.hero-separator {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    color: var(--gp-teal-mid);
    pointer-events: none;
}

.hero-separator svg {
    display: block;
    width: 100%;
    height: clamp(80px, 12vw, 160px);
}

.hero-inner {
    position: relative;
    z-index: 3;
    min-height: 520px;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 20px;
    align-items: center;
    padding: 0;
}

.hero-copy {
    grid-column: 1 / span 6;
    max-width: 100%;
    margin-left: 150px;
}

.hero-people {
    grid-column: 7 / span 6;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    max-height: min(580px, 80vh);
    height: auto;
    align-self: end;
    object-fit: contain;
    object-position: center bottom;
    margin-bottom: clamp(-160px, -3vw, -50px);
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.2));
}

.hero h1 {
    margin: 0 0 8px;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero p {
    margin: 0 0 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    max-width: 50ch;
}

.hero-actions {
    display: flex;
    gap: 12px 16px;
    flex-wrap: wrap;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gp-radius-sm);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-hero-solid {
    color: var(--gp-teal-mid);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 14px;
    background: rgb(255, 255, 255);
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-hero-outline {
    color: #fff;
    border: none;
    background: transparent;
}

.hero-chat-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    gap: 8px;
    transition: opacity 0.2s;
}

.hero-chat-link:hover {
    opacity: 0.85;
}

.hero-chat-logo {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.stats {
    background: #fff;
    padding: 160px 0 48px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

.stats strong {
    display: block;
    color: var(--gp-teal);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stats span {
    display: block;
    margin-top: 6px;
    color: var(--gp-teal);
    font-weight: 600;
    font-size: 13px;
    opacity: 0.95;
}

.categories {
    --categories-teal: #0097a7;
    background: var(--categories-teal);
    padding: clamp(40px, 6vw, 56px) 0 64px;
}

.categories h2 {
    text-align: center;
    margin: 0 0 32px;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.card-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1120px;
    margin: 0 auto;
}

.cat-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.cat-card-media {
    background: #cfe8e8;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-body {
    padding: 24px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-card h3 {
    margin: 0;
    color: var(--categories-teal);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.cat-card-hit {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.brands {
    background: #fff;
    padding: 44px 0 48px;
}

.brands h2 {
    text-align: center;
    margin: 0 0 32px;
    color: var(--gp-teal);
    font-size: 24px;
    font-weight: 700;
}

.brand-marquee-viewport {
    overflow: hidden;
    width: 100%;
    padding: 4px 100px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: brand-marquee-slide 42s linear infinite;
}

.brand-marquee-group {
    display: flex;
    align-items: center;
    gap: 71px !important;
    padding: 0 45px !important;
}

.brand-logo img {
    max-height: 72px;
    width: auto;
    object-fit: contain;
}

.support {
    position: relative;
    padding: 52px 0 60px;
    background-color: #e0f7f9;
    background-size: auto, cover;
    background-position: center;
    overflow: hidden;
}

.support-decor {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    height: auto;
    opacity: 0.95;
    z-index: 0;
}

.support-decor--left {
    left: 0;
    top: auto;
    bottom: -20px;
    transform: translateY(0);
    width: 200px;
}

.support-decor--right {
    right: 0px;
}

.support-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.support h2 {
    margin: 0 0 10px;
    color: var(--gp-teal);
    font-size: 28px;
    font-weight: 700;
}

.support-tagline {
    margin: 0 auto 36px;
    max-width: 40ch;
    color: var(--gp-teal);
    font-size: 15px;
    font-weight: 500;
}

.support-visual-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.support-visual-link {
    display: block;
    transition: transform 0.3s ease;
}

.support-visual-link:hover {
    transform: scale(1.015);
}

.support-composite-img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.08));
}

.catalog {
    padding: 34px 0 44px;
    background: #fafbfc;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 24px;
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    background: #fff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: minmax(220px, 26%) 1fr;
    gap: 24px;
}

.filters {
    position: sticky;
    top: 40px;
    align-self: start;
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    padding: 24px 28px 32px;
    background: #fff;
}

.filters__trigger {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.filters label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    margin: 14px 0;
    color: #647481;
    font-weight: 500;
    cursor: pointer;
}

.filters input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #8498a4;
    border-radius: 4px;
}

.filters input[type="checkbox"]:checked {
    background: var(--gp-teal-mid);
    border-color: var(--gp-teal-mid);
}

.products {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.product-card {
    border: 1px solid #eaedf0;
    border-radius: var(--gp-radius-md);
    padding: 12px;
    background: #fff;
    height: 100%;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.pimg {
    height: 212px;
    border-radius: var(--gp-radius-sm);
    background-repeat: no-repeat;
    margin-bottom: 12px;
    background-color: #fff;
    border: 1px solid #eaedf0;
    background-size: contain;
    background-position: center;
}

.stars {
    font-size: 12px;
    color: #e6a800;
    margin-bottom: 6px;
}

.product-card h5 {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: #121c21;
}

.product-card .desc {
    margin: 0 0 12px;
    color: #647481;
    font-size: 12px;
    line-height: 1.45;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 20px;
    font-weight: 800;
    color: #121c21;
}

.cart-fab {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gp-teal-mid);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.promo {
    min-height: 440px;
    display: flex;
    align-items: center;
    padding: 80px 0;
    color: #fff;
}

.promo-copy {
    width: min(1280px, calc(100% - var(--gp-page-pad) * 2));
    margin: 0 auto;
    padding: 0 var(--gp-page-pad);
    max-width: 600px;
    margin-left: max(5%, calc((100% - 1280px)/2 + 24px));
}

.promo h2 {
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    font-weight: 700;
    max-width: 18ch;
    margin: 0px 0px 12px;
}

.promo p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.96;
    max-width: 42ch;
    margin: 0px 0px 20px;
}

.promo-catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--gp-radius-pill);
    padding: 12px 28px;
    text-decoration: none;
}

.promo-catalog-btn:hover {
    background: #fff;
    color: var(--gp-teal-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.newsletter {
    background: #e1f5f7;
    padding: 64px 0 0;
    border-top: 1px solid #d5e9ed;
}

.news-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 56px;
}

.news-actions {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
    justify-content: flex-end;
}

.news-text {
    flex-shrink: 0;
}

.news-text h3 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #1a2a2d;
}

.news-text .sub {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1a2a2d;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 380px;
}

.subscribe-form__field input {
    height: 44px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 10px;
    width: 100%;
    border-radius: var(--gp-radius-pill);
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px 24px;
}

.btn-notify {
    height: 48px;
    padding: 0 32px;
    border-radius: var(--gp-radius-pill);
    background: transparent;
    color: var(--gp-teal-mid);
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid var(--gp-teal-mid);
    cursor: pointer;
    width: fit-content;
    transition: all 0.2s;
}

.btn-notify:hover {
    background: var(--gp-teal-mid);
    color: #fff;
}

.app-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.app-links span {
    font-weight: 800;
    color: #1a2a2d;
    font-size: 14px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.store-badges img {
    height: 40px;
    width: auto;
}

.newsletter-divider {
    border: none;
    border-top: 1px solid #c9dfe3;
    margin: 0;
}

.features-bar {
    padding: 64px 0 80px;
}

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

.feature-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #4a6066;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1a2a2d;
}

.feature-item strong {
    display: block;
    font-weight: 800;
    color: #1a2a2d;
    font-size: 16px;
    margin-bottom: 6px;
}

.feature-item span {
    color: var(--gp-text);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.footer {
    background: var(--gp-teal-mid);
    color: #fff;
    padding: 32px 0;
    text-align: center;
}

.footer-copy {
    font-size: 20px;
    font-weight: 800;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    margin: 0 2px;
}

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

.is-hidden {
    display: none !important;
}

label.search-wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 9px;
}

@media (max-width: 900px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-copy {
        margin-bottom: 40px;
        max-width: 100%;
        display: contents;
    }

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

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

    .hero-people {
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        margin-top: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 40px 0;
        text-align: center;
    }

    .stats {
        background: #fff;
        padding: 86px 0 11px;
        position: relative;
        z-index: 1;
    }

    .stats-grid div strong {
        font-size: 24px;
    }

    .stats-grid div span {
        font-size: 10px;
    }

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

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

    .filters {
        display: none !important;
    }

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

    .newsletter-inner {
        flex-direction: column;
        text-align: left;
        padding: 48px var(--gp-page-pad);
    }

    .news-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .subscribe-form,
    .app-links {
        max-width: 100%;
        align-items: flex-start;
        text-align: left;
    }

    .store-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo {
        min-height: auto;
        text-align: center;
        padding: 60px 0;
        background-position: center bottom;
    }

    .promo-copy {
        margin: 0 auto;
        text-align: center;
    }

    .news-inner {
        display: block;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding-bottom: 1px;
    }

    .news-actions {
        display: block;
    }

    .subscribe-form__field input {
        width: 139%;
    }

    .hero-inner {
        display: block;
    }

    .brand-marquee-group {
        display: flex;
        align-items: center;
        gap: 71px !important;
        flex-direction: column;
        padding: 0 14px !important;
    }

    h2#catalog-heading {
        text-align: center;
        font-weight: 800;
        font-size: 21px;
        margin: 0 0 8px;
    }

    .support-composite-img {
        width: 100%;
    }

    .support-decor {
        position: absolute;
        top: 5% !important;
        transform: translateY(-50%);
        width: 89px;
    }
}
