:root {
    --black: #0b0b0b;
    --charcoal: #181818;
    --gray: #666;
    --light-gray: #f4f4f2;
    --soft: #fafafa;
    --white: #ffffff;
    --border: #e2e2df;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--black);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    line-height: .9;
    letter-spacing: -1px;
}

.logo strong {
    display: block;
    font-size: 31px;
    font-weight: 800;
}

.logo span {
    display: block;
    font-size: 17px;
    color: #444;
    margin-top: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: #222;
}

.main-nav a {
    position: relative;
}

.main-nav a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: var(--black);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 20px;
    border: 1px solid var(--black);
    background: var(--black);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    transition: .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: #333;
}

.btn.outline {
    background: transparent;
    color: var(--black);
}

.btn.outline:hover {
    background: var(--black);
    color: var(--white);
}

.hero {
    background: var(--soft);
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    min-height: 620px;
    align-items: center;
    gap: 54px;
    padding: 54px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--gray);
    margin-bottom: 18px;
}

.hero h1,
.section-title,
.about h2,
.contact h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    letter-spacing: -.045em;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 84px);
    line-height: .94;
    margin: 0 0 24px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 560px;
    margin: 0 0 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-slider {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 500px;
    background: #ddd;
    box-shadow: 0 28px 80px rgba(0,0,0,.14);
    isolation: isolate;
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.10), rgba(0,0,0,0) 45%),
        linear-gradient(0deg, rgba(0,0,0,.16), rgba(0,0,0,0) 45%);
    pointer-events: none;
    z-index: 2;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 1s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.hero-slider-dots {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-slider-dots span {
    width: 24px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
    transition: .25s ease;
}

.hero-slider-dots span.is-active {
    width: 42px;
    background: #fff;
}

.trust {
    background: var(--black);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    padding: 26px 22px;
    border-right: 1px solid rgba(255,255,255,.14);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item strong {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.trust-item span {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.45;
}

.section {
    padding: 86px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.section-title {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    margin: 0;
}

.section-link {
    font-weight: 800;
    font-size: 14px;
    border-bottom: 2px solid var(--black);
    padding-bottom: 6px;
}

.categories {
    background: var(--white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    transition: .2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.category-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    background: #eee;
}

.category-card div {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

.products {
    background: var(--light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.04);
}

.product-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    background: #eee;
}

.product-info {
    padding: 20px;
}

.product-info small {
    display: block;
    color: var(--gray);
    margin-bottom: 9px;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.product-info p {
    color: #444;
    line-height: 1.55;
    font-size: 14px;
    min-height: 44px;
    margin: 0 0 18px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.product-meta span {
    background: #f1f1ef;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 12px;
    color: #333;
}

.about {
    background: var(--black);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about h2 {
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1;
    margin: 0 0 24px;
}

.about p {
    color: #d7d7d7;
    line-height: 1.8;
    font-size: 17px;
    margin: 0 0 28px;
}

.about-image {
    border-radius: 34px;
    overflow: hidden;
    min-height: 420px;
    background: #222;
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.news-card {
    border: 1px solid var(--border);
    border-radius: 26px;
    overflow: hidden;
    background: var(--white);
}

.news-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
    background: #eee;
}

.news-card div {
    padding: 20px;
}

.news-card small {
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}

.news-card h3 {
    margin: 10px 0;
    font-size: 22px;
    line-height: 1.18;
}

.news-card p {
    color: #444;
    line-height: 1.55;
    font-size: 14px;
}

.catalogs {
    background: var(--light-gray);
}

.catalog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.catalog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 24px;
}

.catalog-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.catalog-card p {
    color: #555;
    line-height: 1.55;
    min-height: 48px;
}

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
}

.contact-panel {
    background: var(--black);
    color: var(--white);
    border-radius: 30px;
    padding: 34px;
}

.contact h2 {
    font-size: 48px;
    line-height: 1;
    margin: 0 0 24px;
}

.contact-list {
    display: grid;
    gap: 18px;
    color: #ddd;
    line-height: 1.5;
}

.map {
    border-radius: 30px;
    overflow: hidden;
    background: #e8e8e5;
    min-height: 430px;
    border: 1px solid var(--border);
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 54px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 42px;
}

.footer p,
.footer a {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
}

.footer h4 {
    margin: 0 0 16px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .12em;
}

.footer a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 22px;
    color: #999;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

.powered-by {
    color: #cfcfcf;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin: 0;
}

.powered-by:hover {
    color: #fff;
}

.powered-by .mg,
.powered-by .sys {
    color: #1d72b8;
    font-weight: 800;
}

.powered-by .dot {
    color: #f28c28;
    font-weight: 900;
    padding: 0 2px;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: .25s ease;
    position: relative;
    z-index: 10000;
}

.mobile-menu-toggle:hover {
    background: var(--black);
    border-color: var(--black);
}

.mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--black);
    display: block;
    transition: transform .25s ease, opacity .2s ease, background .25s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--white);
}

.mobile-menu-toggle.is-open {
    background: var(--black);
    border-color: var(--black);
}

.mobile-menu-toggle.is-open span {
    background: var(--white);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: block;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.38);
    backdrop-filter: blur(0);
    opacity: 0;
    transition: opacity .28s ease, backdrop-filter .28s ease;
}

.mobile-menu.is-open .mobile-menu-backdrop {
    opacity: 1;
    backdrop-filter: blur(6px);
}

.mobile-menu-panel {
    position: absolute;
    top: 14px;
    right: 14px;
    bottom: 14px;
    width: min(430px, calc(100vw - 28px));
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 30px;
    padding: 26px;
    box-shadow: -24px 24px 90px rgba(0,0,0,.24);
    transform: translateX(24px) scale(.97);
    opacity: 0;
    transition: transform .34s cubic-bezier(.22, 1, .36, 1), opacity .28s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open .mobile-menu-panel {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--black);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: .22s ease;
}

.mobile-menu-close:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.mobile-nav {
    display: grid;
    gap: 0;
    margin: 28px 0;
}

.mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    font-size: 28px;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -.035em;
    color: var(--black);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .28s ease, transform .28s ease, color .2s ease;
}

.mobile-menu.is-open .mobile-nav a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.is-open .mobile-nav a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.is-open .mobile-nav a:nth-child(2) { transition-delay: .10s; }
.mobile-menu.is-open .mobile-nav a:nth-child(3) { transition-delay: .14s; }
.mobile-menu.is-open .mobile-nav a:nth-child(4) { transition-delay: .18s; }
.mobile-menu.is-open .mobile-nav a:nth-child(5) { transition-delay: .22s; }

.mobile-nav a:hover {
    color: #555;
    padding-left: 8px;
}

.mobile-menu-cta {
    margin-top: auto;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .28s ease .26s, transform .28s ease .26s;
}

.mobile-menu.is-open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

.hero-full {
    position: relative;
    min-height: 720px;
    padding: 0;
    overflow: hidden;
    background: var(--black);
    border-bottom: 0;
    display: flex;
    align-items: center;
}

.hero-background-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background-slider .hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 7s ease;
}

.hero-background-slider .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-background-slider .hero-slide img {
    width: 100%;
    height: 100%;
    min-height: 720px;
    object-fit: cover;
    object-position: center;
}

.hero-full-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.64) 34%, rgba(0,0,0,.22) 68%, rgba(0,0,0,.12) 100%),
        linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,.05) 55%, rgba(0,0,0,.25));
}

.hero-full-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-copy {
    max-width: 690px;
    color: var(--white);
}

.hero-copy .eyebrow {
    color: rgba(255,255,255,.72);
}

.hero-copy h1 {
    color: var(--white);
    text-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.hero-copy p {
    color: rgba(255,255,255,.86);
    max-width: 620px;
}

.hero-btn-light {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.hero-btn-light:hover {
    background: #f1f1ef;
    color: var(--black);
}

.hero-btn-outline {
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-color: rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.hero-full-dots {
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 3;
}

@media (max-width: 620px) {
    .mobile-menu-panel {
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: calc(100vw - 20px);
        border-radius: 24px;
        padding: 22px;
    }

    .mobile-nav a {
        font-size: 25px;
        padding: 16px 0;
    }
    
}

@media (max-width: 1000px) {
    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid,
    .catalog-list,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        height: auto;
        padding: 18px 0;
    }

    .hero-full {
        min-height: 680px;
        align-items: flex-end;
    }
    
    .hero-background-slider .hero-slide img {
        min-height: 680px;
        object-position: center;
    }
    
    .hero-full-overlay {
        background:
            linear-gradient(0deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.62) 48%, rgba(0,0,0,.22) 100%);
    }
    
    .hero-full-content {
        padding: 120px 0 92px;
    }
    
    .hero-copy {
        max-width: 100%;
    }
    
    .hero-copy h1 {
        font-size: clamp(48px, 15vw, 68px);
    }
    
    .hero-copy p {
        font-size: 16px;
        line-height: 1.65;
    }
    
    .hero-full-dots {
        left: 18px;
        right: auto;
        bottom: 24px;
        transform: none;
    }
    
    .hero-full-dots span {
        width: 18px;
    }
    
    .hero-full-dots span.is-active {
        width: 34px;
    }

    .trust-grid,
    .category-grid,
    .product-grid,
    .news-grid,
    .catalog-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 58px 0;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
    
    
    .hero-actions {
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .08s;
}

.reveal-delay-2 {
    transition-delay: .16s;
}

.reveal-delay-3 {
    transition-delay: .24s;
}

.reveal-delay-4 {
    transition-delay: .32s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

#lista-produtos {
    scroll-margin-top: 110px;
}

.contact-form-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,.045);
}

.contact-form-panel h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 38px;
    line-height: 1;
    letter-spacing: -.035em;
    margin: 0 0 12px;
}

.contact-form-panel p {
    color: #555;
    line-height: 1.6;
    margin: 0 0 24px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 7px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7d7d4;
    border-radius: 14px;
    padding: 13px 15px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.form-message {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
}

.form-message.success {
    background: #ecfff1;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-message.error {
    background: #ffecec;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 760px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel h3 {
        font-size: 32px;
    }
}

.footer .logo strong {
    color: #fff;
}

.footer .logo span {
    color: #cfcfcf;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #000;
}

@media (max-width: 620px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* =========================
   Footer + Social + Back to top
========================= */

.footer {
    background: #111111 !important;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer p,
.footer a {
    color: rgba(255,255,255,.72);
}

.footer h4 {
    color: #ffffff;
}

.footer a:hover {
    color: #ffffff;
}

.footer .logo strong {
    color: #ffffff;
}

.footer .logo span {
    color: #cfcfcf;
}

.footer .footer-social {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 20px !important;
    align-items: center !important;
}

.footer .footer-social a {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,.28) !important;
    background: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    overflow: hidden !important;
    transition: .22s ease !important;
}

.footer .footer-social a svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: block !important;
    fill: #ffffff !important;
    color: #ffffff !important;
    flex: 0 0 18px !important;
}

.footer .footer-social a:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #111111 !important;
    transform: translateY(-2px) !important;
}

.footer .footer-social a:hover svg {
    fill: #111111 !important;
    color: #111111 !important;
}

.footer-bottom {
    margin-top: 34px !important;
    padding: 18px 22px !important;
    border-radius: 18px !important;
    background: #242424 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}

.footer-bottom > span {
    display: inline-flex !important;
    align-items: center !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 13px !important;
    line-height: 1.2 !important;
}

.footer-bottom .powered-by {
    display: inline-flex !important;
    align-items: center !important;
    gap: 2px;
    color: rgba(255,255,255,.72) !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;
    opacity: .62 !important;
    transform: translateY(1px);
}

.footer-bottom .powered-by:hover {
    opacity: 1 !important;
    color: #ffffff !important;
}

.footer-bottom .powered-by .mg,
.footer-bottom .powered-by .sys {
    color: #1d72b8 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.footer-bottom .powered-by .dot {
    color: #f28c28 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    padding: 0 2px;
    line-height: 1 !important;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .22s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: #000;
}


/* =========================
   Header premium on scroll
========================= */

.site-header {
    transition:
        background .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        backdrop-filter .25s ease;
}

.site-header .header-inner {
    transition: min-height .25s ease, padding .25s ease;
}

.site-header .logo {
    transition: transform .25s ease;
}

.site-header .logo strong,
.site-header .logo span,
.site-header .main-nav a,
.site-header .header-cta,
.site-header .mobile-menu-toggle {
    transition:
        color .25s ease,
        background .25s ease,
        border-color .25s ease,
        transform .25s ease,
        opacity .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .82) !important;
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    backdrop-filter: blur(18px) saturate(145%);
    box-shadow: 0 18px 45px rgba(0,0,0,.10) !important;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header.is-scrolled .header-inner {
    min-height: 70px;
}

.site-header.is-scrolled .logo {
    transform: scale(.94);
    transform-origin: left center;
}

.site-header.is-scrolled .logo strong {
    color: #0b0b0b !important;
}

.site-header.is-scrolled .logo span {
    color: #555 !important;
}

.site-header.is-scrolled .main-nav a {
    color: #111 !important;
}

.site-header.is-scrolled .header-cta {
    background: #111 !important;
    color: #fff !important;
    transform: scale(.96);
}

.site-header.is-scrolled .mobile-menu-toggle {
    background: #111 !important;
    border-color: #111 !important;
}

.site-header.is-scrolled .mobile-menu-toggle span {
    background: #fff !important;
}


/* =========================
   Premium card hover
========================= */

.product-card,
.news-card,
.catalog-card,
.category-card,
.catalog-big-card {
    transition:
        transform .26s ease,
        box-shadow .26s ease,
        border-color .26s ease;
    will-change: transform;
}

.product-card:hover,
.news-card:hover,
.catalog-card:hover,
.category-card:hover,
.catalog-big-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(0,0,0,.11);
    border-color: rgba(0,0,0,.16);
}

.product-card img,
.news-card img,
.category-card img {
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover img,
.news-card:hover img,
.category-card:hover img {
    transform: scale(1.04);
}

.product-card,
.news-card,
.category-card {
    isolation: isolate;
}

.product-card img,
.news-card img,
.category-card img {
    transform-origin: center;
}


/* =========================
   Mobile adjustments
========================= */

@media (max-width: 620px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .footer-bottom {
        align-items: flex-start !important;
    }

    .footer-bottom .powered-by {
        transform: none;
    }

    .footer .footer-social a {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        min-height: 38px !important;
        max-width: 38px !important;
        max-height: 38px !important;
    }
}

/* =========================
   Cookies
========================= */
.cookie-notice {
    position: fixed;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    max-width: 760px;
    margin: 0 auto;
    padding: 18px 18px;
    border-radius: 22px;
    background: rgba(17,17,17,.94);
    color: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.25);
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    backdrop-filter: blur(14px);
}

.cookie-notice.is-visible {
    display: flex;
}

.cookie-notice.is-hidden {
    display: none;
}

.cookie-notice strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.cookie-notice p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-notice a {
    color: #fff;
    text-decoration: underline;
}

.cookie-notice button {
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-weight: 800;
    padding: 11px 16px;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 620px) {
    .cookie-notice {
        left: 14px;
        right: 14px;
        bottom: 14px;
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-notice button {
        width: 100%;
    }
}
