/* =================== Design Tokens & Base =================== */
:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #fafafa;
  --color-text: #121212;
  --color-text-muted: #5f6368;
  --color-primary: #111111;
  --color-accent: #ffb300; /* amber accent */
  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --container-max: 1100px;
}

* { box-sizing: border-box; }
html { 
  height: 100%; 
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body { 
  height: 100%; 
  overflow-x: hidden; 
  -webkit-overflow-scrolling: touch;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  color: var(--color-text);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

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

button {
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
}

/* =================== Header =================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
  padding: 10px 20px; /* header daha kısa */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menü üstte */
header .top-menu nav {
  display: flex;
  justify-content: center;
  padding: -10px 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0.1);
  padding: 8px;
  margin: 0;
}


header .top-menu nav a {
  color: #c71a1a;
  margin: 0 12px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 10px;
  border-radius: 6px;
  position: relative;
  transition: color 0.3s, transform 0.3s ease;
}

header .top-menu nav a:hover {
  color: #ed0c0c;
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

header .top-menu nav a::after {
  content: "";
  position: absolute;
  left: 0x;
  right: 10px;
  bottom: -4px;
  height: 2px;
  background: rgba(166, 24, 24, 0.9);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: width 0.3s ease;
}

header .top-menu nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  header .top-menu {
    display: none;              /* başta gizli */
    position: absolute;
    top: 60px;                  /* header’ın altından açılsın */
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    padding: 10px 0;
  }

  header .top-menu.active {
    display: block;             /* hamburger tıklanınca görünür */
  }

  header .top-menu nav {
    flex-direction: column;
    gap: 0;
  }

  header .top-menu nav a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }
}

/* Logo */
header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  order: -1;
  margin-left: 100px;
}

header .logo img {
  height: 120px;       /* daha büyük logo */
  transition: transform 0.3s ease;
  width: auto;
  object-fit: contain;
  background: none;    /* beyaz kutu kaldırıldı */
  padding: 0;          /* iç boşluk kaldırıldı */
  border-radius: 0;    /* köşe yuvarlama kaldırıldı */
  box-shadow: none;    /* gölge kaldırıldı */
  margin-top: 10px;
  margin-bottom: 0px;
  margin-left: 50px;
}

header .logo img:hover {
  transform: scale(1.05);
}

/* =================== konum =================== */
/* --- Konum Sayfası --- */
.konum {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.konum h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.konum p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #444;
}

.konum iframe {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .konum {
    padding: 40px 15px;
  }
  .konum h1 {
    font-size: 1.8rem;
  }
  .konum p {
    font-size: 1rem;
  }
  .konum iframe {
    height: 350px;
  }
}


/* =================== Hero Bölümü =================== */
.hero {
  background: url('../images/optik-banner.jpg') center/cover no-repeat;
  color: white;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* =================== Ana İçerik =================== */
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

/* =================== Markalar Sayfası =================== */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

main h1 {
  text-align: center;
  padding: 40px 20px 0;
  font-size: 2.5rem;
  color: #333;
}

@media (max-width: 768px) {
  main h1 {
    font-size: 1.8rem;
    padding: 30px 15px 0;
  }
}

.brands img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brands img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* =================== İletişim Formu =================== */
.contact {
  padding: 80px 20px;
  background: #f9f9f9;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 0 auto;
  max-width: 1100px;
}

.contact-info {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #b12209;
}

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #b12209;
}
.contact-info p {
  margin-bottom: 10px;
  color: #b12209;
}
.contact-info a {
  color: #b12209;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
   margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}
.contact-form button {
   padding: 12px 20px;
  background: #b12209;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #b12209;
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 15px;
  }
  .contact h2 {
    font-size: 1.8rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info,
  .contact-form {
    padding: 0;
  }
}
/* Harita */
.map iframe {
  border-radius: 8px;
}


/* =================== Footer =================== */
/* --- Footer Revizyon --- */
footer {
  background: #ddb5b5;
  color: #ddd;
  padding: 20px 10px;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-col h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #fff;
  border-bottom: 2px solid #ff6600;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ff6600;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.social-links a i {
  font-size: 20px;
  color: #fff !important;   /* ikon rengi ZORLA beyaz */
  line-height: 1;
  text-align: center;
}

.social-links a:hover {
  background: #ff6600;
  transform: scale(1.1);
}


.footer-copy {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #444;
  padding-top: 15px;
}


/* =================== Responsive =================== */
@media (max-width: 768px) {
  header .top-menu nav {
    position: absolute;
    flex-direction: column;
    gap: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .brands {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    padding: 30px 15px;
  }

  .brands img {
    max-height: 80px;
    padding: 10px;
  }
}

/* =================== Responsive (Header overrides) =================== */
@media (max-width: 768px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
  }

  header .logo {
    padding: 5px 0;
    margin: 0 !important;
    margin-left: 0 !important;
  }

  header .logo img {
    height: 60px !important;
    margin: 0 !important;
  }

  header .top-menu nav {
    justify-content: center;
    position: static;
    left: auto;
    transform: none;
    margin-top: 5px;
  }
}

/* =================== Slider =================== */
.slider {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0;
  background: #00000010;
}

.slider-viewport {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.slide {
  min-width: 100%;
  user-select: none;
}

.slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(193, 24, 24, 0.6);
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

@media (max-width: 768px) {
  .slide img {
    height: 220px;
  }
}

/* =================== Categories =================== */
.categories {
  max-width: 1000px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 15px;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.category-image {
  width: 100%;
  height: clamp(160px, 24vw, 260px);
  background: #ffffff; /* beyaz zemin sayesinde yazılar kırpılmaz */
  background-size: contain !important; /* görsel tamamı sığsın */
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: transform .35s ease;
}

.category-card:hover .category-image {
  transform: scale(1.02);
}

.category-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1a237e;
}

@media (max-width: 768px) {
  .categories {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 15px 0;
  }
}

/* Kategoriler: Çocuk görselini yatayda eşitle */
.categories .category-card:nth-child(3) .category-image {
  background-size: 115% auto !important; /* genişliği doldur, oranı koru */
  background-position: center center;
}

/* =================== Brand Strip =================== */
.brand-strip {
  width: 100%;
  max-width: 1000px;
  margin: 10px auto 20px;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: relative;
}

.brand-strip .brand-viewport {
  width: 100%;
}

.brand-strip .brand-track {
  /* each item will be same width to create a step slider */
}

.brand-strip .brand-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.08);
  color: #000;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-strip .brand-btn:hover {
  background: rgba(0,0,0,0.18);
}

.brand-strip .brand-btn.prev { left: 6px; }
.brand-strip .brand-btn.next { right: 6px; }

.brand-strip .brand-track img {
  height: 64px;
}


@media (max-width: 768px) {
  .brand-track {
    gap: 20px;
    padding: 8px 12px;
  }
  .brand-track img {
    height: 36px;
  }
}

/* =================== Banner =================== */
.banner { 
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-top: 1px solid #eee;
}
.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
}
.banner-inner h2 {
  margin: 0 0 8px 0;
  color: #999;
  font-weight: 600;
}
.banner-inner h1 {
  margin: 0 0 10px 0;
  font-size: 2rem;
  font-weight: 700;
  color: #111;
}
.banner-inner p { color: #444; margin: 0 0 16px 0; }
.banner-actions { display: flex; gap: 12px; }

.btn { display: inline-block; padding: 10px 16px; border-radius: 4px; font-weight: 600; }
.btn-dark { background: #ba1313;
  color: white;
  font-family: inherit;
  border: 1px solid white;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  padding-left: 2rem;
  cursor: pointer;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}
.btn-dark-1 { background: #ba1313;
  color: white;
  font-family: inherit;
  border: 1px solid white;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  border-radius: 2rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding: 0 2rem;
  cursor: pointer;
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
}

@media (max-width: 768px) {
  .btn-dark-1 {
    padding: 0 1.5rem;
    font-size: 15px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.btn-dark-1:hover { background-color: white;
  color: #ba1313;
  border: 1px solid #ba1313;}
.btn-dark:hover { background-color: white;
  color: #000000;
  border: 1px solid #000;}
.btn-outline { background: #fff; color: #000; border: 1px solid #000; }
.btn-outline:hover { background: #000; color: #fff; }

/* =================== Brands Highlight =================== */
.brands-highlight { background: #fff; }
.brands-highlight .section-head { max-width: 1100px; margin: 0 auto; padding: 40px 20px; text-align: center; }
.brands-highlight h3 { margin: 0; color: #999; font-weight: 600; }
.brands-highlight h2 { margin: 6px 0 16px; color: #111; }

@media (max-width: 768px) {
  .brands-highlight .section-head {
    padding: 30px 15px;
  }
  .brands-highlight h2 {
    font-size: 1.5rem;
  }
  .brands-highlight h3 {
    font-size: 0.9rem;
  }
}

/* =================== Blog Teasers =================== */
.blog-teasers { background: #fff; }
.blog-teasers .section-head { max-width: 1100px; margin: 0 auto; padding: 20px 20px 0; }

@media (max-width: 768px) {
  .blog-teasers .section-head {
    padding: 15px 15px 0;
  }
  .blog-teasers .section-head h3 {
    font-size: 1.2rem;
  }
}
.blog-grid { max-width: 1100px; margin: 0 auto; padding: 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card { background: var(--color-surface-alt); border: 1px solid #eee; border-radius: var(--radius-md); padding: 14px; transition: transform .2s ease, box-shadow .2s ease; overflow: hidden; }
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.blog-thumb { height: 180px; background: #e9e9e9; border-radius: 6px; margin-bottom: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center;}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .blog-thumb {
    height: 200px;
  }
  .blog-card h4 {
    font-size: 1.1rem;
  }
  .blog-card p {
    font-size: 0.9rem;
  }
}
.blog-card h4 { margin: 8px 0; color: #111; }
.blog-card p { margin: 0 0 10px 0; color: #555; }
.read-more { color: #000; font-weight: 600; }

/* =================== Newsletter =================== */
.newsletter { background: #fff; padding: 30px 20px; }
.newsletter h3 { text-align: center; margin: 0 0 10px 0; color: #111; }
.newsletter-form { max-width: 480px; margin: 0 auto; display: flex; gap: 8px; }
.newsletter-form input { flex: 1; padding: 10px; border: 1px solid #ddd; border-radius: 6px; }
.newsletter-form button { padding: 10px 16px; }

@media (max-width: 600px) {
  .newsletter-form {
    flex-direction: column;
    padding: 0 15px;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }
}

/* =================== Footer Extended =================== */
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 30px 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 15px; }
.footer-col h5 { margin: 0 0 8px 0; color: #e60909; }
.footer-col a { display: block; color: #850101; margin: 6px 0; }
.footer-copy { text-align: center; padding: 10px 20px; color: #666; border-top: 1px solid #eee; }

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 20px 15px;
    text-align: center;
  }
}

/* Banner two-column layout */
.banner-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
}
.banner-media img {
  width: 80%;
  height: auto;
  border-radius: 8px;
  display: block;
}
@media (max-width: 900px) {
  .banner-inner {
    grid-template-columns: 1fr;
  }
  .banner-media { order: -1; }
}

@media (max-width: 900px) {
  .blog-grid { 
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    padding: 15px;
  }
}
@media (max-width: 600px) {
  .blog-grid { 
    grid-template-columns: 1fr;
    padding: 15px;
  }
  .banner-inner { 
    padding: 30px 16px;
  }
  .banner-inner h1 {
    font-size: 1.5rem;
  }
  .banner-inner h2 {
    font-size: 0.9rem;
  }
  .banner-inner p {
    font-size: 0.9rem;
  }
  .banner-actions {
    flex-direction: column;
    gap: 8px;
  }
  .btn-dark, .btn-outline {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    height: auto;
  }
}

/* Banner slider structure */
.banner-slider { position: relative; }
.banner-viewport { overflow: hidden; width: 100%; }
.banner-track { display: flex; transition: transform .5s ease; will-change: transform; }
.banner-slide { min-width: 100%; }

.banner-btn { position: absolute; top: 50%; transform: translateY(-50%); border: none; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.06); color: #000; font-size: 18px; }
.banner-btn:hover { background: rgba(0,0,0,0.15); }
.banner-btn.prev { left: 10px; }
.banner-btn.next { right: 10px; }

@media (max-width: 768px) {
  .banner-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  .banner-btn.prev { left: 5px; }
  .banner-btn.next { right: 5px; }
}

/* Header actions (search, cart) */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px; /* biraz sola çek */
}
.icon-btn {
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  cursor: pointer;
  color: #111;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.icon-btn:hover { background: #f3f3f3; border-color: #ddd; }
.icon-btn span { line-height: 1; font-size: 16px; }

/* Brand marquee as step slider */
.brand-marquee { width: 100%; padding: 12px 0; }
.brand-marquee-viewport { overflow: hidden; max-width: 100%; margin: 0 auto; padding: 0 16px; }
.brand-marquee-track { display: flex; align-items: center; justify-content: flex; gap: 20px; padding: 10px 0; transition: transform .45s ease; will-change: transform; }
.brand-marquee img { height: 72px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .80; background: #fff; transition: all 0.3s ease; }
.brand-marquee img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.1);}
.brand-nav { position: relative; z-index: 1; background: transparent; border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; color: #000; }
.brand-nav:hover { background: #f3f3f3; }
.brand-marquee { display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 8px; }
@media (max-width: 900px) { 
  .brand-marquee-viewport { 
    max-width: 100%; 
    padding: 0 10px; 
  } 
  .brand-marquee img { 
    height: 44px; 
  }
  .brand-nav {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Force white background for specific brand logos */
.brand-marquee img[src$="armani.png"],
.brand-marquee img[src$="ralph lauren.png"],
.brand-marquee img[src$="versace.png"] {
  background: #fff;
  padding: 6px;
  border-radius: 6px;
}

/* =================== About Page =================== */
.about-hero {
  background: url("../images/about-bg.jpg") no-repeat center center/cover;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  position: relative;
}

.about-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45); /* koyu katman */
}

.about-hero .hero-content {
  color: #ffffff;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.about-hero h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-hero .hero-content h1{
  color: #fff;
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-hero .hero-content p {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .about-hero {
    height: 50vh;
    min-height: 350px;
  }
  .about-hero .hero-content {
    padding: 15px;
  }
  .about-hero h1,
  .about-hero .hero-content h1 {
    font-size: 1.8rem !important;
  }
  .about-hero .hero-content p {
    font-size: 1rem;
  }
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #b8591a; /* turuncu arka plan */
  color: #fff; /* yazı rengi beyaz */
  text-decoration: none; /* alt çizgi yok */
  border-radius: 6px; /* köşeleri yuvarlat */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.hero-btn:hover {
  background-color: #e65500; /* hover efekti */
}


.container { max-width: var(--container-max); margin: 0 auto; padding: 32px 20px; }
.about {
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
  padding: 60px 20px;
  text-align: center;
}
.about h1 { margin: 0 0 10px 0; font-size: 2.5rem; letter-spacing: .2px; position: relative;}
.about h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 10px auto 0;
  background: #d81b60; /* markanın ana rengine uyarlayabilirsin */
  border-radius: 2px;
}

.about-lead { margin: 0 0 40px 0; color: var(--color-text-muted); font-size: 1.2rem; line-height: 1.6; }
.about-content { display: grid; gap: 12px; }
.about-content p { margin: 0; line-height: 1.7; color: #2b2f33; }
.feature-boxes {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  width: 250px;
  transition: transform 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 2rem;
  color: #d81b60;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .about h1 { 
    font-size: 1.8rem;
  }
  .about-lead {
    font-size: 1rem;
  }
  .feature-boxes {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .feature-box {
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .about h1 { 
    font-size: 1.6rem; 
  }
  .about {
    padding: 40px 15px;
  }
}
