@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
  --primary-color: #1e40af;
  --primary-color-dark: #1e3a8a;
  --secondary-color: #f97316;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --success-color: #059669;
  --warning-color: #d97706;
  --max-width: 1200px;
  --border-radius: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}


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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);       /* Light veya dark mode’a göre değişir */
  background-color: var(--bg-white); /* Light veya dark mode’a göre değişir */
}


.section__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1rem;
}

.section__subheader {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section__header {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section__description {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background-color: var(--primary-color);
  color: white;
}

.btn--large {
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* Header Styles */
.header {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("assets/header.jpg") center/cover;
  opacity: 0.1;
  z-index: 0;
}



.section__description {
  text-align: center;
  max-width: 800px; /* yazının çok geniş yayılmasını önler */
  margin: 0 auto;   /* kutuyu ortalar */
}



nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.nav__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav__logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
}

.nav__logo span {
  color: var(--primary-color);
}

.nav__menu__btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--primary-color);
}

.header__container {
  position: relative;
  z-index: 1;
  padding: 8rem 1rem 6rem;
  text-align: center;
  color: white;
}

.header__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.header__container h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.header__description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.header__stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat__item {
  text-align: center;
}

.stat__item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat__item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

.header__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* About Section */
.about__container {
  background-color: var(--bg-light);
}

.about__header {
  text-align: center;
  margin-bottom: 4rem;
}

.about__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.about__card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.about__card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Products Section */
.products__container {
  text-align: center;
}

.products__categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.category__card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category__image {
  height: 200px;
  overflow: hidden;
}

.category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category__card:hover .category__image img {
  transform: scale(1.1);
}

.category__content {
  padding: 1.5rem;
  text-align: left;
}

.category__content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.category__content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.category__count {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
}

.products__cta {
  margin-top: 3rem;
  text-align: center; /* Ortada dursun */
}

.products__cta .btn {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-md);
  transition: all 0.2s ease;
}

.products__cta .btn:hover {
  transform: scale(1.05);
  background-color: var(--primary-color-dark);
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.services__container {
  background-color: var(--bg-light);
}


.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service__card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--primary-color);
  transition: transform 0.2s ease;
}

.service__card:hover {
  transform: translateY(-3px);
}

.service__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.service__card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service__card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Testimonials */
.testimonials__container {
  text-align: center;
}

.testimonial__card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}

.testimonial__rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial__card p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial__author {
  display: flex;
  justify-content: center;
}

.author__info h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.author__info p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* CTA Section */
.cta__section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: white;
}

.cta__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta__content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta__content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
}

.cta__feature i {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.cta__form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
}

.cta__form h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  padding: 0.875rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.cta__form input:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
}

.footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo h4 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer__logo span {
  color: var(--primary-color);
}

.footer__col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.contact__item i {
  color: var(--primary-color);
  font-size: 1.125rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer__bar {
  border-top: 1px solid #374151;
  padding: 1.5rem 0;
  background-color: #111827;
}

.footer__bar__content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__certifications {
  display: flex;
  gap: 1rem;
}

.cert__badge {
  padding: 0.25rem 0.75rem;
  background: var(--success-color);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: white;
  margin: 5% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
}

.form__group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.form__group input,
.form__group textarea {
  padding: 0.875rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: inherit;
  transition: border-color 0.2s ease;
}

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

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form__checkbox input {
  margin-top: 0.25rem;
}

.form__checkbox label {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form__checkbox a {
  color: var(--primary-color);
  text-decoration: none;
}

/* Catalog Specific Styles */
.catalog__header {
  background: white;
  border-bottom: 1px solid var(--border-color);
}

.catalog__header nav {
  position: static;
  background: transparent;
  border: none;
  padding: 1rem 0;
}

.catalog__header .nav__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.nav__contact__info {
  display: flex;
  align-items: center;   /* Yatay hizalama */
  justify-content: flex-end; /* Sağa yasla */
  gap: 2rem;             /* Mail/telefon ile buton arası boşluk */
  margin-right: 20px;    /* Sağ kenardan boşluk */
}


.contact__details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact__details .contact__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact__details .contact__item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.catalog__hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
  padding: 2rem 0 3rem;
}

.catalog__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.catalog__breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.catalog__breadcrumb span {
  color: var(--text-light);
}

.catalog__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.catalog__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
}

.catalog__search {
  max-width: 800px;
}

.search__container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.search__icon {
  position: absolute;
  left: 1rem;
  color: var(--text-light);
  font-size: 1.25rem;
  z-index: 1;
}

.search__container input {
  flex: 1;
  padding: 1rem 1rem 1rem 3rem;
  border: none;
  font-size: 1rem;
  background: transparent;
}

.search__container input:focus {
  outline: none;
}

.search__btn {
  padding: 1rem 1.5rem;
  background: var(--primary-color);
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search__btn:hover {
  background: var(--primary-color-dark);
}

.search__filters {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.search__filters select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  background: white;
  font-family: inherit;
  cursor: pointer;
}

.filter__reset {
  padding: 0.75rem 1rem;
  background: transparent;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.filter__reset:hover {
  background: var(--bg-light);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.catalog__main {
  padding: 3rem 0;
}

.catalog__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.catalog__sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar__section {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.sidebar__title i {
  color: var(--primary-color);
}

.sidebar__categories,
.sidebar__brands {
  list-style: none;
}

.sidebar__categories li,
.sidebar__brands li {
  margin-bottom: 0.5rem;
}

.sidebar__categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sidebar__categories a:hover,
.sidebar__categories a.active {
  background: var(--bg-light);
  color: var(--primary-color);
}

.sidebar__categories a .category__count {
  background: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 600;
}

.sidebar__brands a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.sidebar__brands a:hover {
  background: var(--bg-light);
  color: var(--primary-color);
}

.contact__card {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
  color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.contact__card h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact__card p {
  margin-bottom: 1rem;
  opacity: 0.9;
  font-size: 0.9rem;
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.catalog__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.toolbar__info {
  font-weight: 600;
  color: var(--text-dark);
}

.toolbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.view__toggle {
  display: flex;
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.view__btn {
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.2s ease;
}

.view__btn.active,
.view__btn:hover {
  background: var(--primary-color);
  color: white;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.products__grid.list-view {
  grid-template-columns: 1fr;
}


.loading__spinner {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
}

.loading__spinner i {
  font-size: 2rem;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pagination__container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.pagination__btn {
  padding: 0.75rem 1rem;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: var(--text-dark);
}

.pagination__btn:hover,
.pagination__btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.catalog__footer {
  background: var(--bg-light);
  padding: 2rem 0;
  margin-top: 3rem;
}

.catalog__footer .footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.catalog__footer .footer__links {
  display: flex;
  gap: 1.5rem;
}

.catalog__footer .footer__links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.catalog__footer .footer__bar {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

/* Product Modal */
.product__modal {
  max-width: 800px;
}

.product__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product__detail__image {
  text-align: center;
}

.product__detail__image img {
  max-width: 100%;
  border-radius: var(--border-radius);
}

.product__detail__info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.product__spec {
  margin: 1rem 0;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
}

.product__spec h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.product__spec p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Responsive Design for Catalog */
@media (max-width: 768px) {
  .nav__contact__info {
    display: none;
  }
  
  .catalog__layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .catalog__sidebar {
    position: static;
    order: 2;
  }
  
  .catalog__toolbar {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .toolbar__actions {
    justify-content: space-between;
  }
  
  .products__grid {
    grid-template-columns: 1fr;
  }
  
  .search__container {
    flex-direction: column;
  }
  
  .search__btn {
    width: 100%;
    justify-content: center;
  }
  
  .search__filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  .contact__details {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .product__detail {
    grid-template-columns: 1fr;
  }
}
  .nav__menu__btn {
    display: block;
  }
  
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav__btns {
    display: none;
  }
  
  .header__container h1 {
    font-size: 2.5rem;
  }
  
  .section__header {
    font-size: 2rem;
  }
  
  .cta__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__bar__content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .form__row {
    grid-template-columns: 1fr;
  }
  
  .header__stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .header__cta {
    flex-direction: column;
    align-items: center;
  }


  .footer__legal {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 1rem 0;
  background-color: #111827; /* footer bar rengi */
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.25rem;
}

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


.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  z-index: 9999;
  transition: background-color 0.3s, transform 0.2s;
}

.floating-cta:hover {
  background-color: var(--primary-color-dark);
  transform: scale(1.05);
}

#schnell-anfrage {
  scroll-margin-top: 100px;
}


.email-hint {
  margin-top: 0.5rem; /* buton ile arası */
  font-size: 0.9rem;
  color: var(--text-light);
}


.product__content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0.25rem 0;
}


/* catalog.php özel CSS */

/* Header */
.catalog-page .catalog__header {
  background: #f5f5f5;
  padding: 20px;
  text-align: center;
}
.catalog-page .catalog__header h1 {
  margin: 0;
  font-size: 2rem;
}

/* Bölüm container */
.catalog-page .section__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* A-Z Navigasyon */
.catalog-page .alphabet-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  margin: 20px 0;
}
.catalog-page .alphabet-nav a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: all 0.2s;
}
.catalog-page .alphabet-nav a:hover {
  background-color: #0077cc;
  color: #fff;
  border-color: #0077cc;
}

/* Harf başlıkları */
.catalog-page h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.6rem;
  color: #111;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Marka grid */
.catalog-page .brand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  margin-bottom: 30px;
}

.catalog-page .brand__item a {
  display: block;
  text-decoration: none;
  color: #222;
  font-size: 1rem;
  padding: 4px 0;
  transition: color 0.2s;
}
.catalog-page .brand__item a:hover {
  color: #0077cc;
}

.catalog-page .brand__list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
}

.catalog-page .brand__list li a {
  text-decoration: none;
  color: #222;
  display: block;
  padding: 5px 0;
  transition: color 0.2s;
}
.catalog-page .brand__list li a:hover {
  color: #0077cc;
}


/* Responsive */
@media (max-width: 900px) {
  .catalog-page .brand__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .catalog-page .brand__grid {
    grid-template-columns: 1fr;
  }
}

/* Arama cubugu katalog */
.catalog-page .brand-search {
  text-align: center;
  margin: 20px 0;
}
.catalog-page .brand-search input {
  padding: 10px;
  width: 250px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*INDEX ARAMASI*/
.custom-searchbox {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.custom-search-form {
  display: flex;
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-search-input {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 0;
}

.custom-search-btn {
  width: 60px;
  background-color: #303030;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.custom-search-btn:hover {
  background-color: #505050;
}



/* Carousel Styles - Header container için */ /*INDEX RESIM KAYDIRMA*/
/* Carousel için mevcut header stillerini override et */
.header {
  position: relative !important;
  overflow: hidden !important;
  background: none !important; /* Eski background'u kaldır */
  background-image: none !important; /* Eski background image'i kaldır */
}

/* Header container z-index'ini yükselt */
.header__container, .section__container.header__container {
  position: relative !important;
  z-index: 10 !important;
}

/* Nav bar'ı carousel üstünde tut */
nav {
  position: relative !important;
  z-index: 100 !important;
}

/* Carousel Styles */
.carousel-container {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide.active {
  opacity: 1 !important;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8), rgba(59, 130, 246, 0.6));
  z-index: 1;
}

/* Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 30px;
}

.carousel-nav.next {
  right: 30px;
}

/* Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.indicator.active {
  background: white !important;
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .carousel-nav.prev {
    left: 15px;
  }

  .carousel-nav.next {
    right: 15px;
  }
}

 /* ==== Catalog Page (scoped) ============================================ */
 .catalog-page .brand-info-section {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   border-radius: 12px;
   padding: 30px;
   margin-bottom: 40px;
   box-shadow: 0 4px 20px rgba(0,0,0,0.1);
 }
 .catalog-page .breadcrumb { margin-bottom: 20px; color: #666; font-size: 14px; }
 .catalog-page .breadcrumb a { color: #007bff; text-decoration: none; }
 .catalog-page .breadcrumb a:hover { text-decoration: underline; }

 .catalog-page .brand-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #007bff; }
 .catalog-page .brand-title { font-size: clamp(24px, 4vw, 48px); font-weight: 700; color: #333; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
 .catalog-page .brand-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: #007bff; margin-bottom: 10px; font-weight: 600; }
 .catalog-page .brand-dealer { font-size: clamp(14px, 2vw, 18px); color: #333; }

 .catalog-page .brand-about { margin-bottom: 30px; text-align: center; }
 .catalog-page .brand-about h3 { font-size: clamp(18px, 3vw, 24px); color: #333; margin-bottom: 15px; }

 .catalog-page .brand-features { margin-bottom: 30px; }
 .catalog-page .brand-features h3 { font-size: clamp(18px, 3vw, 24px); color: #333; margin-bottom: 20px; text-align: center; }

 .catalog-page .feature-grid {
   display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px; margin-bottom: 20px;
 }
 .catalog-page .feature-item {
   background: #fff; padding: 20px; border-radius: 8px; text-align: center;
   box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform .3s ease;
 }
 .catalog-page .feature-item:hover { transform: translateY(-5px); }
 .catalog-page .feature-item i { font-size: 36px; color: #007bff; margin-bottom: 15px; }
 .catalog-page .feature-item h4 { font-size: 18px; color: #333; margin-bottom: 10px; font-weight: 600; }
 .catalog-page .feature-item p { color: #666; line-height: 1.5; }

 .catalog-page .brand-cta {
   text-align: center; margin-bottom: 30px; padding: 20px; background: #fff;
   border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1);
 }
 .catalog-page .brand-cta p { margin-bottom: 20px; font-size: 16px; color: #333; }
 .catalog-page .btn-brand-cta {
   display: inline-block; background: linear-gradient(135deg, #007bff, #0056b3);
   color: #fff; padding: 15px 30px; border-radius: 8px; text-decoration: none;
   font-weight: 600; transition: all .3s ease;
 }
 .catalog-page .btn-brand-cta:hover {
   transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,123,255,.3);
   color: #fff; text-decoration: none;
 }

 .catalog-page .brand-disclaimer {
   text-align: center; padding: 15px; background: rgba(108,117,125,.1);
   border-radius: 8px; border-left: 4px solid #6c757d;
 }
 .catalog-page .brand-disclaimer p { margin: 0; color: #6c757d; font-style: italic; }

 .catalog-page .brand-products-section { margin-top: 20px; }
 .catalog-page .brand-products-section h2 { font-size: clamp(20px, 3.5vw, 28px); color: #333; margin-bottom: 15px; }

 .catalog-page .search-results-header {
   background: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 30px; border-left: 4px solid #007bff;
 }

 .catalog-page .search-form-catalog {
   background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 30px;
 }
 .catalog-page .search-row { display: flex; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
 .catalog-page .search-input-group { flex: 1; min-width: 200px; }
 .catalog-page .search-input-group input,
 .catalog-page .search-input-group select {
   width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px;
 }
 .catalog-page .search-btn-group { display: flex; gap: 10px; }
 .catalog-page .search-submit, .catalog-page .search-clear {
   padding: 12px 24px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all .3s ease;
 }
 .catalog-page .search-submit { background: #007bff; color: #fff; }
 .catalog-page .search-clear { background: #6c757d; color: #fff; }
 .catalog-page .search-submit:hover { background: #0056b3; }
 .catalog-page .search-clear:hover { background: #5a6268; }

 .catalog-page .product__grid {
   display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; margin: 30px 0;
 }
 .catalog-page .product__card {
   background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 12px;
   transition: all .3s ease; cursor: pointer; text-decoration: none; color: inherit; display: block;
   content-visibility: auto; contain-intrinsic-size: 320px 220px;
 }
 .catalog-page .product__card:hover {
   box-shadow: 0 4px 15px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: #007bff; text-decoration: none; color: inherit;
 }
 .catalog-page .product__title {
   font-size: 13px; font-weight: 500; color: #333; margin-bottom: 6px; line-height: 1.4; white-space: normal; word-wrap: break-word;
 }
 .catalog-page .product__description {
   font-size: 13px; color: #666; margin-bottom: 10px; line-height: 1.4; white-space: normal; word-wrap: break-word;
 }
 .catalog-page .product__price {
   background: #f8f9fa; padding: 6px 10px; border-radius: 4px; text-align: center; font-weight: 600; color: #007bff; border: 1px solid #e9ecef; font-size: 13px;
 }
 .catalog-page .product__brand { font-size: 11px; color: #999; margin-bottom: 5px; text-transform: uppercase; font-weight: 500; }
 .catalog-page .highlight { background: yellow; font-weight: bold; }

 .catalog-page .pagination { display: flex; justify-content: center; align-items: center; margin: 30px 0; gap: 10px; }
 .catalog-page .pagination a, .catalog-page .pagination span {
   padding: 8px 16px; border: 1px solid #ddd; text-decoration: none; color: #333; border-radius: 4px; transition: all .3s ease;
 }
 .catalog-page .pagination a:hover { background: #007bff; color: #fff; border-color: #007bff; }
 .catalog-page .pagination .current { background: #007bff; color: #fff; border-color: #007bff; }
 .catalog-page .pagination .disabled { color: #ccc; cursor: not-allowed; }

 .catalog-page .product-count { text-align: center; margin: 20px 0; color: #666; font-size: 14px; }

 .catalog-page .cusstom-searchbox { display: flex; justify-content: center; padding: 20px; }
 .catalog-page .cusstom-search-form {
   display: flex; width: 100%; max-width: 500px; border-radius: 30px; overflow: hidden; border: 1px solid gray; box-shadow: 0 4px 10px rgba(0,0,0,0.05);
 }
 .catalog-page .cusstom-search-input { flex: 1; padding: 12px 20px; font-size: 16px; color: gray; border: none; outline: none; border-radius: 0; }
 .catalog-page .cusstom-search-btn {
   width: 60px; background-color: #7bc9d1; color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: background-color .3s ease;
 }
 .catalog-page .cusstom-search-btn:hover { background-color: #505050; }

 @media (max-width: 768px) {
   .catalog-page .feature-grid { grid-template-columns: 1fr; }
   .catalog-page .brand-info-section { padding: 20px; }
   .catalog-page .product__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
 }
 @media (max-width: 480px) {
   .catalog-page .product__grid { grid-template-columns: 1fr; gap: 12px; }
 }
 /* ==== Catalog Page (scoped) ============================================ */
.catalog-page .brand-info-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.catalog-page .breadcrumb { margin-bottom: 20px; color: #666; font-size: 14px; }
.catalog-page .breadcrumb a { color: #007bff; text-decoration: none; }
.catalog-page .breadcrumb a:hover { text-decoration: underline; }

.catalog-page .brand-header { text-align: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid #007bff; }
.catalog-page .brand-title { font-size: clamp(24px, 4vw, 48px); font-weight: 700; color: #333; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.catalog-page .brand-subtitle { font-size: clamp(16px, 2.5vw, 20px); color: #007bff; margin-bottom: 10px; font-weight: 600; }
.catalog-page .brand-dealer { font-size: clamp(14px, 2vw, 18px); color: #333; }

/* Markenliste: A–Z, Zahlen unter #, metin link görünümlü */
.catalog-page .brand-section { margin: 22px 0; }
.catalog-page .brand-section h3 { margin: 0 0 8px 0; font-size: 20px; color: #111; }
.catalog-page .brand-list { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 24px; }
@media (min-width: 900px) { .catalog-page .brand-list { columns: 3; } }
.catalog-page .brand-list li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin: 6px 0;
}
/* Hover: alt çizgi yok, hafif büyüme ve mavi */
.catalog-page .brand-list a {
  color: #333;
  text-decoration: none;
  display: inline-block;            /* transform için güvenli */
  transition: color .2s, transform .15s ease;
  transform-origin: left center;
}
.catalog-page .brand-list a:hover,
.catalog-page .brand-list a:focus-visible {
  color: #007bff;
  text-decoration: none;
  transform: scale(1.04);
}

.catalog-page .brand-about { margin-bottom: 30px; text-align: center; }
.catalog-page .brand-about h3 { font-size: clamp(18px, 3vw, 24px); color: #333; margin-bottom: 15px; }

.catalog-page .brand-features { margin-bottom: 30px; }
.catalog-page .brand-features h3 { font-size: clamp(18px, 3vw, 24px); color: #333; margin-bottom: 20px; text-align: center; }

.catalog-page .feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 20px; }
.catalog-page .feature-item { background: #fff; padding: 20px; border-radius: 8px; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.1); transition: transform .3s ease; }
.catalog-page .feature-item:hover { transform: translateY(-5px); }
.catalog-page .feature-item i { font-size: 36px; color: #007bff; margin-bottom: 15px; }
.catalog-page .feature-item h4 { font-size: 18px; color: #333; margin-bottom: 10px; font-weight: 600; }
.catalog-page .feature-item p { color: #666; line-height: 1.5; }

.catalog-page .brand-cta { text-align: center; margin-bottom: 30px; padding: 20px; background: #fff; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.catalog-page .brand-cta p { margin-bottom: 20px; font-size: 16px; color: #333; }
.catalog-page .btn-brand-cta { display: inline-block; background: linear-gradient(135deg, #007bff, #0056b3); color: #fff; padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all .3s ease; }
.catalog-page .btn-brand-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,123,255,.3); color: #fff; text-decoration: none; }

.catalog-page .brand-disclaimer { text-align: center; padding: 15px; background: rgba(108,117,125,.1); border-radius: 8px; border-left: 4px solid #6c757d; }
.catalog-page .brand-disclaimer p { margin: 0; color: #6c757d; font-style: italic; }

.catalog-page .brand-products-section { margin-top: 20px; }
.catalog-page .brand-products-section h2 { font-size: clamp(20px, 3.5vw, 28px); color: #333; margin-bottom: 15px; }

.catalog-page .search-results-header { background: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 30px; border-left: 4px solid #007bff; }

.catalog-page .search-form-catalog { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); margin-bottom: 30px; }
.catalog-page .search-row { display: flex; gap: 15px; margin-bottom: 15px; flex-wrap: wrap; }
.catalog-page .search-input-group { flex: 1; min-width: 200px; }
.catalog-page .search-input-group input, .catalog-page .search-input-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 14px; }
.catalog-page .search-btn-group { display: flex; gap: 10px; }
.catalog-page .search-submit, .catalog-page .search-clear { padding: 12px 24px; border: none; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all .3s ease; }
.catalog-page .search-submit { background: #007bff; color: #fff; }
.catalog-page .search-clear { background: #6c757d; color: #fff; }
.catalog-page .search-submit:hover { background: #0056b3; }
.catalog-page .search-clear:hover { background: #5a6268; }

.catalog-page .product__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; margin: 30px 0; }
.catalog-page .product__card {
  background: #fff; border: 1px solid #e0e0e0; border-radius: 8px; padding: 12px; transition: all .3s ease;
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  content-visibility: auto; contain-intrinsic-size: 320px 220px; /* performans */
}
.catalog-page .product__card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: #007bff; }

.catalog-page .product__title { font-size: 13px; font-weight: 500; color: #333; margin-bottom: 6px; line-height: 1.4; }
.catalog-page .product__description { font-size: 13px; color: #666; margin-bottom: 10px; line-height: 1.4; }
.catalog-page .product__price { background: #f8f9fa; padding: 6px 10px; border-radius: 4px; text-align: center; font-weight: 600; color: #007bff; border: 1px solid #e9ecef; font-size: 13px; }
.catalog-page .product__brand { font-size: 11px; color: #999; margin-bottom: 5px; text-transform: uppercase; font-weight: 500; }
.catalog-page .highlight { background: yellow; font-weight: bold; }

.catalog-page .pagination { display: flex; justify-content: center; align-items: center; margin: 30px 0; gap: 10px; }
.catalog-page .pagination a, .catalog-page .pagination span { padding: 8px 16px; border: 1px solid #ddd; text-decoration: none; color: #333; border-radius: 4px; transition: all .3s ease; }
.catalog-page .pagination a:hover { background: #007bff; color: #fff; border-color: #007bff; }
.catalog-page .pagination .current { background: #007bff; color: #fff; border-color: #007bff; }
.catalog-page .pagination .disabled { color: #ccc; cursor: not-allowed; }

.catalog-page .product-count { text-align: center; margin: 20px 0; color: #666; font-size: 14px; }

.catalog-page .cusstom-searchbox { display: flex; justify-content: center; padding: 20px; }
.catalog-page .cusstom-search-form { display: flex; width: 100%; max-width: 500px; border-radius: 30px; overflow: hidden; border: 1px solid gray; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
.catalog-page .cusstom-search-input { flex: 1; padding: 12px 20px; font-size: 16px; color: gray; border: none; outline: none; border-radius: 0; }
.catalog-page .cusstom-search-btn { width: 60px; background-color: #7bc9d1; color: #fff; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; transition: background-color .3s ease; }
.catalog-page .cusstom-search-btn:hover { background-color: #505050; }

@media (max-width: 768px) {
  .catalog-page .feature-grid { grid-template-columns: 1fr; }
  .catalog-page .brand-info-section { padding: 20px; }
  .catalog-page .product__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
}
@media (max-width: 480px) {
  .catalog-page .product__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ==== Product Page (scoped) ============================================ */
.product-page .nav__logo img{
  height:auto; max-height:80px; width:auto;
  aspect-ratio: 752 / 645; /* gerçek logo oranına göre güncelle */
  vertical-align:middle; margin-right:8px;
}

/* Arama kutusu: iki farklı isimlendirmeyi de destekle (custom/cusstom) */
.product-page .custom-searchbox,
.product-page .cusstom-searchbox { display:flex; justify-content:center; padding:20px; }
.product-page .custom-search-form,
.product-page .cusstom-search-form {
  display:flex; width:100%; max-width:500px; border-radius:30px; overflow:hidden;
  border:1px solid gray; box-shadow:0 4px 10px rgba(0,0,0,0.05);
}
.product-page .custom-search-input,
.product-page .cusstom-search-input {
  flex:1; padding:12px 20px; font-size:16px; color:gray; border:none; outline:none; border-radius:0;
}
.product-page .custom-search-btn,
.product-page .cusstom-search-btn {
  width:60px; background:#7bc9d1; color:#fff; border:none; display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:18px; transition:background-color .3s ease;
}
.product-page .custom-search-btn:hover,
.product-page .cusstom-search-btn:hover { background-color:#505050; }

.product-page .product-detail { max-width:1200px; margin:0 auto; padding:20px; }
.product-page .breadcrumb { margin-bottom:20px; color:#666; font-size:14px; }
.product-page .breadcrumb a { color:#007bff; text-decoration:none; }
.product-page .breadcrumb a:hover { text-decoration:underline; }

/* Yeni hero düzeni: solda kare görsel, sağda içerik */
.product-page .product-header {
  position:static; background:#fff; border-radius:12px; padding:30px;
  box-shadow:0 2px 15px rgba(0,0,0,.1); margin-bottom:30px;
}
.product-page .product-hero {
  display:grid; grid-template-columns: 320px 1fr; gap:24px; align-items:start;
}
.product-page .hero-media img {
  width:320px; height:320px; border-radius:12px; object-fit:cover;
}
.product-page .hero-content .product-brand {
  background:linear-gradient(135deg,#007bff,#0056b3); color:#fff; padding:8px 16px; border-radius:20px;
  font-size:14px; font-weight:600; display:inline-block; margin-bottom:15px; text-transform:uppercase; letter-spacing:.5px;
}
.product-page .hero-content .product-title { font-size:28px; font-weight:700; color:#333; margin-bottom:15px; line-height:1.3; }
.product-page .hero-content .product-description { font-size:16px; color:#666; line-height:1.6; margin-bottom:20px; }
.product-page .hero-content .product-price {
  background:linear-gradient(135deg,#28a745,#20c997); color:#fff; padding:15px 25px; border-radius:8px; font-size:18px; font-weight:700; text-align:center; max-width:300px;
}

/* Eski absolute görseli kapat (yeni düzende gereksiz) */
.product-page .product-image { display:none !important; }

.product-page .product-brand { /* hero-content içinde de var; eski kullanım için uyumluluk */
  background:linear-gradient(135deg,#007bff,#0056b3); color:#fff; padding:8px 16px; border-radius:20px;
  font-size:14px; font-weight:600; display:inline-block; margin-bottom:15px; text-transform:uppercase; letter-spacing:.5px;
}
.product-page .product-title { font-size:28px; font-weight:700; color:#333; margin-bottom:15px; line-height:1.3; }
.product-page .product-description { font-size:16px; color:#666; line-height:1.6; margin-bottom:20px; }
.product-page .product-price { background:linear-gradient(135deg,#28a745,#20c997); color:#fff; padding:15px 25px; border-radius:8px; font-size:18px; font-weight:700; text-align:center; max-width:300px; }

/* Alt bloklar: Technische Daten ve Zusätzliche Informationen */
.product-page .product-details { display:grid; grid-template-columns:1fr 1fr; gap:30px; margin-bottom:30px; }
.product-page .detail-card { background:#fff; border-radius:12px; padding:25px; box-shadow:0 2px 15px rgba(0,0,0,.1); }
.product-page .detail-card h3 { color:#333; margin-bottom:20px; font-size:20px; border-bottom:2px solid #007bff; padding-bottom:10px; }
.product-page .detail-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid #f0f0f0; }
.product-page .detail-row:last-child { border-bottom:none; }
.product-page .detail-label { font-weight:600; color:#555; min-width:120px; }
.product-page .detail-value { color:#333; text-align:right; flex:1; margin-left:15px; }

/* CTA ve benzer ürünler */
.product-page .cta-section { background:linear-gradient(135deg,#f8f9fa,#e9ecef); border-radius:12px; padding:30px; text-align:center; margin-bottom:30px; }
.product-page .cta-title { font-size:24px; color:#333; margin-bottom:15px; }
.product-page .cta-description { color:#666; margin-bottom:25px; font-size:16px; }
.product-page .cta-buttons { display:flex; gap:15px; justify-content:center; flex-wrap:wrap; }
.product-page .btn-primary, .product-page .btn-secondary { padding:15px 30px; border:none; border-radius:8px; font-weight:600; text-decoration:none; transition:all .3s ease; cursor:pointer; font-size:16px; }
.product-page .btn-primary { background:linear-gradient(135deg,#007bff,#0056b3); color:#fff; }
.product-page .btn-primary:hover { transform:translateY(-2px); box-shadow:0 5px 15px rgba(0,123,255,.3); }
.product-page .btn-secondary { background:#fff; color:#007bff; border:2px solid #007bff; }
.product-page .btn-secondary:hover { background:#007bff; color:#fff; }

.product-page .similar-products { background:#fff; border-radius:12px; padding:30px; box-shadow:0 2px 15px rgba(0,0,0,.1); }
.product-page .similar-products h3 { color:#333; margin-bottom:20px; font-size:22px; border-bottom:2px solid #007bff; padding-bottom:10px; }
.product-page .similar-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }
.product-page .similar-item { background:#f8f9fa; border-radius:8px; padding:15px; text-decoration:none; color:inherit; transition:all .3s ease; border:1px solid #e9ecef; }
.product-page .similar-item:hover { transform:translateY(-2px); box-shadow:0 4px 15px rgba(0,0,0,.1); border-color:#007bff; }
.product-page .similar-item h4 { color:#333; font-size:16px; margin-bottom:8px; line-height:1.4; }
.product-page .similar-item p { color:#666; font-size:14px; line-height:1.4; }

/* Responsive */
@media (max-width: 768px) {
  .product-page .product-hero { grid-template-columns: 1fr; }
  .product-page .hero-media img { width:100%; height:auto; aspect-ratio: 1 / 1; } /* kare oranı koru */
  .product-page .product-details { grid-template-columns:1fr; gap:20px; }
  .product-page .product-title { font-size:24px; }
  .product-page .cta-buttons { flex-direction:column; align-items:center; }
  .product-page .btn-primary, .product-page .btn-secondary { width:100%; max-width:300px; }
  .product-page .similar-grid { grid-template-columns:1fr; }
}

/* Global mini kural: Cookie banner başlangıçta gizli */
#cookie-banner { display:none; }
/* ==== /Product Page ===================================================== */


/* FAQ Page Styles */
.faq-page .page-header {
    text-align: center;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.faq__intro {
    text-align: center;
    margin-bottom: 3rem;
}

.faq__intro h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.faq__categories {
    margin-bottom: 3rem;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cat-btn {
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.cat-btn:hover,
.cat-btn.active {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
}

.faq__content {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.faq__item:hover {
    box-shadow: 0 4px 25px rgba(30,64,175,0.1);
    transform: translateY(-2px);
}

.faq__question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq__question:hover {
    background: #f8f9fa;
}

.faq__question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.4;
}

.faq__question i {
    font-size: 1.5rem;
    color: #1e40af;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq__item.active .faq__question i {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
}

.faq__answer p {
    margin: 0 0 1rem 0;
    color: #555;
    line-height: 1.6;
}

.faq__answer ul {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.faq__answer li {
    padding: 0.3rem 0;
    color: #666;
}

.faq__answer a {
    color: #1e40af;
    text-decoration: none;
}

.faq__answer a:hover {
    text-decoration: underline;
}

.faq__cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn--primary {
    background: white;
    color: #1e40af;
}

.btn--primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn--secondary:hover {
    background: white;
    color: #1e40af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq__question {
        padding: 1rem 1.5rem;
    }
    
    .faq__item.active .faq__answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .category-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .cat-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}