:root {
    --bg-dark: #0c0d10;
    --bg-panel: #16181d;
    --red: #e10600;
    --red-dark: #b80500;
    --gold: #d4a017;
    --text: #1c1c1c;
    --muted: #6b6f76;
    --white: #fff;
    --line: #e6e6e6;
    --header-h: 72px;
    --wa: #25d366;
    --radius: 14px;
    --img-hero: url("https://images.unsplash.com/photo-1449426468159-d96dbf643d28?auto=format&fit=crop&w=1920&q=75");
    --img-engine: url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1200&q=70");
    --img-bike: url("https://images.unsplash.com/photo-1558981806-ec527fa84c39?auto=format&fit=crop&w=1400&q=70");
    --img-apart: url("https://images.unsplash.com/photo-1609630875171-b1321377ee65?auto=format&fit=crop&w=1600&q=70");
    --img-contact: url("https://images.unsplash.com/photo-1558981403-c5f9899a28bc?auto=format&fit=crop&w=1200&q=70");
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Barlow, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}

h1, h2, h3, .logo, .hero-title, .stats-grid strong {
    font-family: Oswald, Barlow, sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: rgba(12, 13, 16, 0.92);
    backdrop-filter: blur(14px);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 3px solid var(--red);
}

.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.logo-img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.logo-text {
    white-space: nowrap;
}

.logo-mark {
    width: 10px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold), var(--red));
    clip-path: polygon(0 0, 100% 18%, 100% 100%, 0 82%);
}

.site-nav {
    display: flex;
    gap: 22px;
    margin-right: auto;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    font-weight: 600;
    opacity: 0.88;
}

.nav-link:hover,
.nav-link.is-active {
    opacity: 1;
    color: #ffd4d0;
}

.nav-phone-mobile {
    display: none;
}

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

.header-call {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-call:hover {
    background: var(--red-dark);
}

.header-phone {
    text-align: right;
    font-size: 0.8rem;
}

.header-phone span {
    display: block;
    opacity: 0.7;
    font-size: 0.72rem;
}

.header-phone a {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 10px 8px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    color: var(--white);
    min-height: min(78vh, 680px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 75% 60%, rgba(225, 6, 0, 0.28) 0%, transparent 52%),
        linear-gradient(180deg, #121318 0%, #07080a 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--red) 0 42%, var(--gold) 42% 58%, var(--red) 58% 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 56px;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
    gap: 28px 40px;
    align-items: center;
}

.hero-copy {
    max-width: none;
    background: rgba(8, 9, 12, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--red);
    padding: 36px 32px 32px;
    border-radius: 4px 14px 14px 4px;
}

.hero-visual {
    position: relative;
    min-height: 280px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    left: 12%;
    right: 12%;
    bottom: 8%;
    height: 28%;
    background: radial-gradient(ellipse, rgba(225, 6, 0, 0.45), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
    z-index: 0;
}

.hero-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    transition: transform 0.7s ease;
    will-change: transform;
}

.hero-slide {
    margin: 0;
    flex: 0 0 100%;
    width: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
}

.hero-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-nav:hover {
    background: var(--red);
}

.hero-nav-prev {
    left: 4px;
}

.hero-nav-next {
    right: 4px;
}

.hero-nav-prev::before,
.hero-nav-next::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.hero-nav-prev::before {
    transform: rotate(-135deg);
}

.hero-nav-next::before {
    transform: rotate(45deg);
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.hero-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--red);
    width: 22px;
    border-radius: 8px;
}

.hero-eyebrow {
    margin: 0 0 14px;
    letter-spacing: 0.28em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
}

.hero-title {
    margin: 0;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-sub {
    margin: 16px 0 26px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 420px;
    color: #ececec;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-wa {
    background: var(--wa);
    color: var(--white);
}

.btn-wa:hover {
    filter: brightness(1.06);
}

.photos {
    background: #0f1115;
    color: var(--white);
    padding: 64px 0 72px;
    text-align: center;
}

.photos-title {
    margin: 0 0 36px;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    text-transform: uppercase;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    text-align: left;
}

.photo-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 280px;
}

.photo-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.photo-card-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 56px 20px 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.photo-card-copy h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    text-transform: uppercase;
}

.photo-card-copy p {
    margin: 0;
    color: #d8d8d8;
    font-size: 0.92rem;
}

.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--wa);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.06);
}

.logo-preview {
    max-height: 64px;
    width: auto;
    background: #111;
    padding: 8px 12px;
    border-radius: 8px;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 1fr 0.95fr;
    min-height: 380px;
}

.split-visual {
    background: var(--img-bike) center / cover no-repeat;
    min-height: 280px;
}

.split-copy {
    background: var(--white);
    display: flex;
    align-items: center;
}

.split-copy-inner {
    padding: 48px 40px;
}

.split-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.split-copy p {
    margin: 0;
    color: #555;
}

.split-stats {
    background: linear-gradient(160deg, var(--red) 0%, #8f0400 100%);
    color: var(--white);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-label {
    margin: 0 0 24px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
}

.stats-grid strong {
    display: block;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.stats-grid .stat-label {
    display: block;
    margin-top: 4px;
    font-size: 0.88rem;
    opacity: 0.95;
}

.products {
    padding: 80px 0 88px;
    text-align: center;
    background:
        radial-gradient(circle at top, #f6f6f6 0, #fff 55%);
}

.products h2,
.apart h2,
.page-block h1,
.product-detail h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    text-transform: uppercase;
}

.section-kicker {
    margin: 10px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 700;
}

.kicker-red {
    color: var(--red);
}

.section-lead {
    max-width: 560px;
    margin: 0 auto 40px;
    color: var(--muted);
}

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

.product-card {
    text-decoration: none;
    color: var(--text);
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 16px 22px;
    box-shadow: 0 10px 30px rgba(12, 13, 16, 0.06);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(12, 13, 16, 0.12);
}

.product-card-image {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background:
        radial-gradient(circle at 50% 80%, rgba(225, 6, 0, 0.12), transparent 55%),
        linear-gradient(180deg, #1a1c22 0%, #0e1014 100%);
    border-radius: 10px;
    padding: 16px;
}

.product-card-image img {
    max-height: 220px;
    object-fit: contain;
}

.product-card h3 {
    margin: 0;
    font-size: 1.15rem;
    text-transform: uppercase;
}

.product-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-card-cta {
    display: inline-block;
    margin-top: 12px;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.apart {
    position: relative;
    color: var(--white);
    text-align: center;
    padding: 88px 0;
    overflow: hidden;
}

.apart-media {
    position: absolute;
    inset: 0;
    background: var(--img-apart) center / cover no-repeat;
    filter: saturate(0.8);
}

.apart-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 9, 12, 0.82);
}

.apart-inner {
    position: relative;
    z-index: 1;
}

.apart h2 {
    margin-bottom: 48px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 28px 18px 24px;
}

.feature-icon {
    color: var(--red);
    display: inline-flex;
    margin-bottom: 12px;
}

.feature h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    text-transform: uppercase;
}

.feature p {
    margin: 0 auto;
    max-width: 280px;
    color: #cfcfcf;
    font-size: 0.92rem;
}

.site-footer {
    background: var(--bg-dark);
    color: #ddd;
    padding: 56px 0 28px;
    font-size: 0.92rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 28px;
}

.footer-brand {
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    text-decoration: none;
    margin: 6px 0;
    color: #ccc;
}

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

.footer-copy {
    border-top: 1px solid #2a2c32;
    padding-top: 18px;
    color: #8a8a8a;
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.site-footer .footer-credit {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: #b0b0b0;
    letter-spacing: 0.04em;
}

.site-footer .footer-credit strong {
    color: var(--white);
    font-weight: 600;
}

.site-footer .footer-credit:hover,
.site-footer .footer-credit:hover strong {
    color: var(--white);
}

.footer-heart {
    color: var(--red);
    flex-shrink: 0;
}

.page-block,
.product-detail {
    padding: 64px 0 88px;
}

.product-detail-grid,
.order-layout,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.product-detail-image {
    background:
        radial-gradient(circle at 50% 80%, rgba(225, 6, 0, 0.16), transparent 50%),
        linear-gradient(180deg, #1c1e24, #0e1014);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border-radius: var(--radius);
}

.product-detail-image img,
.order-product img {
    max-height: 420px;
    object-fit: contain;
}

.product-spec {
    color: var(--muted);
    font-weight: 600;
    margin-top: 8px;
}

.product-description {
    margin: 20px 0 28px;
    color: #444;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-family: Oswald, sans-serif;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 26px;
    border-radius: 4px;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--red);
    border: 1px solid var(--red);
}

.back-link {
    margin-top: 18px;
}

.back-link a {
    color: var(--muted);
}

.order-product {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.order-product img {
    width: 80px;
    height: 100px;
    object-fit: contain;
}

.order-product span {
    display: block;
    color: var(--muted);
}

.form-card,
.contact-panel {
    background: #f4f4f5;
    padding: 28px;
    border-radius: var(--radius);
}

.contact-visual {
    min-height: 280px;
    background: var(--img-contact) center / cover no-repeat;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.contact-visual .contact-panel {
    background: rgba(255, 255, 255, 0.94);
    width: 100%;
}

.form-card label,
.admin-form label {
    display: block;
    margin-bottom: 16px;
    font-size: 0.85rem;
    font-weight: 700;
}

.form-card input,
.admin-form input[type="text"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
    display: block;
    width: 100%;
    margin-top: 6px;
    padding: 12px 14px;
    border: 1px solid #ccc;
    font: inherit;
    background: var(--white);
    border-radius: 6px;
}

table.data select {
    padding: 6px 8px;
    font: inherit;
}

.form-card input[readonly] {
    background: #eee;
    color: #555;
}

.form-errors {
    background: #fff1f1;
    color: #a40000;
    padding: 12px 16px 12px 32px;
    margin: 0 0 16px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.contact-list li {
    margin-bottom: 16px;
}

.contact-list span {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-list a {
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
}

.empty-note {
    color: var(--muted);
}

/* Admin */
.admin-body {
    background: #f3f3f3;
    font-family: Barlow, "Segoe UI", sans-serif;
}

.admin-header {
    background: var(--bg-dark);
    color: var(--white);
}

.admin-header .header-inner {
    justify-content: space-between;
}

.admin-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.admin-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-nav a.is-active,
.admin-nav a:hover {
    color: #ffd0d0;
}

.admin-wrap {
    width: min(1080px, calc(100% - 40px));
    margin: 32px auto 64px;
}

.admin-wrap h1 {
    margin-top: 0;
}

.flash {
    padding: 12px 16px;
    margin-bottom: 20px;
}

.flash-ok {
    background: #e8f6e8;
    color: #146c2e;
}

.flash-err {
    background: #fff1f1;
    color: #a40000;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.card {
    background: var(--white);
    padding: 20px;
}

.card strong {
    display: block;
    font-size: 2rem;
}

.table-wrap {
    overflow-x: auto;
    background: var(--white);
}

table.data {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

table.data th,
table.data td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}

table.data th {
    background: #fafafa;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.thumb {
    width: 48px;
    height: 60px;
    object-fit: contain;
}

.row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.row-actions form {
    display: inline;
}

.link-btn {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: var(--red);
    cursor: pointer;
    text-decoration: none;
}

.login-box {
    width: min(420px, calc(100% - 32px));
    margin: 80px auto;
    background: var(--white);
    padding: 36px;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.status-new { color: var(--red); font-weight: 700; }
.status-contacted { color: #b36b00; font-weight: 700; }
.status-done { color: #146c2e; font-weight: 700; }

@media (max-width: 1024px) {
    .split {
        grid-template-columns: 1fr 1fr;
    }

    .split-visual {
        grid-column: 1 / -1;
        min-height: 240px;
    }
}

@media (max-width: 900px) {
    .product-grid,
    .feature-grid,
    .product-detail-grid,
    .order-layout,
    .contact-layout,
    .footer-inner,
    .cards,
    .photo-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-phone {
        display: none;
    }

    .nav-phone-mobile {
        display: block;
        color: var(--gold);
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: #0c0d10;
        flex-direction: column;
        padding: 8px 20px 22px;
        margin: 0;
        gap: 0;
        border-bottom: 3px solid var(--red);
    }

    .site-nav a {
        padding: 14px 0;
        border-bottom: 1px solid #222;
        min-height: 44px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .header-inner {
        position: relative;
    }

    .hero-inner {
        padding: 36px 0 40px;
        gap: 20px;
    }

    .hero-copy {
        padding: 24px 20px 22px;
        max-width: 100%;
    }

    .hero {
        min-height: 0;
        align-items: center;
    }

    .split-copy-inner,
    .split-stats {
        padding: 36px 24px;
    }
}

@media (max-width: 640px) {
    .split,
    .footer-inner,
    .feature-grid,
    .photo-grid,
    .product-detail-grid,
    .order-layout,
    .contact-layout,
    .cards {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-card {
        padding: 12px 10px 16px;
    }

    .product-card-image {
        min-height: 150px;
        padding: 8px;
    }

    .product-card-image img {
        max-height: 140px;
    }

    .product-card h3 {
        font-size: 0.85rem;
    }

    .photo-card img {
        height: 240px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-visual img,
    .hero-slide img {
        max-height: 280px;
        margin: 0 auto;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .wa-float {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 420px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

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