/* ============================================================
   UNIMACRO LDA
   Corporate / Industrial Commerce Design System
============================================================ */


/* ============================================================
   RESET
============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #102033;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input {
    font-family: "Inter", Arial, sans-serif;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    border: 0;
    outline: none;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

/* Guarantee the "hidden" attribute always wins, even on elements whose
   own class sets "display" (grid/flex) — otherwise the class would beat
   the browser's default [hidden] rule and the element would stay visible. */
[hidden] {
    display: none !important;
}


/* ============================================================
   DESIGN TOKENS
============================================================ */

:root {

    --navy-950: #07111f;
    --navy-900: #0a1628;
    --navy-850: #0d1c31;
    --navy-800: #11243c;

    --blue-700: #125fa8;
    --blue-600: #1769aa;
    --blue-500: #2478bd;
    --blue-100: #eaf3fb;
    --blue-50: #f4f8fc;

    --white: #ffffff;

    --gray-950: #101828;
    --gray-900: #182230;
    --gray-700: #344054;
    --gray-600: #475467;
    --gray-500: #667085;
    --gray-400: #98a2b3;
    --gray-300: #d0d5dd;
    --gray-200: #e4e7ec;
    --gray-100: #f2f4f7;
    --gray-50: #f8fafc;

    --border: #e5eaf0;

    --container: 1240px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.05);
    --shadow-md: 0 12px 30px rgba(16, 24, 40, 0.08);
    --shadow-lg: 0 24px 60px rgba(16, 24, 40, 0.13);

    --transition: 220ms ease;
}


/* ============================================================
   GLOBAL CONTAINER
============================================================ */

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* ============================================================
   TOPBAR
============================================================ */

.topbar {
    background: var(--navy-950);
    color: #b9c5d4;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

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

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.topbar i {
    color: #79a9d6;
    font-size: 11px;
}

.topbar-status {
    color: #c7d4e3;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #48b87a;
    box-shadow: 0 0 0 4px rgba(72, 184, 122, 0.12);
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
}

.header-main {
    height: 78px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
}


/* Brand */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-logo {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.brand-text strong {
    color: var(--navy-900);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.brand-text span {
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* Navigation */

.main-nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0 14px;
    color: var(--gray-600);
    font-size: 13px;
    font-weight: 600;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 2px;
    background: var(--blue-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

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

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


/* Header actions */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-search {
    width: 220px;
    height: 40px;
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.header-search:focus-within {
    border-color: #8db7d9;
    box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.08);
}

.search-input {
    width: 100%;
    height: 100%;
    padding: 0 12px;
    background: transparent;
    color: var(--gray-900);
    font-size: 12px;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-button {
    width: 40px;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    background: transparent;
    transition: color var(--transition);
}

.search-button:hover {
    color: var(--blue-600);
}

.header-contact {
    height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition:
        background var(--transition),
        transform var(--transition);
}

.header-contact:hover {
    background: var(--blue-700);
    transform: translateY(-1px);
}

.header-contact i {
    font-size: 11px;
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    color: var(--navy-900);
    background: var(--gray-100);
    border-radius: 8px;
}


/* ============================================================
   HERO
============================================================ */

.hero-section {
    background: var(--navy-950);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: min(680px, calc(100vh - 116px));
    min-height: 540px;
    overflow: hidden;
}

.slider {
    position: absolute;
    inset: 0;
    display: flex;
    width: 1100%;
    height: 100%;
    transition: transform 600ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center;
}


/* Hero darkening */

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    backgroundo:
        linear-gradient(
            90deg,
            rgba(5, 15, 29, 0.92) 0%,
            rgba(5, 15, 29, 0.70) 30%,
            rgba(5, 15, 29, 0.15) 67%,
            rgba(5, 15, 29, 0.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(5, 15, 29, 0.72) 0%,
            transparent 40%
        );
}


/* Hero content */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(650px, calc(100% - 48px));
    margin-left: max(24px, calc((100vw - var(--container)) / 2));
    color: var(--white);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: #c7d8ea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.hero-eyebrow span {
    width: 26px;
    height: 2px;
    background: #65a6dc;
}

.hero-content h1 {
    max-width: 650px;
    margin-bottom: 22px;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.03;
    letter-spacing: -3px;
    font-weight: 700;
}

.hero-content h1 strong {
    display: block;
    color: #82b9e5;
    font-weight: 700;
}

.hero-content p {
    max-width: 570px;
    margin-bottom: 30px;
    color: #d3deea;
    font-size: 15px;
    line-height: 1.75;
}

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

.hero-primary,
.hero-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition);
}

.hero-primary {
    color: var(--navy-900);
    background: var(--white);
}

.hero-primary:hover {
    transform: translateY(-2px);
    background: #f0f5f9;
}

.hero-secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(8px);
}

.hero-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
}


/* Hero arrows */

.arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(7, 17, 31, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition:
        background var(--transition),
        transform var(--transition);
}

.arrow:hover {
    background: rgba(7, 17, 31, 0.75);
}

.arrow.prev {
    left: 24px;
}

.arrow.next {
    right: 24px;
}


/* ============================================================
   BUSINESS STRIP
============================================================ */

.business-strip {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.business-strip-inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.business-item {
    display: flex;
    align-items: center;
    gap: 13px;
}

.business-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--blue-600);
    background: var(--blue-50);
    border-radius: 10px;
}

.business-icon i {
    font-size: 15px;
}

.business-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 700;
}

.business-item span:not(.status-dot) {
    display: block;
    color: var(--gray-500);
    font-size: 10px;
    line-height: 1.45;
}

.business-divider {
    width: 1px;
    height: 38px;
    background: var(--border);
}


/* ============================================================
   SECTION HEADINGS
============================================================ */

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    align-items: end;
    gap: 50px;
    margin-bottom: 38px;
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-heading h2 {
    max-width: 650px;
    color: var(--navy-900);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -1.7px;
    font-weight: 700;
}

.section-heading > p {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   CATEGORIES
============================================================ */

.categories-section {
    padding: 110px 0 105px;
    background: var(--gray-50);
}

.scroll-menu-container {
    overflow: hidden;
}

.scroll-menu-inner {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 2px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #c7d2df transparent;
}

.scroll-menu-inner::-webkit-scrollbar {
    height: 5px;
}

.scroll-menu-inner::-webkit-scrollbar-track {
    background: transparent;
}

.scroll-menu-inner::-webkit-scrollbar-thumb {
    background: #c7d2df;
    border-radius: 20px;
}

.scroll-menu-item {
    position: relative;
    width: 220px;
    min-width: 220px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 14px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    scroll-snap-align: start;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.scroll-menu-item:hover {
    transform: translateY(-5px);
    border-color: #c3d7e9;
    box-shadow: var(--shadow-md);
}

.category-image {
    width: 100%;
    height: 170px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--gray-50);
    border-radius: 9px;
}

.category-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 350ms ease;
}

.scroll-menu-item:hover .category-image img {
    transform: scale(1.06);
}

.scroll-menu-item > span {
    display: block;
    max-width: 170px;
    margin-top: 13px;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.scroll-menu-item > i {
    position: absolute;
    right: 15px;
    bottom: 17px;
    color: var(--blue-600);
    font-size: 11px;
    transition: transform var(--transition);
}

.scroll-menu-item:hover > i {
    transform: translateX(4px);
}


/* ============================================================
   PRODUCTS
============================================================ */

.products-section {
    padding: 110px 0 115px;
    background: var(--white);
}

.products-heading {
    margin-bottom: 42px;
}


/* Product container */

.product-container {
    width: 100%;
}


/* Product grids */

.product-grid {
    display: grid;
    gap: 18px;
}

.promotional-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 38px;
}

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


/* Generic product card */

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #cbd9e6;
    box-shadow: var(--shadow-md);
}


/* Promo cards */

.promo-image {
    position: relative;
    height: 265px;
    overflow: hidden;
    background: var(--gray-100);
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.promo-card:hover .promo-image img {
    transform: scale(1.035);
}

.promo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 5px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.promo-content {
    padding: 22px;
}

.product-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-600);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.promo-content h3,
.catalogue-content h3 {
    color: var(--gray-950);
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.promo-content p {
    min-height: 66px;
    margin-top: 10px;
    color: var(--gray-500);
    font-size: 11px;
    line-height: 1.65;
}

.promo-price {
    margin: 13px 0;
    color: var(--navy-900);
    font-size: 21px;
    font-weight: 800;
}

.promo-price small {
    color: var(--gray-500);
    font-size: 10px;
    font-weight: 600;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-size: 11px;
    font-weight: 800;
}

.product-link i {
    font-size: 9px;
    transition: transform var(--transition);
}

.product-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   PRODUCT CARD — professional B2B card
   (used by every catalogue/category product grid site-wide)
========================================================= */

.product-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 270px;
    padding: 30px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2f5 100%);
    overflow: hidden;
}

.product-image::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    z-index: 0;
}

.product-image img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 90%;
    height: 210px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e1e6eb;
    border-radius: 6px;
    color: #64717d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

.product-label {
    margin-bottom: 7px;
    color: #71808d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-content h3 {
    margin: 0 0 10px;
    color: #17232d;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
}

.product-spec {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin: 0 0 17px;
}

.product-spec strong {
    color: #17232d;
    font-size: 16px;
    font-weight: 700;
}

.product-spec span {
    color: #89949d;
    font-size: 12px;
}

.product-description {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
    background: #f6f8fa;
    border-radius: 7px;
    color: #596671;
    font-size: 12px;
    line-height: 1.4;
}

.product-description i {
    flex-shrink: 0;
    color: #5d6f7e;
    font-size: 12px;
}

.product-footer {
    margin-top: 20px;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 12px 15px;
    background: #17232d;
    border: 1px solid #17232d;
    border-radius: 7px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.product-btn:hover {
    background: #263746;
    border-color: #263746;
    color: #ffffff;
}

.product-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 1000px) {
    .catalogue-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .product-image {
        height: 245px;
        padding: 25px;
    }

    .product-image img {
        height: 190px;
        max-width: 88%;
    }

    .product-content {
        padding: 19px;
    }

    .product-content h3 {
        font-size: 21px;
    }

    .product-description {
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .product-image {
        height: 220px;
    }

    .product-image img {
        height: 170px;
    }

    .product-content {
        padding: 17px;
    }
}


/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 50px;
    margin-top: 35px;
}

.pagination button,
.pagination a {
    min-width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    padding: 0 10px;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.pagination button:hover,
.pagination a:hover,
.pagination .active {
    color: var(--white);
    background: var(--blue-600);
    border-color: var(--blue-600);
}

.pagination button:disabled {
    color: var(--gray-300);
    background: var(--gray-50);
    border-color: var(--border);
    cursor: not-allowed;
}

.pagination button:disabled:hover {
    color: var(--gray-300);
    background: var(--gray-50);
    border-color: var(--border);
}

.pagination-counter {
    padding: 0 14px;
    color: var(--gray-600);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2px;
}


/* ============================================================
   FEATURED SHOWCASE
============================================================ */

.showcase-section {
    padding: 0 0 110px;
    background: var(--white);
}

.showcase-card {
    position: relative;
    min-height: 550px;
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr) 160px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 55%,
            rgba(37, 104, 161, 0.24),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #081321,
            #0d1f35
        );
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}


/* Brand side */

.showcase-brand-side {
    position: relative;
    z-index: 3;
    padding: 45px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-brand-side.right {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-label {
    color: #8095aa;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.brand-list {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 18px;
}

.brand-list img {
    width: 90px;
    height: 45px;
    object-fit: contain;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.65;
    transition: opacity var(--transition);
}

.brand-list img:hover {
    opacity: 1;
}


/* Showcase center */

.showcase-main {
    position: relative;
    z-index: 3;
    padding: 60px 45px;
    overflow: hidden;
}

.section-label.light {
    color: #7faed4;
}

.showcase-main h2 {
    position: relative;
    z-index: 4;
    max-width: 500px;
    margin-top: 8px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.showcase-main h2 strong {
    display: block;
    color: #7db4df;
    font-weight: 700;
}

.showcase-main > p {
    position: relative;
    z-index: 4;
    max-width: 390px;
    margin-top: 18px;
    color: #aebdcb;
    font-size: 12px;
    line-height: 1.7;
}

.showcase-button {
    position: relative;
    z-index: 5;
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
    padding: 0 16px;
    color: var(--navy-900);
    background: var(--white);
    border-radius: 7px;
    font-size: 10px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background var(--transition);
}

.showcase-button:hover {
    transform: translateY(-2px);
    background: #edf4f9;
}

.showcase-button i {
    font-size: 9px;
}


/* Showcase image */

.showcase-product-image {
    position: absolute;
    right: 0;
    bottom: -30px;
    width: 55%;
    max-width: 550px;
    height: 390px;
    z-index: 2;
    opacity: 0.92;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 25%,
        black 100%
    );
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px 0 0 0;
}


/* ============================================================
   CONTACT CTA
============================================================ */

.contact-cta {
    padding: 85px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.contact-cta-inner {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px 60px;
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.contact-cta-inner::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -180px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(130, 185, 229, 0.1);
    box-shadow:
        0 0 0 50px rgba(130, 185, 229, 0.025),
        0 0 0 100px rgba(130, 185, 229, 0.018);
}

.contact-cta-inner > div {
    position: relative;
    z-index: 2;
}

.contact-cta-inner h2 {
    color: var(--white);
    font-size: clamp(27px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.contact-cta-inner p {
    max-width: 580px;
    margin-top: 12px;
    color: #aebdcb;
    font-size: 12px;
    line-height: 1.7;
}

.cta-button {
    position: relative;
    z-index: 2;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    padding: 0 20px;
    color: var(--navy-900);
    background: var(--white);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    transition:
        transform var(--transition),
        background var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #eef4f8;
}


/* ============================================================
   SIDEBAR
============================================================ */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(3, 10, 20, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 250ms ease,
        visibility 250ms ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2100;
    width: min(420px, 92vw);
    height: 100vh;
    overflow-y: auto;
    background: var(--white);
    box-shadow: -20px 0 60px rgba(5, 15, 29, 0.18);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-brand img {
    width: 43px;
    height: 43px;
    object-fit: contain;
}

.sidebar-brand strong {
    display: block;
    color: var(--navy-900);
    font-size: 15px;
    font-weight: 800;
}

.sidebar-brand span {
    display: block;
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 9px;
}

.sidebar-close {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 8px;
    transition:
        color var(--transition),
        background var(--transition);
}

.sidebar-close:hover {
    color: var(--navy-900);
    background: var(--gray-200);
}

.sidebar-content {
    padding: 28px 25px 35px;
}

.sidebar-heading {
    margin-bottom: 13px;
    color: var(--gray-400);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sidebar-nav a {
    min-height: 52px;
    display: grid;
    grid-template-columns: 38px 1fr 18px;
    align-items: center;
    gap: 9px;
    padding: 0 10px;
    color: var(--gray-700);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    transition:
        color var(--transition),
        background var(--transition);
}

.sidebar-nav a:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.sidebar-nav a > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--blue-600);
    background: var(--blue-50);
    border-radius: 7px;
}

.sidebar-nav a > i {
    color: var(--gray-400);
    font-size: 9px;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
    padding: 20px;
    background: var(--navy-900);
    border-radius: 12px;
}

.sidebar-contact > span {
    margin-bottom: 3px;
    color: #7890a8;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #e5edf5;
    font-size: 10px;
    font-weight: 500;
}

.sidebar-contact a i {
    width: 17px;
    color: #72a9d8;
}

.sidebar-social {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.sidebar-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--gray-600);
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 12px;
    transition:
        color var(--transition),
        background var(--transition),
        transform var(--transition);
}

.sidebar-social a:hover {
    color: var(--white);
    background: var(--blue-600);
    transform: translateY(-2px);
}


/* ============================================================
   LOADING
============================================================ */

.loading-overlay {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    place-items: center;
    align-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
}

.loading-icon {
    color: var(--blue-600);
    font-size: 25px;
    animation: loading-spin 900ms linear infinite;
}

.loading-overlay span {
    color: var(--gray-600);
    font-size: 11px;
    font-weight: 600;
}

@keyframes loading-spin {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================================
   FOOTER
============================================================ */

.main-footer {
    color: #aab8c7;
    background: var(--navy-950);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.75fr 0.9fr;
    gap: 65px;
    padding-top: 75px;
    padding-bottom: 65px;
}

.footer-company {
    max-width: 360px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-brand span {
    color: #6fa8d7;
    font-size: 9px;
    font-weight: 700;
}

.footer-company > p {
    margin-top: 20px;
    color: #8394a7;
    font-size: 11px;
    line-height: 1.8;
}

.footer-flag {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 22px;
    color: #8394a7;
    font-size: 9px;
}

.footer-flag img {
    width: 27px;
    height: 18px;
    object-fit: contain;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #8394a7;
    font-size: 10px;
    line-height: 1.6;
}

.footer-section li > i {
    width: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    color: #679ac5;
    font-size: 10px;
}

.footer-section a {
    transition: color var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-links {
    gap: 10px !important;
}

.footer-links li {
    display: block;
}

.footer-links a {
    color: #8394a7;
    font-size: 10px;
}


/* Footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom-inner > span {
    color: #6d7d8e;
    font-size: 9px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: #8798aa;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    font-size: 10px;
    transition:
        color var(--transition),
        background var(--transition);
}

.footer-social a:hover {
    color: var(--white);
    background: var(--blue-600);
    border-color: var(--blue-600);
}


/* ============================================================
   ACCESSIBILITY / FOCUS
============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid rgba(23, 105, 170, 0.28);
    outline-offset: 3px;
}


/* ============================================================
   LARGE TABLETS
============================================================ */

@media (max-width: 1180px) {

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .header-inner {
        gap: 20px;
    }

    .header-search {
        width: 180px;
    }

    .nav-link {
        padding-inline: 10px;
    }

    .nav-link::after {
        left: 10px;
        right: 10px;
    }

    .catalogue-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-section:last-child {
        grid-column: 2 / 4;
    }
}


/* ============================================================
   TABLETS
============================================================ */

@media (max-width: 900px) {

    .topbar-left span:nth-child(2),
    .topbar-status {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-button {
        display: grid;
    }

    .header-contact span {
        display: none;
    }

    .header-contact {
        width: 40px;
        padding: 0;
        justify-content: center;
    }

    .header-search {
        width: 190px;
    }

    .hero-slider {
        height: 620px;
    }

    .hero-content h1 {
        font-size: clamp(39px, 7vw, 60px);
    }

    .business-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px 0;
        gap: 25px;
    }

    .business-divider {
        display: none;
    }

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

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

    .promo-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 9px);
    }

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

    .showcase-card {
        grid-template-columns: 110px minmax(0, 1fr) 110px;
    }

    .showcase-main {
        padding: 50px 30px;
    }

    .showcase-product-image {
        width: 65%;
        opacity: 0.65;
    }

    .contact-cta-inner {
        padding: 40px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }


    /* Topbar */

    .topbar {
        display: none;
    }


    /* Header */

    .header-main {
        height: 70px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 17px;
    }

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

    .header-search {
        display: none;
    }

    .header-contact {
        display: none;
    }


    /* Hero */

    .hero-slider {
        height: 620px;
        min-height: 560px;
    }

    .hero-content {
        width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        align-self: flex-end;
        padding-bottom: 65px;
    }

    .hero-eyebrow {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .hero-eyebrow span {
        width: 20px;
    }

    .hero-content h1 {
        margin-bottom: 17px;
        font-size: 39px;
        letter-spacing: -1.8px;
    }

    .hero-content p {
        margin-bottom: 23px;
        font-size: 11px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-wrap: wrap;
    }

    .hero-primary,
    .hero-secondary {
        min-height: 43px;
        padding-inline: 15px;
        font-size: 10px;
    }

    .arrow {
        top: 50%;
        width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .arrow.prev {
        left: 12px;
    }

    .arrow.next {
        right: 12px;
    }


    /* Business strip */

    .business-strip-inner {
        grid-template-columns: 1fr 1fr;
        gap: 18px 14px;
        padding: 22px 0;
    }

    .business-item {
        align-items: flex-start;
    }

    .business-icon {
        width: 34px;
        height: 34px;
    }

    .business-item strong {
        font-size: 10px;
    }

    .business-item span:not(.status-dot) {
        font-size: 8px;
    }


    /* Sections */

    .categories-section,
    .products-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 27px;
    }

    .section-label {
        margin-bottom: 9px;
        font-size: 8px;
    }

    .section-heading h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .section-heading > p {
        font-size: 10px;
    }


    /* Categories */

    .scroll-menu-item {
        width: 185px;
        min-width: 185px;
        min-height: 215px;
    }

    .category-image {
        height: 140px;
    }

    .scroll-menu-item > span {
        font-size: 10px;
    }


    /* Products */

    .promotional-grid,
    .catalogue-grid {
        grid-template-columns: 1fr;
    }

    .promo-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .promo-image {
        height: 230px;
    }

    .promo-content {
        padding: 18px;
    }


    /* Showcase */

    .showcase-section {
        padding-bottom: 70px;
    }

    .showcase-card {
        display: block;
        min-height: auto;
    }

    .showcase-brand-side {
        display: none;
    }

    .showcase-main {
        min-height: 560px;
        padding: 42px 25px;
    }

    .showcase-main h2 {
        font-size: 32px;
        letter-spacing: -1.3px;
    }

    .showcase-main > p {
        max-width: 280px;
        font-size: 10px;
    }

    .showcase-product-image {
        right: -30px;
        bottom: -5px;
        width: 100%;
        height: 320px;
        opacity: 0.65;
    }


    /* CTA */

    .contact-cta {
        padding: 60px 0;
    }

    .contact-cta-inner {
        display: block;
        padding: 35px 25px;
    }

    .contact-cta-inner h2 {
        font-size: 30px;
    }

    .contact-cta-inner p {
        font-size: 10px;
    }

    .cta-button {
        margin-top: 25px;
        font-size: 10px;
    }


    /* Sidebar */

    .sidebar {
        width: min(390px, 94vw);
    }


    /* Footer */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 55px;
        padding-bottom: 50px;
    }

    .footer-section:last-child {
        grid-column: auto;
    }

    .footer-company {
        max-width: 100%;
    }

    .footer-bottom-inner {
        min-height: 90px;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 400px) {

    .hero-slider {
        height: 590px;
    }

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

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

    .business-item {
        border-bottom: 1px solid var(--border);
        padding-bottom: 14px;
    }

    .business-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

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

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .showcase-main {
        min-height: 540px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* ============================================================================
   EXTENSION LAYER
   Restyles the legacy per-page markup (category & product-family templates)
   so every page in the site inherits the design system above without
   requiring a full HTML rewrite of each of the ~130 catalogue pages.
============================================================================ */

/* Page banner (category / product-family page title, replaces the old
   orange Verdana "showcase-area/about" block) */

.showcase-area.page-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 104, 161, 0.28), transparent 45%),
        linear-gradient(135deg, #081321, #0d1f35);
    padding: 60px 0 50px;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(calc(100% - 48px), var(--container));
    margin: 0 auto 18px;
    color: #8faccb;
    font-size: 11px;
    font-weight: 600;
}

.page-breadcrumb a {
    color: #8faccb;
    transition: color var(--transition);
}

.page-breadcrumb a:hover {
    color: var(--white);
}

.page-breadcrumb i {
    font-size: 8px;
    color: #5c7998;
}

.about-wrapper.container {
    display: block;
}

.about-text {
    max-width: 700px;
    margin-bottom: 6px;
}

.about-text h2 {
    color: var(--white) !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: clamp(28px, 4vw, 42px) !important;
    line-height: 1.12;
    letter-spacing: -1.4px;
    font-weight: 700 !important;
}

.about-text p {
    margin-top: 12px;
}

.about-text p strong {
    display: block;
    color: #aebdcb !important;
    font-family: "Inter", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.7;
}

/* Category chip strip reused inside the page-hero band */

.page-hero .scroll-menu-container {
    margin-top: 30px;
}

.page-hero .scroll-menu-item {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.page-hero .scroll-menu-item:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.07);
}

.page-hero .category-image {
    background: rgba(255, 255, 255, 0.06);
}

.page-hero .scroll-menu-item > a > p,
.page-hero .scroll-menu-item > span {
    color: var(--white);
}

/* Legacy scroll-menu-item markup: <a href><img><p>label</p></a>, no
   .category-image wrapper — style the children directly */

.scroll-menu-item > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.scroll-menu-item > a > img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    padding: 10px;
    background: var(--gray-50);
    border-radius: 9px;
    transition: transform 350ms ease;
}

.scroll-menu-item:hover > a > img {
    transform: scale(1.06);
}

.scroll-menu-item > a > p {
    display: block;
    max-width: 170px;
    margin-top: 13px;
    color: var(--gray-900);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.scroll-menu-item > a::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    bottom: 17px;
    color: var(--blue-600);
    font-size: 11px;
    transition: transform var(--transition);
}

.scroll-menu-item:hover > a::after {
    transform: translateX(4px);
}

/* "Em Destaque" heading above legacy product grids */

#product-section > h2 {
    width: min(calc(100% - 48px), var(--container));
    margin: 70px auto 34px;
    color: var(--navy-900);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.1;
    letter-spacing: -1.4px;
    font-weight: 700;
}

#product-section {
    display: block;
    padding-bottom: 100px;
}

/* Legacy category/product-family pages reuse the exact same
   .product-image/.product-category/.product-content/.product-btn card
   component defined above — only the grid wrapper needs its own rules
   here since these pages don't carry the .catalogue-grid modifier. */

.product-grid {
    width: min(calc(100% - 48px), 1250px);
    margin: 0 auto;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Pagination hides cards until JS marks them .visible — scoped to
   .paginated-card only, so promo cards are never affected */

.paginated-card {
    display: none;
}

.paginated-card.visible {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1000px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 650px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .about-text h2 {
        font-size: 28px !important;
    }
    #product-section > h2 {
        margin: 45px auto 24px;
        font-size: 24px;
    }
}


/* ============================================================================
   INFO PAGES (about, faq, support) — share the page-hero band above
============================================================================ */

.info-page {
    background: var(--white);
}

.info-hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(37, 104, 161, 0.28), transparent 45%),
        linear-gradient(135deg, #081321, #0d1f35);
    padding: 70px 0 55px;
    text-align: center;
}

.info-hero h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 48px);
    letter-spacing: -1.6px;
    font-weight: 700;
}

.info-hero p {
    max-width: 560px;
    margin: 14px auto 0;
    color: #aebdcb;
    font-size: 13px;
    line-height: 1.7;
}

.info-content {
    width: min(calc(100% - 48px), 860px);
    margin: 0 auto;
    padding: 70px 0 100px;
}

.info-card {
    padding: 34px;
    margin-bottom: 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-card h2 {
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 18px;
    letter-spacing: -0.4px;
}

.info-card p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.85;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
    border-color: #c3d7e9;
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-item h3 i {
    margin-top: 3px;
    color: var(--blue-600);
    font-size: 12px;
}

.faq-item p {
    margin-top: 10px;
    margin-left: 22px;
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.75;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
}

.contact-info-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 8px;
    font-size: 13px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 3px;
    color: var(--navy-900);
    font-size: 12px;
}

.contact-info-item span,
.contact-info-item a {
    display: block;
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.6;
}

.contact-form {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form p {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 13px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-900);
    font-size: 13px;
    font-family: "Inter", Arial, sans-serif;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #8db7d9;
    box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.08);
}

.contact-form button[type="submit"] {
    min-height: 46px;
    padding: 0 24px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: background var(--transition), transform var(--transition);
}

.contact-form button[type="submit"]:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================================
   CART ICON (header) — inserted into .header-actions on every page
============================================================================ */

.header-cart {
    position: relative;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 15px;
    transition: color var(--transition), background var(--transition);
}

.header-cart:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--blue-600);
    border: 2px solid var(--white);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
}


/* ============================================================================
   PRODUCT MODAL — "ver produto + escolher quantidade" (cart.js)
   Reuses the design tokens above; appears on every page.
============================================================================ */

.pm-overlay {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 10, 20, 0.6);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.pm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pm-modal {
    position: relative;
    width: min(720px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(12px);
    transition: transform 220ms ease;
}

.pm-overlay.active .pm-modal {
    transform: translateY(0);
}

.pm-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.pm-close:hover {
    color: var(--navy-900);
    background: var(--gray-100);
}

.pm-body {
    display: grid;
    grid-template-columns: 260px 1fr;
}

.pm-image {
    display: grid;
    place-items: center;
    padding: 30px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef2f5 100%);
}

.pm-image img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
}

.pm-info {
    padding: 32px 30px;
}

.pm-category {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-600);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pm-info h3 {
    color: var(--navy-900);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.pm-desc {
    margin-top: 10px;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.7;
}

.pm-price {
    margin-top: 16px;
}

.pm-price strong {
    color: var(--navy-900);
    font-size: 26px;
    font-weight: 800;
}

.pm-quote-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 16px;
    padding: 8px 12px;
    background: var(--blue-50);
    border-radius: 7px;
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 700;
}

.pm-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.pm-qty-row > span {
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 700;
}

.pm-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pm-qty-stepper button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: var(--gray-50);
    font-size: 16px;
    font-weight: 700;
    transition: background var(--transition);
}

.pm-qty-stepper button:hover {
    background: var(--gray-100);
}

.pm-qty-stepper input {
    width: 48px;
    height: 36px;
    text-align: center;
    color: var(--navy-900);
    font-size: 13px;
    font-weight: 700;
    -moz-appearance: textfield;
}

.pm-qty-stepper input::-webkit-outer-spin-button,
.pm-qty-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pm-action {
    width: 100%;
    min-height: 48px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    font-family: "Inter", Arial, sans-serif;
    transition: background var(--transition), transform var(--transition);
}

.pm-action:hover {
    background: var(--blue-600);
    transform: translateY(-1px);
}

.pm-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--blue-600);
    font-size: 12px;
    font-weight: 700;
}

.pm-quote-form {
    padding: 0 30px 30px;
}

.pm-quote-form h4 {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 14px;
}

.pm-quote-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 700;
}

.pm-quote-form input {
    width: 100%;
    margin-top: 6px;
    padding: 11px 13px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-900);
    font-size: 13px;
    font-family: "Inter", Arial, sans-serif;
}

.pm-quote-form input:focus {
    border-color: #8db7d9;
    box-shadow: 0 0 0 3px rgba(23, 105, 170, 0.08);
}

@media (max-width: 650px) {
    .pm-body {
        grid-template-columns: 1fr;
    }
    .pm-image {
        padding: 20px;
    }
    .pm-image img {
        height: 150px;
    }
    .pm-info {
        padding: 24px 20px;
    }
    .pm-quote-form {
        padding: 0 20px 24px;
    }
}


/* ============================================================================
   PAYMENT PAGE
   Restyles the JS-driven checkout page's own markup (#product-details is
   populated at runtime by the page's embedded script).
============================================================================ */

.payment-page {
    background: var(--gray-50);
}

.payment-page .payment-container {
    max-width: 720px;
    padding-block: 60px 90px;
}

.payment-page .product-card {
    display: block;
    padding: 30px;
    margin-bottom: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.payment-page .product-card h3 {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: 20px;
    letter-spacing: -0.4px;
}

.payment-page .product-card p {
    margin: 8px 0;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.7;
}

.payment-page .product-card img {
    max-width: 100%;
    height: auto;
    margin: 14px 0;
    border-radius: 10px;
}

.payment-page .payment-methods {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.payment-page .payment-methods h2 {
    margin-bottom: 6px;
    color: var(--navy-900);
    font-size: 16px;
}

.payment-page .payment-methods > p {
    margin-bottom: 16px;
    color: var(--gray-500);
    font-size: 12px;
}

.payment-page .payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.payment-page .payment-method label {
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 600;
}

.payment-page .payment-method img {
    width: 40px;
    height: auto;
    margin-left: auto;
}

.payment-page .form-group {
    margin: 18px 0;
}

.payment-page .form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-700);
    font-size: 12px;
    font-weight: 700;
}

.payment-page .form-group input,
.payment-page .form-group textarea {
    width: 100%;
    padding: 11px 13px;
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--gray-900);
    font-size: 13px;
    font-family: "Inter", Arial, sans-serif;
}

.payment-page .form-group textarea {
    height: 100px;
    resize: vertical;
}

.payment-page button {
    min-height: 44px;
    padding: 0 22px;
    color: var(--white);
    background: var(--blue-600);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    font-family: "Inter", Arial, sans-serif;
    transition: background var(--transition), transform var(--transition);
}

.payment-page button:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}
