@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&family=Prata&display=swap');

:root {
    --bg: #eef8fc;
    --bg-soft: #dceefa;
    --text: #163344;
    --text-muted: #3f6478;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --line: #bfdceb;
    --brand: #49b9e1;
    --brand-dark: #2d91bc;
    --accent: #1e6f90;
    --ok: #3d7045;
    --shadow: 0 14px 40px rgba(18, 67, 92, 0.14);
    --radius-lg: 22px;
    --radius-md: 14px;
    --container: min(1120px, 92vw);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: linear-gradient(135deg, #06080f 0%, #0f2745 52%, #1f5f9b 100%);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1,
h2 {
    font-family: 'Prata', serif;
}

p {
    margin: 0;
    color: var(--text-muted);
}

a {
    color: inherit;
}

header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(9px);
    background: linear-gradient(135deg, #79d2ef 0%, #4eb7de 45%, #2e98c2 100%);
    border-bottom: 1px solid rgba(255, 245, 232, 0.28);
}

nav {
    width: var(--container);
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Prata', serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    color: #f4e4d2;
    text-transform: uppercase;
}

.logo img {
    height: clamp(48px, 7vw, 74px);
    width: auto;
    max-width: min(58vw, 460px);
    object-fit: contain;
    display: block;
}

.logo span {
    white-space: nowrap;
}

nav ul {
    display: flex;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

nav a {
    text-decoration: none;
    color: #f4e4d2;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    transform: translateY(-1px);
}

.header-showcase {
    background: linear-gradient(135deg, #79d2ef 0%, #4eb7de 45%, #2e98c2 100%);
    border-bottom: 1px solid rgba(255, 245, 232, 0.28);
}

.showcase-nav {
    width: min(1280px, 96vw);
    min-height: 140px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    padding: 18px 0;
}

.header-showcase .logo {
    flex: 0 0 auto;
    border: 0;
    border-radius: 22px;
    padding: 8px 18px;
    background: #f6f3ef;
    box-shadow: 0 0 0 1px rgba(34, 34, 34, 0.18);
}

.header-showcase .logo img {
    height: clamp(64px, 7vw, 112px);
    max-width: min(36vw, 360px);
}

.showcase-divider {
    width: 3px;
    align-self: stretch;
    border-radius: 1px;
    background: linear-gradient(180deg, #2f8db1 0%, #216f90 50%, #185d79 100%);
    box-shadow: 0 0 0 1px rgba(19, 79, 104, 0.25), 0 6px 16px rgba(16, 63, 84, 0.3);
}

.showcase-info {
    color: #ffffff;
    font-family: 'Prata', serif;
    font-size: clamp(1.08rem, 2vw, 1.18rem);
    font-weight: 700;
    line-height: 1.28;
}

.showcase-info p {
    margin: 0;
    color: #ffffff;
}

.showcase-menu {
    margin-left: auto;
}

.showcase-menu a {
    color: #f7f7f7;
    background: #225e7a;
    border-color: rgba(255, 255, 255, 0.12);
}

.showcase-menu a:hover {
    background: #164c65;
    border-color: rgba(255, 255, 255, 0.24);
    color: #ffffff;
}

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
    margin-left: auto;
}

.hamburger-btn span {
    width: 26px;
    height: 3px;
    background: #f7f7f7;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.top-search-wrap {
    background: none(21, 81, 106, 0.92);
    border-bottom: 0px solid rgba(255, 245, 232, 0.22);
}

.home-search-panel {
    width: min(760px, 92vw);
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.home-search-panel input {
    flex: 1;
    max-width: 620px;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(21, 81, 106, 0.92);
    padding: 0 14px;
    font-size: 0.95rem;
    color: #2a2a2a;
}

.home-search-panel input::placeholder {
    color: white;
}

.home-search-panel button {
    min-height: 42px;
    border-radius: 12px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: #225e7a;
    color: #ffffff;
    font-weight: 700;
}

.home-search-panel button:hover,
.home-search-panel button:focus-visible {
    background: #164c65;
}

main {
    width: var(--container);
    margin: 0 auto;
    padding: 34px 0 72px;
}

.banner,
.featured-products,
.why-choose-us,
.products-page,
.about,
.contact,
.cart,
.success,
.checkout-disabled {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(24px, 10vw, 42px);
}

.banner {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
    background: url('Fond.png') center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.banner::before,
.banner::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.banner::before {
    inset: 0;
    background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.12), transparent 42%);
    z-index: 0;
}

.banner::after {
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(to top, rgba(26, 21, 17, 0.34), transparent);
    z-index: 0;
}

.banner > * {
    position: relative;
    z-index: 1;
}

.banner-logo {
    width: min(320px, 62vw);
    height: auto;
    display: block;
    margin-bottom: 6px;
    filter: drop-shadow(0 10px 18px rgba(45, 34, 24, 0.22));
}

.banner h1 {
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    max-width: none;
    margin-inline: auto;
    text-align: center;
    white-space: nowrap;
    color: #f7fcff;
    text-shadow: 0 4px 14px rgba(7, 28, 40, 0.55);
}

.banner p {
    max-width: 56ch;
    font-size: 1.14rem;
    margin-inline: auto;
    text-align: center;
    color: #e8f6ff;
    text-shadow: 0 3px 12px rgba(7, 28, 40, 0.45);
}

.banner-showcase {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-self: stretch;
    width: 100%;
    gap: 10px;
    background: linear-gradient(140deg, #123646 0%, #1f5f79 45%, #12394b 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14), 0 18px 34px rgba(10, 43, 58, 0.34);
    padding: 14px 12px;
}

.banner-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding: 0;
    border-radius: 999px;
    font-size: 1.7rem;
    line-height: 1;
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.banner-arrow:hover {
    background: #185f7b;
}

.banner-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

#banner-counter {
    background: #fff;
    border: 1px solid var(--line);
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--text);
    font-weight: 700;
}

.banner-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
}

.banner-item {
    flex: 0 0 min(420px, 84vw);
    scroll-snap-align: start;
}

.banner-item a {
    display: block;
}

.banner-item img {
    width: 100%;
    height: clamp(230px, 38vw, 430px);
    border-radius: 14px;
    object-fit: contain;
    object-position: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: #0f1316;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22);
    display: block;
}

button,
.btn-link,
.success a,
.cart-actions a {
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quote-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, #7ad1ee 0%, var(--brand) 42%, #2e94bf 100%);
    box-shadow:
        0 14px 26px rgba(21, 84, 112, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.18);
    letter-spacing: 0.01em;
    text-transform: none;
    font-size: 1rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    justify-content: center;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.quote-btn::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.22), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.08));
    opacity: 0.85;
    z-index: -1;
    pointer-events: none;
}

.quote-btn::after {
    content: '→';
    font-size: 1rem;
    line-height: 1;
    opacity: 0.92;
    position: absolute;
    right: 18px;
    margin-left: 0;
    transform: translateX(0);
    transition: transform 0.22s ease;
}

.quote-btn:hover,
.quote-btn:focus-visible {
    background: linear-gradient(135deg, #90dcf5 0%, #3aa7d1 42%, #24789d 100%);
    box-shadow:
        0 18px 34px rgba(16, 68, 91, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.24);
}

.quote-btn:hover::after,
.quote-btn:focus-visible::after {
    transform: translateX(4px);
}

.quote-btn:focus-visible {
    outline: 2px solid rgba(73, 185, 225, 0.55);
    outline-offset: 3px;
}

.product-card .quote-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 6px;
    border-radius: 14px;
}

.banner .quote-btn {
    width: fit-content;
    min-height: 50px;
    padding-inline: 22px 48px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.home-collection-btn {
    margin-bottom: 14px;
}

button:hover,
.btn-link:hover,
.success a:hover,
.cart-actions a:hover {
    transform: translateY(-2px);
    background: var(--brand-dark);
}

.featured-products,
.why-choose-us,
.catalog-hero,
.products-page {
    margin-top: 24px;
}

.catalog-hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 225, 214, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: clamp(22px, 4vw, 38px);
}

    .catalog-logo {
        width: min(240px, 52vw);
        height: auto;
        display: block;
        margin-bottom: 4px;
        object-fit: contain;
    }

.catalog-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(73, 185, 225, 0.16);
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-hero h1 {
    max-width: 16ch;
    font-size: clamp(2rem, 4.4vw, 3.25rem);
    margin-bottom: 12px;
}

.catalog-hero p {
    max-width: 52ch;
    font-size: 1.03rem;
}

.catalog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.catalog-link:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(18, 67, 92, 0.12);
}

.catalog-hero-visual {
    position: relative;
}

.catalog-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 460px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 36px rgba(51, 38, 28, 0.16);
    display: block;
}

.featured-products h2,
.why-choose-us h2,
.products-page h1,
.about h1,
.contact h1,
.cart h1,
.success h1,
.checkout-disabled h1 {
    font-size: clamp(1.7rem, 3.8vw, 2.5rem);
    margin-bottom: 14px;
}

.products-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.featured-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

#featured-products-grid {
    margin-top: 0;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
}

#featured-products-grid .product-card {
    flex: 0 0 min(290px, 75vw);
    scroll-snap-align: start;
}

.featured-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 999px;
    padding: 0;
    font-size: 1.7rem;
    line-height: 1;
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.featured-arrow:hover {
    background: #185f7b;
}

.product-card {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 12px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 66, 90, 0.16);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.product-card h3 {
    font-size: 1.15rem;
}

.product-card p:first-of-type {
    display: inline-flex;
    width: fit-content;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(73, 185, 225, 0.14);
    color: var(--brand-dark);
    font-weight: 800;
    font-size: 0.88rem;
}

.product-card p:nth-of-type(2) {
    color: var(--text-muted);
}

.product-card p {
    font-size: 0.95rem;
}

.filters {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.filters input,
.filters select,
.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    background: #fff;
}

.filters input:focus,
.filters select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #8fd3ec;
    outline-offset: 1px;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.why-choose-us li {
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--line);
}

.about,
.contact,
.cart,
.success,
.checkout-disabled {
    display: grid;
    gap: 16px;
}

.about h2,
.contact h2,
.cart h2,
.checkout-disabled h2 {
    font-family: 'Prata', serif;
    font-size: 1.3rem;
    margin: 8px 0 2px;
}

.about-grid,
.contact-grid,
.cart-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.info-card,
.payment-options,
.contact-info,
.cart-summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
}

.contact form {
    display: grid;
    gap: 12px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-weight: 700;
}

.contact-status {
    min-height: 22px;
    margin-top: 4px;
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-status.is-success {
    color: #1f6a37;
}

.contact-status.is-error {
    color: #a52727;
}

.location-map {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.location-map h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.location-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 10px;
    display: block;
}

#cart-items {
    display: grid;
    gap: 8px;
}

#cart-items > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.cart-actions a.secondary {
    background: var(--accent);
}

.cart-actions button.secondary {
    background: var(--accent);
}

.cart-actions button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.success p,
.checkout-disabled p {
    max-width: 60ch;
}

.site-footer {
    position: relative;
    margin-top: 28px;
    color: #cfcfcf;
    background:
        linear-gradient(160deg, rgba(60, 60, 60, 0.22) 0%, rgba(0, 0, 0, 0) 52%),
        linear-gradient(130deg, #0e2f40 0%, #174b62 40%, #0f3345 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(168deg, transparent 35%, rgba(255, 255, 255, 0.05) 36%, transparent 66%);
    pointer-events: none;
}

.footer-shell {
    width: min(1280px, 96vw);
    margin: 0 auto;
    padding: 24px 0 18px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.6fr 1fr;
    gap: 26px;
}

.footer-col h3,
.footer-contact h4 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: #f2f2f2;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.footer-col li,
.footer-col p,
.footer-col small {
    color: #cbcbcb;
}

.footer-col a {
    color: #cbcbcb;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-contact hr {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
    margin: 12px 0;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    line-height: 0;
    font-size: 0.78rem;
    font-weight: 800;
    color: #f4f4f4;
    background: rgba(255, 255, 255, 0.08);
}

.footer-socials a .social-logo {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-qr {
    margin-top: 12px;
    width: 140px;
    height: 140px;
    border: 4px solid #f4f4f4;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-qr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #d6d6d6;
    font-weight: 600;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.whatsapp-link:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Subtle reveal motion for sections and cards */
.banner,
.featured-products,
.why-choose-us,
.products-page,
.about,
.contact,
.cart,
.success,
.checkout-disabled,
.product-card {
    animation: rise 0.55s ease both;
}

.product-card:nth-child(2) {
    animation-delay: 0.08s;
}

.product-card:nth-child(3) {
    animation-delay: 0.16s;
}

.product-card:nth-child(4) {
    animation-delay: 0.24s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .banner h1 {
        white-space: normal;
    }

    .showcase-nav {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        min-height: 112px;
        padding: 12px 0;
    }

    .header-showcase .logo {
        padding: 6px 10px;
        border-width: 2px;
        border-radius: 18px;
    }

    .header-showcase .logo img {
        height: clamp(54px, 14vw, 78px);
        max-width: min(42vw, 240px);
    }

    .showcase-divider {
        width: 7px;
    }

    .showcase-info {
        font-size: clamp(0.88rem, 2.1vw, 1rem);
    }

    .showcase-menu {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .home-search-panel {
        padding: 8px 0;
    }

    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    nav ul {
        width: 100%;
        justify-content: flex-start;
    }

    .about-grid,
    .contact-grid,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .banner-showcase {
        padding: 10px 8px;
    }

    .banner-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 1.35rem;
    }

    .banner-item {
        flex-basis: min(340px, 86vw);
    }

    .banner-logo {
        width: min(260px, 72vw);
    }

    .catalog-hero {
        grid-template-columns: 1fr;
    }

    .catalog-hero-visual img {
        min-height: 240px;
        max-height: 320px;
    }

    .banner-item img {
        height: clamp(210px, 52vw, 340px);
    }

    #featured-products-grid .product-card {
        flex-basis: min(260px, 82vw);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-follow {
        grid-column: 1 / -1;
    }

    .footer-qr {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 560px) {
    .showcase-nav {
        gap: 8px;
        min-height: auto;
        flex-wrap: nowrap;
        align-items: center;
    }

    .hamburger-btn {
        display: flex;
        position: relative;
        z-index: 12;
        margin-left: 8px;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .showcase-info {
        display: block;
    }

    .showcase-info.show-on-menu {
        display: block;
    }

    .showcase-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #79d2ef 0%, #4eb7de 45%, #2e98c2 100%);
        z-index: 10;
        display: none;
        flex-direction: column;
        list-style: none;
        margin: 0;
        padding: 160px 20px 40px;
        gap: 12px;
        width: 100%;
        height: 100vh;
        max-width: 100%;
    }

    .showcase-menu.is-open {
        display: flex;
    }

    .showcase-menu li {
        margin: 0;
    }

    .showcase-menu a {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-radius: 12px;
        text-align: center;
        background: #225e7a;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }

    .showcase-menu a:active {
        background: #164c65;
        transform: scale(0.98);
    }

    .header-showcase .logo {
        padding: 5px 8px;
        border-radius: 14px;
    }

    .header-showcase .logo img {
        height: clamp(46px, 18vw, 64px);
        max-width: 40vw;
    }

    .showcase-divider {
        width: 5px;
    }

    .showcase-info {
        font-size: clamp(0.74rem, 3.05vw, 0.88rem);
        line-height: 1.2;
        flex: 1 1 auto;
        min-width: 0;
    }

    .showcase-menu {
        gap: 8px;
    }

    .showcase-menu a {
        padding: 8px 11px;
        font-size: 0.88rem;
    }

    .home-search-panel {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0;
    }

    .home-search-panel button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom .whatsapp-link {
        order: 1;
    }

    .footer-bottom p {
        order: 2;
    }

    .footer-qr {
        width: 108px;
        height: 108px;
    }

    main {
        padding-top: 20px;
    }

    .banner,
    .featured-products,
    .why-choose-us,
    .products-page,
    .about,
    .contact,
    .cart,
    .success,
    .checkout-disabled {
        border-radius: 16px;
        padding: 18px;
    }

    .banner-showcase {
        padding: 8px 6px;
    }

    .banner-arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 1.3rem;
    }

    .banner-item {
        flex-basis: min(290px, 88vw);
    }

    .banner-logo {
        width: min(220px, 78vw);
    }

    .catalog-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-link,
    .catalog-hero .quote-btn {
        width: 100%;
    }

    .banner-item img {
        height: clamp(200px, 62vw, 300px);
    }

    .featured-arrow {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: 1.35rem;
        display: none;
    }

    .featured-row {
        grid-template-columns: 1fr;
    }

    #featured-products-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 10px;
        gap: 14px;
    }

    #featured-products-grid .product-card {
        flex: 0 0 min(86vw, 320px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-card img {
        height: 180px;
    }

    .quote-btn {
        font-size: 0.9rem;
        padding: 10px 14px;
        font-weight: 700;
    }

    .product-card .quote-btn {
        padding: 10px 14px;
        min-height: 44px;
    }

    .quote-btn::after {
        font-size: 0.9rem;
        right: 14px;
    }

    .featured-row {
        gap: 8px;
    }

    h1,
    h2,
    h3 {
        font-size: clamp(1.1rem, 4vw, 1.8rem);
    }

    main {
        width: 100%;
        padding: 16px 0 48px;
    }

    .footer-socials a {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .whatsapp-link {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        min-height: 36px;
        padding: 6px 10px;
        flex-wrap: wrap;
    }

    .whatsapp-link img {
        width: 18px;
        height: 18px;
    }
}
