/* ============================================
   EYÜP OPTİK — Soft Aegean Luxury
   Deep teal · Mist · Rose copper
   ============================================ */

:root {
  --eo-black: #1E3F4F;
  --eo-anthracite: #264859;
  --eo-charcoal: #3A6173;
  --eo-gray-700: #4A6570;
  --eo-gray-500: #6B8490;
  --eo-gray-300: #B8C9D0;
  --eo-gray-200: #DCE6EA;
  --eo-gray-100: #EAF1F3;
  --eo-offwhite: #F2F7F8;
  --eo-sand: #F7F2EB;
  --eo-white: #FFFFFF;
  --eo-gold: #C4896A;
  --eo-gold-soft: #D4A48A;
  --eo-gold-muted: rgba(196, 137, 106, 0.18);
  --eo-teal: #3D8B9E;
  --eo-teal-soft: #6AAAB8;
  --eo-mist: #E4EEF1;
  --eo-hero-a: #1B4556;
  --eo-hero-b: #3A7082;
  --eo-hero-c: #7BA3B0;

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --header-h: 80px;
  --announce-h: 36px;
  --container: 1320px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s var(--ease);
  --shadow-soft: 0 20px 50px rgba(30, 63, 79, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--eo-anthracite);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 139, 158, 0.08), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(196, 137, 106, 0.07), transparent 50%),
    var(--eo-offwhite);
  overflow-x: hidden;
}

body.menu-open,
body.search-open,
body.drawer-open {
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--eo-gold); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.02em;
}

.container-eo {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ——— Buttons ——— */
.btn-eo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-eo--dark {
  background: linear-gradient(135deg, #1E3F4F 0%, #2F6A7A 100%);
  color: var(--eo-white);
  border-color: transparent;
}
.btn-eo--dark:hover {
  background: transparent;
  color: var(--eo-black);
  border-color: var(--eo-black);
}

.btn-eo--light {
  background: var(--eo-white);
  color: var(--eo-black);
  border-color: var(--eo-white);
}
.btn-eo--light:hover {
  background: transparent;
  color: var(--eo-white);
}

.btn-eo--outline {
  background: transparent;
  color: var(--eo-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-eo--outline:hover {
  background: var(--eo-white);
  color: var(--eo-black);
  border-color: var(--eo-white);
}

.btn-eo--outline-dark {
  background: transparent;
  color: var(--eo-black);
  border-color: var(--eo-black);
}
.btn-eo--outline-dark:hover {
  background: var(--eo-black);
  color: var(--eo-white);
}

.btn-eo--full { width: 100%; }

.btn-ghost,
.btn-solid {
  flex: 1;
  padding: 12px 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.btn-ghost {
  background: var(--eo-white);
  color: var(--eo-black);
  border: 1px solid var(--eo-white);
}
.btn-ghost:hover { background: var(--eo-offwhite); }

.btn-solid {
  background: linear-gradient(135deg, #1E3F4F 0%, #3D8B9E 100%);
  color: var(--eo-white);
  border: 1px solid transparent;
}
.btn-solid:hover { filter: brightness(1.08); }

/* ——— Announcement ——— */
.announce-bar {
  background: linear-gradient(90deg, #1E3F4F 0%, #2F6A7A 50%, #3D8B9E 100%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}

.announce-bar span { opacity: 0.95; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--eo-gray-200);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.site-header.is-scrolled .header-inner {
  height: 64px;
}

.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: height 0.4s var(--ease);
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
}
.logo:hover { opacity: 0.85; color: inherit; }
.logo img {
  display: block;
  height: 56px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.site-header.is-scrolled .logo img { height: 46px; }

.footer-brand {
  display: inline-block;
  margin-bottom: 20px;
  line-height: 0;
}
.footer-brand img {
  display: block;
  height: 64px;
  width: auto;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-self: center;
}

.nav-main a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eo-anthracite);
  position: relative;
  padding: 4px 0;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--eo-black);
  transition: width 0.35s var(--ease);
}
.nav-main a:hover { color: var(--eo-black); }
.nav-main a:hover::after,
.nav-main a.is-active::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--eo-anthracite);
  position: relative;
  transition: color var(--transition);
}
.icon-btn:hover { color: var(--eo-black); }
.icon-btn i { font-size: 18px; }

.icon-btn .badge-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--eo-black);
  color: var(--eo-white);
  font-size: 9px;
  font-weight: 500;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--eo-black);
  transition: all 0.3s var(--ease);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--eo-white);
  z-index: 1100;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  padding: 12px 0;
  border-bottom: 1px solid var(--eo-gray-200);
  letter-spacing: 0.06em;
}

/* ——— Hero Slider ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--announce-h) - var(--header-h));
  min-height: calc(100svh - var(--announce-h) - var(--header-h));
  background: var(--eo-hero-a);
  overflow: hidden;
}

.hero-slider,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
  min-height: inherit;
}

.hero-slider .carousel-item {
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--eo-hero-a);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero__pane {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero__content {
  color: var(--eo-white);
  max-width: 620px;
  padding: 80px 0;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.5vw, 16px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #F0D2C0;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(42px, 6.5vw, 78px);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 400px;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-slider .carousel-item.active .hero__brand,
.hero-slider .carousel-item.active .hero__title,
.hero-slider .carousel-item.active .hero__text,
.hero-slider .carousel-item.active .hero__ctas {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-slider .carousel-item.active .hero__brand { animation-delay: 0.15s; }
.hero-slider .carousel-item.active .hero__title { animation-delay: 0.3s; }
.hero-slider .carousel-item.active .hero__text { animation-delay: 0.45s; }
.hero-slider .carousel-item.active .hero__ctas { animation-delay: 0.6s; }

.hero-slider .carousel-indicators {
  bottom: 28px;
  margin-bottom: 0;
  gap: 8px;
  z-index: 5;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255, 255, 255, 0.45);
  opacity: 1;
  margin: 0;
}

.hero-slider .carousel-indicators .active {
  background-color: #F0D2C0;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 7%;
  z-index: 5;
  opacity: 0.75;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
  opacity: 1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ——— Sections ——— */
.section {
  padding: 100px 0;
}

.section--tight { padding: 70px 0; }
.section--dark {
  background: var(--eo-black);
  color: var(--eo-white);
}
.section--soft {
  background:
    linear-gradient(180deg, var(--eo-sand) 0%, var(--eo-offwhite) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 40px;
}

.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--eo-gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  color: var(--eo-gray-500);
  max-width: 480px;
  margin: 0 auto;
}

.section-header--left .section-desc { margin: 0; }

/* ——— Brands Marquee ——— */
.brands-strip {
  border-top: 1px solid var(--eo-gray-200);
  border-bottom: 1px solid var(--eo-gray-200);
  padding: 48px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
}

.brands-strip .section-title {
  font-size: 28px;
  margin-bottom: 36px;
  text-align: center;
}

.brands-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.brands-track:hover { animation-play-state: paused; }

.brands-track span {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  white-space: nowrap;
  transition: color var(--transition);
}
.brands-track span:hover { color: var(--eo-black); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ——— Categories ——— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
  background: var(--eo-anthracite);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  color: var(--eo-white);
  transition: background 0.5s var(--ease);
}

.cat-card__title {
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cat-card__text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  max-width: 220px;
}

.cat-card__cta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transform: translateY(6px);
  transition: all 0.4s var(--ease);
}
.cat-card__cta::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease);
}

.cat-card:hover img { transform: scale(1.06); }
.cat-card:hover .cat-card__overlay { background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 55%, transparent 100%); }
.cat-card:hover .cat-card__cta { opacity: 1; transform: translateY(0); }
.cat-card:hover .cat-card__cta::after { width: 40px; }
.cat-card:hover { color: var(--eo-white); }

/* ——— Product Cards ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
}

.product-card__media {
  position: relative;
  background: linear-gradient(160deg, #F8F4EF 0%, #EAF3F5 100%);
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}

.product-card:hover .product-card__img { transform: scale(1.03); }

.product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: var(--eo-black);
  color: var(--eo-white);
  padding: 5px 10px;
}
.product-card__badge--shop {
  background: linear-gradient(135deg, #1E3F4F, #3D8B9E);
}

.product-card__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--eo-anthracite);
  transition: transform 0.3s var(--ease), color 0.3s;
}
.product-card__fav:hover,
.product-card__fav.is-active { color: var(--eo-black); }
.product-card__fav.is-active { animation: heartPop 0.4s var(--ease); }
.product-card__fav.is-active i { color: #B33A3A; }

@keyframes heartPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.product-card__actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card__brand {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  margin-bottom: 4px;
}

.product-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--eo-anthracite);
}
.product-card__name:hover { color: var(--eo-black); }

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-current {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.price-old {
  font-size: 13px;
  color: var(--eo-gray-500);
  text-decoration: line-through;
}

/* ——— Editorial Banner ——— */
.editorial {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--eo-white);
  overflow: hidden;
}

.editorial__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(27, 69, 86, 0.72), rgba(61, 139, 158, 0.55)),
    url("../images/hero/new-season.jpg") center/cover no-repeat;
}

.editorial__content {
  position: relative;
  z-index: 2;
  padding: 60px 24px;
  max-width: 700px;
}

.editorial__eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--eo-gold);
  margin-bottom: 20px;
}

.editorial__title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 18px;
}

.editorial__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 15px;
}

/* ——— Brand Feature ——— */
.brand-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 560px;
}

.brand-feature__media {
  background: var(--eo-anthracite);
  overflow: hidden;
}
.brand-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.brand-feature:hover .brand-feature__media img { transform: scale(1.04); }

.brand-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  background: linear-gradient(160deg, var(--eo-sand) 0%, #EAF3F5 100%);
}

.brand-feature__name {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.brand-feature__tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--eo-gray-700);
  margin-bottom: 20px;
}

.brand-feature__text {
  color: var(--eo-gray-500);
  margin-bottom: 36px;
  max-width: 360px;
}

/* ——— Campaign ——— */
.campaign {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--eo-white);
  overflow: hidden;
}

.campaign__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(30, 63, 79, 0.82), rgba(61, 139, 158, 0.7)),
    url("../images/hero/new-season.jpg") center/cover no-repeat;
}

.campaign__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.campaign__title {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.campaign__text {
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}

/* ——— Instagram ——— */
.section--instagram {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196, 137, 106, 0.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
}

.ig-feed {
  margin-bottom: 40px;
  min-height: 220px;
}

.ig-feed__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 220px;
  color: var(--eo-gray-500);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-feed__loading i {
  font-size: 28px;
  color: var(--eo-teal, #1E3F4F);
  animation: ig-pulse 1.4s ease-in-out infinite;
}

@keyframes ig-pulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.ig-feed__loading[hidden],
.ig-grid[hidden] {
  display: none !important;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}

.ig-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.ig-grid--embeds {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  align-items: start;
}

.ig-embed-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
}

.ig-embed-card iframe,
.ig-embed-card .instagram-media {
  max-width: 100% !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
}

.ig-grid--error {
  display: block;
  max-width: 520px;
  text-align: center;
}

.ig-empty {
  padding: 36px 20px;
  color: var(--eo-gray-500);
}

.ig-empty i {
  font-size: 28px;
  color: var(--eo-black);
  display: block;
  margin-bottom: 12px;
}

.ig-empty p {
  margin-bottom: 20px;
  font-size: 14px;
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  background: var(--eo-anthracite);
}

.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s;
}

.ig-item__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--eo-white);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ig-item__hover i { font-size: 22px; }

.ig-item:hover img { transform: scale(1.08); }
.ig-item:hover .ig-item__hover { opacity: 1; }
.ig-item:hover { color: var(--eo-white); }

.btn-eo i.bi-instagram {
  margin-right: 8px;
  vertical-align: -1px;
}

.text-center { text-align: center; }

/* ——— Trendyol ——— */
.trendyol-band {
  border-top: 1px solid var(--eo-gray-200);
  border-bottom: 1px solid var(--eo-gray-200);
  padding: 56px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
}

.trendyol-band h2 {
  font-size: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.trendyol-band p {
  color: var(--eo-gray-500);
  margin-bottom: 28px;
}

/* ——— Trust ——— */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item i {
  font-size: 26px;
  color: var(--eo-gold);
  margin-bottom: 16px;
  display: block;
}

.trust-item h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 13px;
  color: var(--eo-gray-500);
  margin: 0;
}

/* ——— Footer ——— */
.site-footer {
  background: linear-gradient(180deg, #1E3F4F 0%, #16323F 100%);
  color: var(--eo-gray-300);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eo-white);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--eo-gray-500);
  padding: 5px 0;
}
.footer-col a:hover { color: var(--eo-gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-size: 12px;
  color: var(--eo-gray-500);
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--eo-gray-300);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--eo-gold);
  color: var(--eo-gold);
}

/* ——— Search Overlay ——— */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__close {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: var(--eo-anthracite);
}

.search-overlay__inner {
  width: min(100%, 680px);
}

.search-overlay h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 36px;
}

.search-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--eo-black);
  padding-bottom: 12px;
  margin-bottom: 40px;
}

.search-form input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  background: transparent;
  color: var(--eo-black);
}
.search-form input::placeholder { color: var(--eo-gray-500); }
.search-form button { font-size: 20px; color: var(--eo-anthracite); }

.search-popular {
  margin-bottom: 32px;
}
.search-popular h3 {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  margin-bottom: 16px;
}
.search-popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-popular-tags button,
.search-popular-tags a {
  padding: 8px 16px;
  border: 1px solid var(--eo-gray-200);
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.search-popular-tags button:hover,
.search-popular-tags a:hover {
  border-color: var(--eo-black);
  color: var(--eo-black);
}

.search-results { min-height: 40px; }
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--eo-gray-200);
}
.search-result-item img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  background: var(--eo-offwhite);
}
.search-result-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--eo-gray-500);
}
.search-result-item span {
  font-family: var(--font-display);
  font-size: 18px;
}

/* ——— Cart Drawer ——— */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100%;
  background: var(--eo-white);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--eo-gray-200);
}
.cart-drawer__head h2 {
  font-size: 22px;
  letter-spacing: 0.06em;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--eo-gray-500);
}
.cart-empty p { margin-bottom: 28px; }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--eo-gray-200);
}
.cart-item img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  background: var(--eo-offwhite);
}
.cart-item__brand {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
}
.cart-item__name {
  font-family: var(--font-display);
  font-size: 17px;
  margin: 4px 0 8px;
}
.cart-item__price { font-size: 13px; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--eo-gray-200);
  margin-top: 10px;
}
.qty-control button {
  width: 32px;
  height: 32px;
  font-size: 14px;
}
.qty-control span {
  width: 32px;
  text-align: center;
  font-size: 13px;
}

.cart-item__remove {
  color: var(--eo-gray-500);
  font-size: 18px;
  align-self: start;
}
.cart-item__remove:hover { color: var(--eo-black); }

.cart-drawer__foot {
  padding: 24px 28px 32px;
  border-top: 1px solid var(--eo-gray-200);
}
.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-drawer__foot .btn-eo { margin-bottom: 10px; }

/* ——— Quick View Modal ——— */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}
.qv-modal.is-open { opacity: 1; visibility: visible; }

.qv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.qv-modal__dialog {
  position: relative;
  background: var(--eo-white);
  width: min(100%, 900px);
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease);
}
.qv-modal.is-open .qv-modal__dialog { transform: translateY(0); }

.qv-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  font-size: 22px;
}

.qv-modal__media {
  background: var(--eo-offwhite);
  aspect-ratio: 4/5;
}
.qv-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qv-modal__info {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.qv-modal__brand {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  margin-bottom: 8px;
}
.qv-modal__name {
  font-size: 32px;
  margin-bottom: 16px;
}
.qv-modal__price {
  font-size: 18px;
  margin-bottom: 28px;
}
.qv-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ——— WhatsApp ——— */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff;
}
.whatsapp-float::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--eo-black);
  color: var(--eo-white);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: var(--font-body);
}
.whatsapp-float:hover::before { opacity: 1; }

/* ——— Page Hero (inner) ——— */
.page-hero {
  padding: 64px 0 40px;
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(61, 139, 158, 0.12), transparent 70%),
    linear-gradient(180deg, var(--eo-sand) 0%, var(--eo-offwhite) 100%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--eo-black); }
.breadcrumb span { color: var(--eo-anthracite); }

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--eo-gray-500);
  max-width: 480px;
  margin: 0 auto;
}

/* ——— Shop Layout ——— */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding: 48px 0 100px;
}

.filter-group {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--eo-gray-200);
}
.filter-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--eo-gray-700);
  cursor: pointer;
}
.filter-check input {
  accent-color: var(--eo-black);
  width: 14px;
  height: 14px;
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-range input[type="range"] {
  width: 100%;
  accent-color: var(--eo-black);
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--eo-gray-500);
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.shop-count {
  font-size: 13px;
  color: var(--eo-gray-500);
}
.shop-sort select {
  border: 1px solid var(--eo-gray-200);
  padding: 10px 36px 10px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  background: var(--eo-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' fill='none' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat right 12px center;
  appearance: none;
  outline: none;
  cursor: pointer;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--eo-black);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ——— Product Detail ——— */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 48px 0 80px;
}

.pdp-gallery__main {
  background: var(--eo-offwhite);
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 12px;
}
.pdp-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-thumbs {
  display: flex;
  gap: 10px;
}
.pdp-thumbs button {
  width: 80px;
  height: 100px;
  border: 1px solid transparent;
  background: var(--eo-offwhite);
  overflow: hidden;
  padding: 0;
  transition: border-color var(--transition);
}
.pdp-thumbs button.is-active,
.pdp-thumbs button:hover { border-color: var(--eo-black); }
.pdp-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-info__brand {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--eo-gray-500);
  margin-bottom: 10px;
}
.pdp-info h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}
.pdp-rating {
  color: var(--eo-gold);
  font-size: 14px;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.pdp-price {
  font-size: 22px;
  margin-bottom: 8px;
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.pdp-original-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--eo-gold);
  border: 1px solid var(--eo-gold);
  padding: 4px 10px;
  margin-bottom: 28px;
}

.pdp-meta {
  margin-bottom: 28px;
}
.pdp-meta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 13px;
}
.pdp-meta-row label {
  width: 80px;
  color: var(--eo-gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--eo-gray-300);
  display: inline-block;
}

.pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pdp-fav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--eo-gray-700);
  justify-content: center;
  padding: 10px;
}
.pdp-fav-link.is-active { color: #B33A3A; }

.pdp-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
  padding: 20px 0;
  border-top: 1px solid var(--eo-gray-200);
  border-bottom: 1px solid var(--eo-gray-200);
}
.pdp-perks li {
  font-size: 12px;
  color: var(--eo-gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-perks i { color: var(--eo-gold); }

.accordion-eo { border-top: 1px solid var(--eo-gray-200); }
.accordion-eo__item { border-bottom: 1px solid var(--eo-gray-200); }
.accordion-eo__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
}
.accordion-eo__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.accordion-eo__panel.is-open { max-height: 300px; }
.accordion-eo__panel p {
  padding-bottom: 18px;
  font-size: 14px;
  color: var(--eo-gray-500);
  margin: 0;
}

.sticky-atc {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800;
  background: var(--eo-white);
  border-top: 1px solid var(--eo-gray-200);
  padding: 12px 16px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.06);
  gap: 8px;
}
.sticky-atc .btn-eo { flex: 1; }

/* ——— Brands Page ——— */
.brands-alpha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 60px 0 100px;
}

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}
.brand-tile:hover {
  background: linear-gradient(135deg, #1E3F4F, #3D8B9E);
  color: var(--eo-white);
  border-color: transparent;
}

/* ——— Cart Page ——— */
.cart-page {
  padding: 48px 0 100px;
  max-width: 900px;
  margin: 0 auto;
}
.cart-page-table { width: 100%; }
.cart-page .cart-item { grid-template-columns: 100px 1fr auto auto; }

/* ——— Contact / About ——— */
.content-page {
  padding: 60px 0 100px;
  max-width: 720px;
  margin: 0 auto;
}
.content-page h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}
.content-page p {
  color: var(--eo-gray-700);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px 0 100px;
}

.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--eo-gray-500);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--eo-gray-200);
  padding: 12px 0;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  background: transparent;
  transition: border-color var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--eo-black); }

.contact-info h3 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 28px 0 10px;
}
.contact-info p {
  color: var(--eo-gray-500);
  margin: 0;
  font-size: 14px;
}

/* ——— Reveal Animations ——— */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Utility ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-4 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }

/* ——— Corporate additions ——— */
.header-cta {
  display: none;
  padding: 12px 20px !important;
  font-size: 10px !important;
  margin-left: 8px;
}
@media (min-width: 1200px) {
  .header-cta { display: inline-flex; }
}

.section-title--left { text-align: left; }

.corp-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: end;
}
.corp-intro__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--eo-gray-700);
  margin: 0;
  max-width: 520px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 28px;
  border: 1px solid var(--eo-gray-200);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--eo-teal);
  background: var(--eo-white);
  transform: translateY(-3px);
}
.service-card i {
  font-size: 24px;
  color: var(--eo-gold);
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card p {
  margin: 0;
  font-size: 14px;
  color: var(--eo-gray-500);
  line-height: 1.7;
}

.visit-band {
  background: linear-gradient(120deg, #1E3F4F 0%, #2F6A7A 55%, #3D8B9E 100%);
  color: rgba(255,255,255,0.82);
  padding: 80px 0;
}
.visit-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.visit-band p {
  max-width: 420px;
  margin: 16px 0 0;
}
.visit-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.product-card__meta {
  font-size: 12px;
  color: var(--eo-gray-500);
  letter-spacing: 0.04em;
}
.product-card__actions .btn-solid {
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-lead {
  font-size: 13px;
  color: var(--eo-gray-500);
  margin: 0 0 20px;
  line-height: 1.7;
  max-width: 260px;
}

.qv-note {
  font-size: 13px;
  color: var(--eo-gray-500);
  margin: 0 0 24px;
}
.qv-meta {
  font-size: 13px;
  color: var(--eo-gray-500);
  letter-spacing: 0.06em;
}

.pdp-cat-line {
  font-size: 14px;
  color: var(--eo-gray-500);
  letter-spacing: 0.06em;
}
.pdp-rating {
  font-size: 11px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  color: var(--eo-gold) !important;
}

@media (max-width: 991px) {
  .corp-intro__grid { grid-template-columns: 1fr; gap: 20px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .visit-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .service-grid { grid-template-columns: 1fr; }
}
