/* EUROSTAR AUTO SPARE PARTS TRDG - Styles */

:root {
    --color-black: #0a1628;
    --color-white: #ffffff;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e8e8e8;
    --color-gray-400: #999999;
    --color-gray-600: #666666;
    --color-gray-800: #333333;
    --color-gold: #c9a227;
    --color-gold-hover: #b08d1f;
    --color-blue: #1a4b8c;
    --color-blue-hover: #153d72;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-800);
    background: var(--color-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 24px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: none;
    font-family: var(--font-sans);
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    font-weight: 600;
}

.btn--primary:hover {
    background: var(--color-gold-hover);
    border-color: var(--color-gold-hover);
    color: var(--color-black);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn--text {
    background: none;
    border: none;
    color: var(--color-blue);
    padding: 8px 0;
    font-weight: 500;
}

.btn--text:hover {
    text-decoration: underline;
}

.btn--sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(30, 30, 30, 0.98);
    color: var(--color-white);
    padding: 20px 0;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none !important;
}

.cookie-banner__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner p {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    min-width: 300px;
}

.cookie-banner a {
    color: var(--color-blue);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.cookie-banner__actions .btn {
    cursor: pointer;
    pointer-events: auto;
}

/* Top Bar */
.top-bar {
    background: var(--color-gray-100);
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-200);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__locations {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.top-bar__contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
}

.top-bar__contact a {
    color: var(--color-blue);
}

.top-bar__location {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar__location a {
    color: var(--color-blue);
}

.top-bar__location a:hover {
    text-decoration: underline;
}

.top-bar__lang {
    color: var(--color-blue);
    font-weight: 500;
    white-space: nowrap;
}

/* Header */
.header {
    background: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    height: 56px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: invert(72%) sepia(90%) saturate(600%) hue-rotate(5deg) brightness(1.05);
}

.footer__logo-img {
    height: 52px;
    width: auto;
    display: block;
    mix-blend-mode: screen;
    filter: invert(72%) sepia(90%) saturate(600%) hue-rotate(5deg) brightness(1.05);
}

.logo-main {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-white);
    line-height: 1;
}

.logo-accent {
    color: var(--color-gold);
}

.logo-sub {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.header__badge .badge-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 8px 14px;
    text-transform: uppercase;
}

.logo-main--footer {
    font-size: 22px;
}

.logo-sub--footer {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    display: block;
}

/* Navigation */
.nav {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav__inner {
    padding: 0 24px;
}

.nav__list {
    display: flex;
    gap: 0;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: background var(--transition);
}

.nav__link:hover {
    background: rgba(255, 255, 255, 0.08);
}

.nav__icon svg {
    width: 20px;
    height: 20px;
}

/* Hero */
.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 873px;
    overflow: hidden;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero__slide.active {
    opacity: 1;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 80px;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    max-width: 700px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.2;
    max-width: 800px;
    margin-bottom: 32px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    color: var(--color-gray-600);
    margin-bottom: 32px;
    max-width: 700px;
}

/* Section Headers */
.section-header {
    max-width: 820px;
    margin-bottom: 40px;
}

.section-header--compact {
    margin-bottom: 32px;
}

.section-header__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.section-header__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-top: 8px;
}

.section-header__intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-top: 16px;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--color-gray-100);
    padding: 24px 16px;
    text-align: center;
    border-top: 3px solid var(--color-gold);
    border-radius: 4px;
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.stat-card__label {
    font-size: 13px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.models__category-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 24px;
    max-width: 800px;
}

/* Distributions Grid */
.distributions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.distribution-card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.distribution-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.distribution-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distribution-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.distribution-card__body h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.distribution-card__body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    flex: 1;
}

.coverage-block {
    background: var(--color-black);
    color: var(--color-white);
    padding: 32px;
    border-radius: 4px;
    text-align: center;
}

.coverage-block h3 {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.coverage-tags span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.4);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 28px;
    border-radius: 4px;
    transition: background var(--transition), border-color var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-gold);
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.service-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
}

.service-card__link:hover {
    text-decoration: underline;
}

.contact-info__card--highlight {
    border-left-color: var(--color-gold);
    background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 100%);
    color: var(--color-white);
}

.contact-info__card--highlight h3,
.contact-info__card--highlight p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-info__card--highlight a {
    color: var(--color-gold);
}

.contact-hours {
    margin-top: 12px;
    font-size: 13px !important;
    line-height: 1.8 !important;
}

.section-title--light {
    color: var(--color-white);
}

.section-header .section-title {
    margin-bottom: 0;
}

#services .section-header__eyebrow,
#services .section-header__subtitle,
#services .section-header__intro {
    color: rgba(255, 255, 255, 0.85);
}

#services .section-header__intro {
    color: rgba(255, 255, 255, 0.7);
}

#services .section-title {
    color: var(--color-white);
}

.section-title--light {
    color: var(--color-white);
}

/* Models Section */
.models {
    padding: 80px 0;
    background: var(--color-white);
}

.models__tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-gray-200);
}

.models__tabs-scroll {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}

.models__tabs-scroll::-webkit-scrollbar {
    display: none;
}

.models__tabs-list {
    display: flex;
    gap: 0;
    white-space: nowrap;
}

.models__tab {
    background: none;
    border: none;
    padding: 16px 24px;
    font-size: 14px;
    color: var(--color-gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all var(--transition);
    font-family: var(--font-sans);
    white-space: nowrap;
}

.models__tab:hover {
    color: var(--color-black);
}

.models__tab.active {
    color: var(--color-black);
    border-bottom-color: var(--color-gold);
    font-weight: 600;
}

.models__tab-nav {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-gray-600);
    flex-shrink: 0;
    pointer-events: auto;
}

.models__tab-nav svg {
    width: 24px;
    height: 24px;
}

.models__panel {
    display: none;
}

.models__panel.active {
    display: block;
}

.models__carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.models__track-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.models__track-wrapper::-webkit-scrollbar {
    display: none;
}

.models__track {
    display: flex;
    gap: 24px;
}

.model-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    text-align: center;
    scroll-snap-align: start;
}

.model-card__image {
    background: var(--color-gray-100);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 3/2;
}

.model-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-card__name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-black);
}

.model-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

/* Carousel Buttons */
.carousel-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-gray-600);
    font-size: 12px;
    padding: 8px;
    flex-shrink: 0;
    transition: color var(--transition);
    pointer-events: auto;
    z-index: 2;
    position: relative;
}

.carousel-btn:hover {
    color: var(--color-black);
}

.carousel-btn svg {
    width: 28px;
    height: 28px;
}

/* Spotlight */
.spotlight {
    padding: 80px 0;
    background: var(--color-gray-100);
}

.spotlight__header {
    margin-bottom: 40px;
}

.spotlight__strapline {
    font-size: 14px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spotlight__carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.spotlight__track-wrapper {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.spotlight__track-wrapper::-webkit-scrollbar {
    display: none;
}

.spotlight__track {
    display: flex;
    gap: 24px;
}

.spotlight-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 400px;
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.spotlight-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.spotlight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-card__image img {
    transform: scale(1.03);
}

.spotlight-card__content {
    padding: 24px;
}

.spotlight-card__title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-black);
}

.spotlight-card__desc {
    font-size: 14px;
    color: var(--color-gray-600);
    margin-bottom: 16px;
    line-height: 1.5;
}

.spotlight-card__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.spotlight-card__actions .btn--outline {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.spotlight-card__actions .btn--outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

/* Shopping Tools */
.shopping-tools {
    padding: 80px 0;
    background: var(--color-black);
}

.shopping-tools__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.shopping-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    color: var(--color-white);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all var(--transition);
}

.shopping-tool:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.shopping-tool__icon svg {
    width: 32px;
    height: 32px;
}

.shopping-tool__label {
    font-size: 14px;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--color-white);
}

.about__intro {
    max-width: 820px;
    margin-bottom: 48px;
}

.about__eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 12px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-black);
}

.about__lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-gray-600);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.about__section-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black);
    margin: 36px 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-gold);
}

.about__section-title:first-child {
    margin-top: 0;
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-gray-600);
    margin-bottom: 20px;
}

.about__list-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 20px 0 12px;
}

.about__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.about__list li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
}

.about__whatsapp {
    margin-top: 32px;
}

.about__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 140px;
}

.about__card {
    background: var(--color-gray-100);
    padding: 24px;
    border-radius: 4px;
    border-top: 3px solid var(--color-gold);
}

.about__card--gold {
    background: var(--color-black);
    color: var(--color-white);
}

.about__card h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 12px;
    color: inherit;
}

.about__card p,
.about__card li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 8px;
}

.about__card--gold p,
.about__card--gold a {
    color: rgba(255, 255, 255, 0.85);
}

.about__card--gold a:hover {
    color: var(--color-gold);
}

.about__card ul {
    list-style: none;
    padding: 0;
}

.about__card li {
    margin-bottom: 16px;
}

.about__legal-note,
.contact-info__legal-note {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--color-text-muted, #666);
    font-style: italic;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    color: #fff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.about__container {
    max-width: 960px;
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
    background: var(--color-gray-100);
}

.contact-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.contact-info__card {
    background: var(--color-white);
    padding: 32px;
    border-radius: 4px;
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-info__card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--color-black);
}

.contact-info__card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-gray-600);
    margin-bottom: 6px;
}

.contact-info__card a {
    color: var(--color-blue);
}

.contact-info__card a:hover {
    text-decoration: underline;
}

/* Footer contact block */
.footer__contact-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__address p,
.footer__office p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 4px;
}

.footer__address a,
.footer__office a {
    color: var(--color-gold);
}

/* Forms */
.forms-section {
    padding: 80px 0;
    background: var(--color-gray-100);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.form-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-card__title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--color-black);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 16px;
}

.form__group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--color-gray-800);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-sans);
    transition: border-color var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--color-blue);
}

.form__message {
    margin-top: 12px;
    font-size: 14px;
    padding: 8px 0;
}

.form__message.success {
    color: #2e7d32;
}

.form__message.error {
    color: #c62828;
}

/* Footer */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer__list li {
    margin-bottom: 8px;
}

.footer__list a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

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

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

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

.footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 12px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

.back-to-top:hover {
    background: var(--color-gray-800);
}

/* Responsive */
@media (max-width: 1024px) {
    .model-card {
        flex: 0 0 calc(50% - 12px);
    }

    .spotlight-card {
        flex: 0 0 calc(70% - 12px);
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .top-bar__contact {
        flex-direction: column;
        gap: 4px;
    }

    .top-bar__locations {
        display: none;
    }

    .header__badge {
        display: none;
    }

    .header__logo-img {
        height: 44px;
    }

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

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

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

    .about__sidebar {
        position: static;
    }

    .whatsapp-float {
        bottom: 90px;
    }

    .nav__list {
        overflow-x: auto;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .model-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .spotlight-card {
        flex: 0 0 85%;
        min-width: 280px;
    }

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

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

    .form-card {
        padding: 24px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .forms-grid .form-card {
        min-width: 0;
    }
}

/* Products catalogue */
.page-hero {
    background: linear-gradient(135deg, var(--color-navy, #0a1628) 0%, #152238 100%);
    color: #fff;
    padding: 48px 0 40px;
}

.page-hero--compact {
    padding: 32px 0 24px;
}

.page-hero__eyebrow {
    color: var(--color-gold, #c9a227);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.page-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin: 0 0 12px;
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0;
    line-height: 1.6;
}

.page-hero__meta {
    margin-top: 16px;
    color: var(--color-gold, #c9a227);
    font-weight: 500;
}

.products-filters {
    background: #f5f6f8;
    padding: 24px 0;
    border-bottom: 1px solid #e2e5ea;
}

.products-filters__form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

.products-filters__field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-navy, #0a1628);
}

.products-filters__field input,
.products-filters__field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    font: inherit;
    background: #fff;
}

.products-filters__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.products-section {
    padding: 48px 0 64px;
}

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

.product-card {
    background: #fff;
    border: 1px solid #e8ebef;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.1);
    transform: translateY(-2px);
}

.product-card__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    padding: 24px;
    min-height: 160px;
    text-decoration: none;
}

.product-card__image img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.product-card__brand {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-navy, #0a1628);
    color: var(--color-gold, #c9a227);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__part {
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--color-gold, #c9a227);
    font-weight: 600;
    margin: 0 0 6px;
}

.product-card__title {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0 0 8px;
    flex: 1;
}

.product-card__title a {
    color: var(--color-navy, #0a1628);
    text-decoration: none;
}

.product-card__title a:hover {
    color: var(--color-gold, #c9a227);
}

.product-card__category {
    font-size: 0.8rem;
    color: #666;
    margin: 0 0 8px;
}

.product-card__stock {
    font-size: 0.8rem;
    color: #2e7d32;
    margin: 0 0 14px;
}

.product-card__actions {
    display: grid;
    gap: 8px;
}

.products-empty {
    text-align: center;
    padding: 64px 24px;
    background: #f8f9fb;
    border-radius: 8px;
}

.products-empty h2 {
    margin-bottom: 12px;
}

.products-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.products-pagination__link {
    color: var(--color-navy, #0a1628);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
}

.products-pagination__link:hover {
    border-color: var(--color-gold, #c9a227);
    color: var(--color-gold, #c9a227);
}

.products-pagination__info {
    text-align: center;
    color: #555;
}

.products-pagination__info small {
    display: block;
    color: #888;
    margin-top: 4px;
}

.product-detail__back {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.product-detail__back:hover {
    color: var(--color-gold, #c9a227);
}

.product-detail {
    padding: 48px 0 64px;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 48px;
    align-items: start;
}

.product-detail__media {
    background: #f8f9fb;
    border: 1px solid #e8ebef;
    border-radius: 8px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__media img {
    width: 120px;
    height: 120px;
}

.product-detail__meta {
    margin: 0 0 32px;
}

.product-detail__meta > div {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.product-detail__meta dt {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 4px;
}

.product-detail__meta dd {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-navy, #0a1628);
}

.product-detail__stock {
    color: #2e7d32 !important;
}

.product-detail__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-filters__form {
        grid-template-columns: 1fr 1fr;
    }

    .products-filters__field--search {
        grid-column: 1 / -1;
    }

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

    .product-detail__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .products-filters__form {
        grid-template-columns: 1fr;
    }

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