* {
    box-sizing: border-box;
}

:root {
    --bg: #f2f2f2;
    --text: #131313;
    --muted: #5f5f5f;
    --line: #dedede;
    --accent: #ed5a52;
    --black: #070707;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

p {
    font-size: 16px !important;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1220px, 92%);
    margin: 0 auto;
}

.topbar {
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 75px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #1e1e1e;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.24s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.nav-dropdown {
    position: static;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    font-size: 10px;
    transform: translateY(-1px);
    transition: transform 0.22s ease;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    width: min(940px, calc(100vw - 80px));
    background: #e7e7e7;
    border-radius: 14px;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    padding: 34px 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
    transform: translateY(-1px) rotate(180deg);
}

.nav-dropdown-col h5 {
    margin: 0 0 16px;
    font-size: 22px;
    color: #171717;
}

.nav-dropdown-col a {
    display: block;
    margin: 0 0 10px;
    font-size: 13px;
    color: #5c6369;
    line-height: 1.35;
}

.nav-dropdown-col a:hover {
    color: #222;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-search-toggle {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #1d1d1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-search-toggle svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-search-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 260px;
    padding: 8px;
    border: 1px solid #d2d2d2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    z-index: 96;
}

.nav-search-input {
    width: 100%;
    height: 38px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 8px 11px;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cbcbcb;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    background: #fff;
    color: #232323;
    text-decoration: none;
    transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-danger {
    color: var(--accent);
    border-color: var(--accent);
}

.btn-danger:hover {
    background: var(--accent);
    color: #fff;
}

.hero {
    background: var(--black);
    color: #fff;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(400px, 1.2fr);
    align-items: center;
    gap: 28px;
    min-height: 520px;
    padding: 24px 0;
}

.hero-copy h1 {
    margin: 0 0 16px;
    font-size: clamp(32px, 4.3vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.6px;
}

.hero-copy p {
    margin: 0 0 24px;
    color: #cecece;
    font-size: 15px;
    line-height: 1.55;
    max-width: 460px;
}

.hero-art {
    min-height: 390px;
    display: grid;
    align-items: center;
    justify-items: end;
}

.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease;
}

.hero-slide {
    min-width: 100%;
    min-height: 390px;
    display: grid;
    align-items: center;
    justify-items: end;
}

.hero-main-image {
    width: min(100%, 620px);
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.45));
}

.usp-strip {
    background: #e7e7e7;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 52px;
    align-items: center;
    text-align: center;
}

.usp-grid p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    position: relative;
}

.usp-grid p::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #222;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.trust-strip {
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
}

.trust-grid {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.trust-grid img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.logos {
    background: #fff;
    border-bottom: 1px solid #e6e6e6;
}

.logos-grid {
    min-height: 122px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 16px;
}

.logos-grid img {
    max-height: 36px;
    object-fit: contain;
    justify-self: center;
    filter: grayscale(100%);
    opacity: 0.78;
    transition: filter 0.28s ease, opacity 0.28s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.products,
.order-process,
.about-block,
.faq-block,
.gallery-block {
    padding: 64px 0;
}

.products {
    background: #f4f4f4;
}

h2 {
    margin: 0;
    text-align: center;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.8px;
}

.section-sub {
    margin: 8px 0 30px;
    text-align: center;
    color: var(--muted);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.card {
    background: #ececec;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    padding: 14px;
    text-align: center;
    min-height: 380px;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.14);
}

.thumb {
    width: 100%;
    height: 190px;
    object-fit: contain;
    margin-bottom: 12px;
}

.card h3 {
    margin: 0 0 8px;
    font-size: 31px;
    line-height: 1.1;
}

.card p {
    margin: 0;
    color: #4a4a4a;
    font-size: 13px;
    line-height: 1.52;
}

.order-process {
    background: #ececec;
}

.steps {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.steps article {
    text-align: center;
    padding: 10px;
}

.step-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 86px;
    height: 86px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.steps h3 {
    margin: 0 0 8px;
    font-size: 24px;
}

.steps p {
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.about-block {
    background: #f5f5f5;
}

.about-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 26px;
}

.about-grid h3 {
    margin: 0 0 8px;
    font-size: 30px;
}

.about-grid p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.56;
    color: #444;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #c3c3c3;
}

.cta-band {
    background: #0c0c0c;
    color: #fff;
    padding: 0;
}

.cta-layout {
    display: grid;
    grid-template-columns: minmax(200px, 20%) 1fr minmax(200px, 20%);
    min-height: 260px;
}

.cta-media {
    overflow: hidden;
}

.cta-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-inner {
    background: #000;
    text-align: center;
    padding: 42px 24px;
    display: grid;
    align-content: center;
    justify-items: center;
}

.cta-inner h2 {
    color: #fff;
    font-size: clamp(30px, 2.9vw, 52px);
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.1;
}

.cta-inner p {
    margin: 14px 0 24px;
    color: #d8d8d8;
    font-size: 20px;
}

.faq-block {
    background: #f5f5f5;
}

.faq-list {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #d8d8d8;
}

.faq-list details {
    border-bottom: 1px solid #dfdfdf;
    overflow: hidden;
}

.faq-list details:last-child {
    border-bottom: 0;
}

.faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 16px;
    font-weight: 700;
    position: relative;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    line-height: 1;
    color: #4f4f4f;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 0;
    padding: 0 16px 16px;
    font-size: 14px;
    color: #545454;
    line-height: 1.55;
}

.gallery-block {
    background: #f2f2f2;
}

.gallery-block .container {
    width: min(1880px, 98%);
}

.gallery-carousel {
    margin-top: 28px;
    overflow: hidden;
    position: relative;
    padding: 0 34px;
}

.gallery-track {
    display: flex;
    transition: transform 0.7s ease;
}

.gallery-slide {
    flex: 0 0 20%;
    padding: 0 6px;
}

.gallery-item {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 7px;
    border: 1px solid #bdbdbd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.2);
}

.gallery-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #c8c8c8;
    background: rgba(255, 255, 255, 0.95);
    color: #2e2e2e;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gallery-handle:hover {
    background: #222;
    color: #fff;
}

.gallery-handle-prev {
    left: 2px;
}

.gallery-handle-next {
    right: 2px;
}

.reviews {
    background: #ededed;
    border-top: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 28px 0;
    overflow: hidden;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: center;
}

.reviews-summary {
    text-align: center;
}

.reviews-summary h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}

.review-stars-boxes {
    display: inline-flex;
    gap: 4px;
    margin-bottom: 10px;
}

.review-stars-boxes span {
    width: 26px;
    height: 26px;
    background: #00b67a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 15px;
    line-height: 1;
}

.reviews-summary p {
    margin: 0 0 8px;
    font-size: 14px;
}

.reviews-summary p a {
    color: #333;
}

.reviews-summary img {
    width: 170px;
    margin: 0 auto;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 52px;
}

.reviews-track {
    display: flex;
    transition: transform 0.65s ease;
}

.review-slide {
    flex: 0 0 33.3333%;
    padding: 0 14px;
    min-width: 0;
}

.review-stars {
    color: #00b67a;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.review-verified {
    color: #666;
    font-size: 14px;
    vertical-align: middle;
    margin-left: 5px;
}

.review-slide h4 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.review-slide p {
    margin: 0 0 6px;
    font-size: 14px;
    color: #2f2f2f;
    line-height: 1.45;
}

.review-meta {
    color: #595959;
    font-size: 14px;
}

.reviews-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #777;
    background: #e5e5e5;
    color: #1f1f1f;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reviews-handle-prev {
    left: 10px;
}

.reviews-handle-next {
    right: 10px;
}

.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 24px;
    padding-bottom: 34px;
}

.footer-logo {
    margin: 0 0 18px;
    display: inline-flex;
}

.footer-logo img {
    width: 100px;
}

.footer-grid h4 {
    margin: 0 0 12px;
    font-size: 22px;
}

.footer-grid p,
.footer-grid a {
    margin: 0 0 9px;
    font-size: 20px;
    color: #cccccc;
    text-decoration: none;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(3, 42px);
    gap: 12px 12px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid #bfbfbf;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: lowercase;
}

.footer-links-col a {
    display: block;
    position: relative;
    padding-left: 16px;
}

.footer-links-col a::before {
    content: "\25B8";
    position: absolute;
    left: 0;
    top: 1px;
    color: #fff;
    font-size: 12px;
}

.footer-contact-col .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.35;
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 3px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #fff;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-bottom {
    border-top: 1px solid #252525;
    text-align: center;
    color: #c8c8c8;
    padding: 18px 12px 22px;
    font-size: 16px;
}

.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 34px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #5adb48;
    color: #0b1f0a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    z-index: 60;
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: #0e2a0a;
}

.gs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 95;
}

.gs-drawer {
    position: fixed;
    left: 0;
    top: 0;
    width: min(450px, 92vw);
    height: 100vh;
    background: #efefef;
    color: #222;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform 0.32s ease;
    padding: 20px 20px 26px;
}

.gs-drawer.is-open {
    transform: translateX(0);
}

.gs-head {
    position: relative;
    padding: 6px 0 10px;
}

.gs-head h2 {
    margin: 0;
    text-align: center;
    font-size: 36px;
}

.gs-close {
    position: absolute;
    right: 0;
    top: 0;
    border: 0;
    background: transparent;
    font-size: 34px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}

.gs-note {
    margin: 0 0 12px;
    color: #5c5c5c;
    font-size: 14px;
}

.gs-form label {
    display: block;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #4a4a4a;
}

.gs-form label span {
    color: #b71d1d;
}

.gs-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 12px;
}

.gs-form input,
.gs-form select,
.gs-form textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #8f8f8f;
    border-radius: 2px;
    background: #fff;
    font-size: 13px;
    padding: 7px 8px;
    color: #222;
}

.gs-form textarea {
    resize: vertical;
    min-height: 66px;
}

.gs-checkbox {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400 !important;
    font-size: 12px !important;
    color: #555 !important;
}

.gs-checkbox input {
    width: 14px;
    margin-top: 2px;
}

.gs-disclaimer {
    margin: 0 0 12px;
    font-size: 11px;
    color: #6a6a6a;
    border: 1px solid #d0d0d0;
    background: #f8f8f8;
    padding: 8px;
}

.gs-captcha {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #4a4a4a;
}

.gs-submit {
    border: 0;
    border-radius: 6px;
    background: #111;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px 20px;
    cursor: pointer;
}

.footer-grid a:hover {
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.64s ease, transform 0.64s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .steps,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid h4 {
        font-size: 22px;
    }

    .footer-grid p,
    .footer-grid a {
        font-size: 18px;
    }

    .review-slide {
        flex-basis: 50%;
    }

    .review-slide h4 {
        font-size: 20px;
    }

    .review-slide p,
    .review-meta {
        font-size: 14px;
    }

    .review-stars {
        font-size: 17px;
    }

    .review-verified {
        font-size: 13px;
    }

    .gallery-slide {
        flex-basis: 33.3333%;
    }

    .gallery-item {
        height: 300px;
    }

    .main-nav,
    .header-actions {
        display: none;
    }

    .gs-head h2 {
        font-size: 30px;
    }

    .hero-art {
        min-height: 300px;
        justify-items: center;
    }

    .hero-slide {
        min-height: 300px;
        justify-items: center;
    }

    .hero-main-image {
        width: min(100%, 500px);
        max-height: 300px;
    }
}

@media (max-width: 760px) {
    .usp-grid,
    .card-grid,
    .steps,
    .footer-grid,
    .logos-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 22px;
    }

    .footer-grid h4 {
        font-size: 22px;
    }

    .footer-grid p,
    .footer-grid a {
        font-size: 16px;
    }

    .footer-logo img {
        width: 150px;
    }

    .whatsapp-float {
        left: 14px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .gs-grid-2 {
        grid-template-columns: 1fr;
    }

    .reviews-carousel {
        padding: 0 40px;
    }

    .review-slide {
        flex-basis: 100%;
        padding: 0 8px;
    }

    .reviews-summary h3 {
        font-size: 20px;
    }

    .review-stars-boxes span {
        width: 30px;
        height: 30px;
        font-size: 19px;
    }

    .review-slide h4 {
        font-size: 19px;
    }

    .review-slide p,
    .review-meta {
        font-size: 14px;
    }

    .review-stars,
    .review-verified {
        font-size: 13px;
    }

    .gallery-slide {
        flex-basis: 100%;
    }

    .gallery-carousel {
        padding: 0 28px;
    }

    .gallery-item {
        height: 260px;
    }

    .gallery-handle {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .hero-grid {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-art {
        min-height: 240px;
    }

    .hero-slide {
        min-height: 240px;
    }

    .hero-main-image {
        width: min(100%, 340px);
        max-height: 240px;
    }

    .cta-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .cta-media {
        display: none;
    }

    .cta-inner {
        padding: 34px 18px;
    }

    .cta-inner p {
        font-size: 16px;
    }

    .trust-grid {
        min-height: 96px;
        gap: 14px;
        flex-wrap: wrap;
    }

    .trust-grid img {
        height: 42px;
    }
}
