/* =============================================
   ODAS GROUP — Automotive Oils Wholesale
   Color Palette:
   --purple:      #7B2D8B  (primary brand)
   --purple-dark: #5A1F67
   --purple-light:#9B3DA8
   --black:       #1A1A1A
   --dark:        #2D2D2D
   --gold:        #D4A017  (accent, oil color)
   --white:       #FFFFFF
   --gray-light:  #F5F5F7
   --gray-mid:    #E0E0E0
   --gray-text:   #666
============================================= */

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

:root {
  --purple:       #7B2D8B;
  --purple-dark:  #5A1F67;
  --purple-light: #9B3DA8;
  --purple-glow:  rgba(123, 45, 139, 0.25);
  --black:        #111111;
  --dark:         #1E1E2E;
  --gold:         #D4920A;
  --gold-light:   #F0B429;
  --white:        #FFFFFF;
  --gray-light:   #F6F4F8;
  --gray-mid:     #E5E0EA;
  --gray-text:    #6b6b80;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.16);
  --transition:   0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== TOP BAR ===================== */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.topbar__location, .topbar__hours {
  display: flex;
  align-items: center;
  gap: 5px;
}
.topbar__location svg, .topbar__hours svg { opacity: 0.7; }
.topbar__sep { opacity: 0.3; }
.topbar__email { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.topbar__email:hover { color: var(--purple-light); }
.topbar__phone {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.topbar__phone:hover { color: var(--purple-light); }

/* ===================== HEADER ===================== */
.header {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }
.logo__img { height: 52px; width: auto; display: block; }
.logo__img--footer { filter: brightness(0) invert(1) opacity(0.85); }
.logo__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--purple);
  margin-top: 8px;
  align-self: flex-end;
  padding-bottom: 4px;
}
.logo__subtitle--white { color: rgba(255,255,255,0.75); }

/* SEARCH */
.header__search {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header__search:focus-within {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-glow);
  background: var(--white);
}
.search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--black);
  outline: none;
}
.search__input::placeholder { color: #aaa; }
.search__btn {
  background: var(--purple);
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
  transition: background var(--transition);
}
.search__btn:hover { background: var(--purple-dark); }

/* HEADER ACTIONS */
.header__actions { flex-shrink: 0; }
.header__phone-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--purple);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.header__phone-cta:hover { background: var(--purple-dark); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--purple);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.navbar__inner {
  display: flex;
  align-items: stretch;
  height: 52px;
  gap: 0;
}
.navbar__catalog {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: white;
  border: none;
  padding: 0 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.navbar__catalog:hover, .navbar__catalog.active { background: #333; }
.navbar__links {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.navbar__links li {
  display: flex;
  align-items: stretch;
}
.navbar__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.9);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold-light);
  transition: width var(--transition);
  border-radius: 2px 2px 0 0;
}
.navbar__link:hover { background: rgba(255,255,255,0.1); color: white; }
.navbar__link:hover::after { width: 60%; }

/* ===================== CATALOG DROPDOWN ===================== */
.catalog-dropdown {
  position: fixed;
  top: 168px;
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--purple);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.catalog-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.catalog-dropdown__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 0;
  padding: 28px 0;
}
.catalog-col { padding: 0 24px 0 24px; border-right: 1px solid var(--gray-mid); }
.catalog-col:last-child { border-right: none; }
.catalog-col__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--purple-glow);
}
.catalog-col ul { display: flex; flex-direction: column; gap: 8px; }
.catalog-col ul a {
  font-size: 0.88rem;
  color: var(--gray-text);
  transition: color var(--transition), padding-left var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.catalog-col ul a::before {
  content: '→';
  font-size: 0.75rem;
  color: var(--purple);
  opacity: 0;
  transition: opacity var(--transition);
}
.catalog-col ul a:hover { color: var(--purple); padding-left: 4px; }
.catalog-col ul a:hover::before { opacity: 1; }
.catalog-col--promo { display: flex; align-items: center; }
.catalog-promo {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: white;
  padding: 20px;
  border-radius: var(--radius);
  width: 100%;
}
.catalog-promo__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.catalog-promo h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.catalog-promo p { font-size: 0.8rem; opacity: 0.8; margin-bottom: 14px; line-height: 1.5; }
.catalog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.catalog-overlay.open { opacity: 1; visibility: visible; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}
.btn--white {
  background: white;
  color: var(--purple);
  border-color: white;
}
.btn--white:hover { background: transparent; color: white; border-color: white; }
.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-white:hover { background: white; color: var(--purple); border-color: white; }
.btn--purple-sm {
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 8px 16px;
  font-size: 0.8rem;
  border-color: rgba(255,255,255,0.4);
}
.btn--purple-sm:hover { background: white; color: var(--purple); }
.btn--white-lg {
  background: white;
  color: var(--purple-dark);
  font-size: 1rem;
  padding: 14px 32px;
  box-shadow: var(--shadow);
}
.btn--white-lg:hover { background: var(--purple-dark); color: white; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--whatsapp {
  background: #25D366;
  color: white;
  font-size: 1rem;
  padding: 14px 32px;
}
.btn--whatsapp:hover { background: #1da550; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--purple-lg {
  background: var(--purple);
  color: white;
  font-size: 1rem;
  padding: 14px 32px;
  border: none;
  box-shadow: 0 4px 20px var(--purple-glow);
}
.btn--purple-lg:hover { background: var(--purple-dark); transform: translateY(-2px); box-shadow: 0 8px 28px var(--purple-glow); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,5,20,0.88) 0%,
    rgba(90,31,103,0.65) 50%,
    rgba(10,5,20,0.40) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 680px;
}
.hero__badge {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease both;
}
.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.hero__subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--gold-light);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  letter-spacing: 0.4px;
}
.hero__stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== QUICKLINKS ===================== */
.quicklinks {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
}
.quicklinks__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.quicklinks__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45) saturate(1.1);
}
.quicklinks__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
}
.quicklinks__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--gray-mid);
}
.quicklink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--gray-mid);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.quicklink:hover {
  background: var(--gray-light);
  border-bottom-color: var(--purple);
}
.quicklink__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 139, 0.08);
  border-radius: 12px;
  color: var(--purple);
  transition: background var(--transition), color var(--transition);
}
.quicklink:hover .quicklink__icon {
  background: var(--purple);
  color: white;
}
.quicklink__text { flex: 1; }
.quicklink__title { display: block; font-weight: 600; font-size: 0.9rem; color: var(--black); }
.quicklink__sub { display: block; font-size: 0.75rem; color: var(--gray-text); margin-top: 2px; }
.quicklink__arrow { color: var(--purple); opacity: 0; transition: opacity var(--transition), transform var(--transition); }
.quicklink:hover .quicklink__arrow { opacity: 1; transform: translateX(4px); }

/* ===================== SECTION COMMONS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--gray-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--purple-glow);
}
.section-tag--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-title--light { color: var(--white); }
.section-desc {
  color: var(--gray-text);
  font-size: 1.0rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-desc--light { color: rgba(255,255,255,0.72); }

/* ===================== PRODUCT CATEGORIES ===================== */
.products { padding: 80px 0; background: var(--gray-light); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* PHOTO CARDS */
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: 0 16px 56px rgba(0,0,0,0.28); }

.cat-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.cat-card:hover .cat-card__photo { transform: scale(1.06); }

.cat-card__photo--tint { filter: hue-rotate(190deg) saturate(0.7); }

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 4, 20, 0.92) 0%,
    rgba(20, 8, 40, 0.65) 45%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 1;
  transition: background var(--transition);
}
.cat-card__overlay--blue {
  background: linear-gradient(
    to top,
    rgba(0, 30, 80, 0.92) 0%,
    rgba(0, 50, 110, 0.65) 45%,
    rgba(0,0,0,0.1) 100%
  );
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(80, 20, 100, 0.92) 0%,
    rgba(60, 10, 80, 0.7) 50%,
    rgba(0,0,0,0.15) 100%
  );
}

.cat-card__content {
  position: relative;
  z-index: 2;
  padding: 24px 24px 28px;
}
.cat-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(212, 146, 10, 0.18);
  border: 1px solid rgba(212, 146, 10, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.cat-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.cat-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  margin-bottom: 14px;
}
.cat-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--gold-light);
  letter-spacing: 0.3px;
  transition: letter-spacing var(--transition);
}
.cat-card:hover .cat-card__link { letter-spacing: 1px; }

/* ===================== BRANDS ===================== */
.brands {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.brands__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.brands__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.4) brightness(0.35);
}
.brands__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.97) 0%, rgba(245,240,250,0.93) 100%);
}
.brands > .container { position: relative; z-index: 1; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.brand-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
  transform: translateY(-4px);
}
.brand-card__inner {
  padding: 28px 24px;
  background: var(--white);
  transition: background var(--transition);
  height: 100%;
}
.brand-card:hover .brand-card__inner { background: var(--gray-light); }
.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.brand-name--fuchs { color: #C8102E; }
.brand-name--mobil { color: #EF3340; }
.brand-name--shell { color: #FBCE07; text-shadow: 1px 1px 0 #9b6b00; }
.brand-name--total { color: #E4002B; }
.brand-name--castrol { color: #1B4F32; }
.brand-name--liqui { color: #003087; }
.brand-sub {
  font-size: 0.78rem;
  color: var(--gray-text);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-desc { font-size: 0.85rem; color: var(--gray-text); line-height: 1.6; }

/* ===================== WHY US ===================== */
.why {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.why__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) saturate(1.2);
}
.why__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,5,30,0.92) 0%, rgba(80,20,100,0.85) 60%, rgba(30,5,60,0.95) 100%);
}
.why > .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.why-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  color: var(--gold-light);
  margin-bottom: 18px;
  transition: background var(--transition);
}
.why-card:hover .why-card__icon {
  background: rgba(255,255,255,0.16);
}
.why-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: white;
  margin-bottom: 10px;
}
.why-card__desc { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ===================== DELIVERY ===================== */
.delivery {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
}
.delivery__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.delivery__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.5) brightness(0.25);
}
.delivery__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246,244,248,0.97) 0%, rgba(235,228,245,0.95) 100%);
}
.delivery > .container { position: relative; z-index: 1; }
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.delivery-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-mid);
  transition: transform var(--transition);
}
.delivery-block:hover { transform: translateY(-4px); }
.delivery-block__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-mid);
}
.delivery-block__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 139, 0.08);
  border-radius: 8px;
  color: var(--purple);
  flex-shrink: 0;
}
.delivery-list { display: flex; flex-direction: column; gap: 10px; }
.delivery-list li {
  font-size: 0.875rem;
  color: var(--gray-text);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.delivery-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
}
.cta-banner__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.55) saturate(1.2);
}
.cta-banner__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(70,10,95,0.88) 0%, rgba(123,45,139,0.78) 50%, rgba(50,5,75,0.88) 100%);
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__content { text-align: center; }
.cta-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: white;
  margin-bottom: 16px;
}
.cta-banner__sub {
  color: rgba(255,255,255,0.80);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== CONTACTS ===================== */
.contacts {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.contacts__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contacts__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.3) brightness(0.25);
}
.contacts__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(252,250,255,0.97) 0%, rgba(240,234,252,0.96) 100%);
}
.contacts > .container { position: relative; z-index: 1; }
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}
.contact-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
}
.contact-card:hover {
  background: white;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-glow);
  transform: translateY(-4px);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 45, 139, 0.08);
  border-radius: 50%;
  color: var(--purple);
  margin: 0 auto 16px;
  transition: background var(--transition), color var(--transition);
}
.contact-card:hover .contact-card__icon {
  background: var(--purple);
  color: white;
}
.contact-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gray-text);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.contact-card__value {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--purple);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.contact-card:hover .contact-card__value { color: var(--purple-dark); }
.contact-card__note { font-size: 0.78rem; color: var(--gray-text); }

/* CALLBACK FORM */
.callback-form {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 40px 48px;
  border: 1px solid var(--gray-mid);
}
.callback-form__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 28px;
  text-align: center;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}
.form__input, .form__textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  background: white;
  color: var(--black);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus, .form__textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--purple-glow);
}
.form__textarea { resize: vertical; min-height: 80px; }
.form__privacy {
  font-size: 0.78rem;
  color: var(--gray-text);
  text-align: center;
  margin-top: 12px;
}
.form__privacy a { color: var(--purple); text-decoration: underline; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}
.footer__photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.2) saturate(0.8);
}
.footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,10,35,0.95) 0%, rgba(10,5,20,0.98) 100%);
}
.footer > .container,
.footer__inner,
.footer__bottom { position: relative; z-index: 1; }
.footer__inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  padding-top: 56px;
  padding-bottom: 44px;
  align-items: start;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__contacts a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.footer__contacts a:hover { color: var(--purple-light); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--purple-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--purple);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  z-index: 300;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--purple-dark); transform: translateY(-3px); }

/* ===================== MODAL ===================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: white;
  border-radius: var(--radius);
  padding: 40px 44px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--gray-text);
  cursor: pointer;
  padding: 6px;
  transition: color var(--transition);
}
.modal__close:hover { color: var(--black); }
.modal__icon { font-size: 3rem; margin-bottom: 14px; }
.modal__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 10px;
}
.modal__text { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-dropdown__inner { grid-template-columns: 1fr 1fr 1fr; }
  .catalog-col--promo { display: none; }
}

@media (max-width: 900px) {
  .header__search { display: none; }
  .header__actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--purple-dark);
    flex-direction: column;
    z-index: 200;
    padding: 8px 0;
  }
  .navbar__links.open { display: flex; }
  .navbar__link { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .navbar__link::after { display: none; }
  .navbar__inner { position: relative; }
  .navbar__catalog { font-size: 0.72rem; padding: 0 16px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .quicklinks__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar { display: none; }
  .header__inner { height: 60px; }
  .logo__svg { width: 100px; }
  .hero { min-height: 480px; }
  .hero__content { padding: 60px 0; }
  .hero__stats { gap: 16px; }
  .hero__stat-num { font-size: 1.4rem; }
  .categories-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: repeat(2, 1fr); }
  .callback-form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .quicklinks__inner { grid-template-columns: 1fr; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .catalog-dropdown__inner { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
