/* ============================================
   EGAN FURNITURE - B2B Wholesale Website
   Style: European/American Business Minimalist
   Colors: Black/White/Gray Low Saturation
   ============================================ */

/* ----- CSS Variables ----- */
:root {
  --color-black: #1a1a1a;
  --color-dark: #2d2d2d;
  --color-gray-700: #4a4a4a;
  --color-gray-600: #6b6b6b;
  --color-gray-500: #8a8a8a;
  --color-gray-400: #aaaaaa;
  --color-gray-300: #cccccc;
  --color-gray-200: #e0e0e0;
  --color-gray-100: #f0f0f0;
  --color-white: #ffffff;
  --color-accent: #b8915e;
  --color-accent-hover: #a07d4e;
  --color-accent-light: #f5efe7;
  --color-success: #2e7d32;
  --color-error: #c62828;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1280px;
  --header-height: 80px;
  --section-padding: 100px 0;
  --container-padding: 0 40px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--color-gray-700);
  line-height: 1.7;
}

/* ----- Utility Classes ----- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
}

.section--dark {
  background: var(--color-gray-100);
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.section__title {
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: 0 auto 48px;
}

.text-center {
  text-align: center;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

.btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

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

.btn--outline:hover {
  background: var(--color-black);
  color: var(--color-white);
}

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

.btn--outline-light:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.btn--large {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn--small {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

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

.header__logo-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--color-black);
}

.header__logo-text span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gray-500);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-gray-700);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link--active {
  color: var(--color-black);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
  width: 100%;
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: all 0.3s ease;
}

/* ----- Hero Section ----- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--color-gray-100);
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 50%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bg-placeholder-text {
  color: rgba(255,255,255,0.15);
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 20px;
  text-transform: uppercase;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 0 180px;
  color: var(--color-white);
}

.hero__tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 28px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.6s ease 0.2s forwards;
}

.hero__title {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.7s ease 0.4s forwards;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 1200px;
  margin-bottom: 48px;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.7s ease 0.6s forwards;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.6s ease 0.8s forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hero__stat {
  text-align: center;
  color: var(--color-white);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
}

.hero__stat-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ----- Categories Section ----- */
.categories {
  padding: 100px 0;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--color-gray-100);
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
}

.category-card__placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__placeholder img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.3s ease;
}

.category-card:hover .category-card__image,
.category-card:hover .category-card__placeholder {
  transform: scale(1.05);
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 4px;
}

.category-card__count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-card__arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ----- About/Brand Section ----- */
.brand-showcase {
  padding: 100px 0;
  background: var(--color-white);
}

.brand-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-showcase__image {
  width: 100%;
  height: 500px;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-showcase__content {
  padding-right: 40px;
}

.brand-showcase__title {
  margin-bottom: 20px;
}

.brand-showcase__text {
  margin-bottom: 32px;
}

.brand-showcase__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.brand-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.brand-feature__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.brand-feature__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.brand-feature__desc {
  font-size: 0.85rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

/* ----- Products Grid ----- */
.products-section {
  padding: 100px 0;
  background: var(--color-gray-100);
}

.products__filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-gray-600);
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

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

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-white);
}

.product-card__body {
  padding: 24px;
}

.product-card__sku {
  font-size: 0.75rem;
  color: var(--color-gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--color-black);
}

.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.product-card__feature {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: var(--color-gray-100);
  color: var(--color-gray-600);
  letter-spacing: 0.3px;
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}

.product-card__price {
  font-size: 0.85rem;
  color: var(--color-gray-500);
  font-style: italic;
}

.product-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- CTA Section ----- */
.cta-section {
  padding: 100px 0;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.cta-section__title {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-section__desc {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ----- Dealer Section ----- */
.dealer-section {
  padding: 100px 0;
  background: var(--color-white);
}

.dealer-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.dealer-section__form {
  padding: 48px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  font-size: 0.95rem;
  color: var(--color-black);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}

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

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

/* ----- Footer ----- */
.footer {
  background: var(--color-black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__brand-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
}

.footer__brand-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.85);
}

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

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer__social-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer__contact-icon {
  color: var(--color-accent);
  min-width: 20px;
}

.footer__bottom {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ----- Page Banner ----- */
.page-banner {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: var(--header-height);
  background-color: var(--color-gray-100);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner__title {
  color: var(--color-white);
  font-size: 3rem;
  text-align: center;
}

.page-banner__breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-top: 12px;
  text-align: center;
}

.page-banner__breadcrumb a {
  color: var(--color-accent);
}

/* ----- Product Detail ----- */
.product-detail {
  padding: 80px 0;
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-detail__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail__main-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__info-sku {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-detail__info-name {
  margin-bottom: 16px;
}

.product-detail__info-desc {
  margin-bottom: 32px;
}

.product-detail__specs {
  margin-bottom: 32px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--color-gray-200);
}

.specs-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--color-gray-700);
  width: 40%;
}

.specs-table td:last-child {
  color: var(--color-gray-600);
}

/* ----- Catalog Download ----- */
.catalog-section {
  padding: 100px 0;
}

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

.catalog-card {
  padding: 40px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  transition: all 0.3s ease;
}

.catalog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.catalog-card__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.catalog-card__title {
  margin-bottom: 8px;
}

.catalog-card__desc {
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ----- Contact Page ----- */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-accent);
}

.contact-info__title {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info__text {
  font-size: 0.9rem;
  color: var(--color-gray-600);
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-showcase__inner,
  .dealer-section__inner,
  .product-detail__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  h1 { font-size: 2.5rem; }
  .hero__title { font-size: 3rem; }
  .hero__content { padding: 120px 40px 160px; }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
    --container-padding: 0 20px;
  }
  .header__nav {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
  }
  .header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px;
    border-bottom: 1px solid var(--color-gray-200);
    gap: 16px;
  }
  .hero {
    min-height: 100dvh;
    justify-content: flex-start;
  }
  .hero__content {
    padding: 120px 20px 200px;
    width: 100%;
  }
  .hero__title {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 24px;
  }
  .hero__tag {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
  .hero__desc {
    font-size: 1rem;
    margin-bottom: 36px;
    line-height: 1.7;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 14px;
  }
  .hero__buttons .btn--large {
    width: 100%;
    text-align: center;
  }
  .hero__stats-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
  .hero__stat-number {
    font-size: 1.5rem;
  }
  .hero__stat-label {
    font-size: 0.65rem;
  }
  .categories__grid,
  .products__grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .page-banner {
    height: 300px;
  }
  .page-banner__title {
    font-size: 2rem;
  }
  .process-grid {
    grid-template-columns: 1fr !important;
  }
  .styles-grid {
    grid-template-columns: 1fr !important;
  }
  .styles-grid > div {
    padding: 32px !important;
  }
}

/* ----- Animations ----- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Search Overlay ----- */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-overlay--open {
  display: flex;
}

.search-overlay__inner {
  width: 100%;
  max-width: 700px;
  padding: 0 40px;
}

.search-overlay__input {
  width: 100%;
  padding: 20px 0;
  font-size: 2rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-gray-600);
  color: var(--color-white);
  outline: none;
  font-family: var(--font-heading);
}

.search-overlay__input::placeholder {
  color: rgba(255,255,255,0.4);
}

.search-overlay__close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* ----- Dealer Benefits ----- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-card {
  padding: 40px 32px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.benefit-card__icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.brand-feature__icon {
  color: var(--color-accent);
}

.benefit-card__title {
  margin-bottom: 12px;
}

.benefit-card__desc {
  font-size: 0.9rem;
}

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

/* ----- Inquiry Form Enhancements ----- */
.inquiry-form {
  padding: 48px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
}

.inquiry-form__product {
  padding: 20px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.inquiry-form__product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* ----- Loading Skeleton ----- */
.skeleton {
  background: linear-gradient(90deg, var(--color-gray-200) 25%, var(--color-gray-100) 50%, var(--color-gray-200) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ----- Scroll to top ----- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-accent);
}
