@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.navbar, .nav-links.active {
  z-index: 2000 !important;
}
.leaflet-control, .leaflet-control-attribution {
  z-index: 10 !important;
}

.navbar {
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 8vh;
  z-index :1;
  padding: 1.5rem 5rem;
  background-color: white;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.7);
}

.nav-brand img {
  width: 80px;
  margin-top: 5px;
  border-radius: 50%;
  height: 80px;
  transition: 1s ease;
}


.nav-brand img:hover {
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 40px #e74c3c);
}

#loading {
  animation: logo 2s infinite;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999
}

.loading img {
  animation: logo 2s infinite;
}

@keyframes logo {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }

}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #ac0f0f;
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
  opacity: 1;
  z-index: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  opacity: 1;
}

.nav-links a.active {
  color: #ac0f0f;
}

/* İletişim linki için özel stil */
.nav-links a[href="iletisim.html"]::after {
  display: none;
}

.nav-links a[href="iletisim.html"]:hover::after {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ac0f0f;
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 2rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;
    z-index: 2000;
    position: fixed;
  }

  .nav-links a {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
}

@media (max-width: 600px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 2000 !important;
    height: 72px !important;
    padding: 0 1.2rem !important;
    background: #fff;
  }
  .nav-brand img {
    height: 56px !important;
    width: 56px !important;
    margin-top: 0 !important;
  }
  body {
    padding-top: 72px !important;
    margin: 0 !important;
  }
  .nav-links {
    font-size: 1.1rem;
  }
  /* Bayi Ol butonu */
  #bayi-ol-btn {
    width: 64px;
    height: 64px;
    bottom: 12px;
    right: 12px;
    border-radius: 10px;
  }
  #bayi-ol-btn i {
    font-size: 1.2rem;
    margin-top: 6px;
  }
  #bayi-ol-btn span {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }
  /* Modal pencere */
  .modal-content {
    width: 96vw !important;
    min-width: 0 !important;
    max-width: 98vw !important;
    margin: 8vw auto !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  }
  .modal-body {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem !important;
  }
  .modal-info h2 {
    font-size: 1.15rem !important;
    margin-bottom: 0.7rem !important;
    text-align: center !important;
    font-weight: 700 !important;
  }
  .modal-description {
    font-size: 0.98rem !important;
    margin-bottom: 1.1rem !important;
    text-align: center !important;
  }
  .modal-details {
    grid-template-columns: 1fr !important;
    gap: 0.7rem !important;
    padding: 0.7rem !important;
  }
  .detail-item {
    font-size: 0.93rem !important;
    padding: 0.5rem 0.7rem !important;
    border-radius: 8px !important;
    margin-bottom: 0.3rem !important;
  }
  .detail-item i {
    font-size: 1.1rem !important;
    width: 36px !important;
    height: 36px !important;
  }
  /* Ürün kartı */
  .product-card, .slider-card {
    width: 98vw !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 auto 18px auto !important;
    border-radius: 14px !important;
  }
  .product-image, .slider-image {
    width: 100% !important;
    height: 160px !important;
    min-height: 120px !important;
    margin: 0 auto 8px auto !important;
  }
  .product-image img, .slider-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
  /* Bayi kartı */
  .dealer-card {
    width: 98vw !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 auto 14px auto !important;
    border-radius: 12px !important;
    padding: 1.1rem !important;
    font-size: 1rem !important;
  }
  .dealer-info h3 {
    font-size: 1.1rem !important;
  }
  .dealer-actions .btn {
    font-size: 0.98rem !important;
    padding: 0.7rem 0.5rem !important;
  }
  /* Gridler */
  .products-grid, .dealers-list {
    grid-template-columns: 1fr !important;
    max-width: 98vw !important;
    padding: 0 !important;
  }
  /* Fazladan boşlukları kaldır */
  .products-page br, .products br, .dealers-page br {
    display: none !important;
  }
  .hero {
    height: 120px;
    min-height: 80px;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .hero-slider {
    height: 100%;
    min-height: 80px;
  }
  .hero-slide img {
    width: 100%;
    max-height: 100%;
    min-height: 80px;
  }
  .products {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

@media (max-width: 430px) {
  .navbar {
    height: 64px !important;
  }
  .nav-brand img {
    height: 60px !important;
    width: 60px !important;
  }
  body {
    padding-top: 64px !important;
  }
  .modal-content {
    width: 99vw !important;
    margin: 1vw auto !important;
  }
}

@media (max-width: 390px) {
  .navbar {
    height: 56px !important;
  }
  .nav-brand img {
    height: 36px !important;
    width: 36px !important;
  }
  body {
    padding-top: 56px !important;
  }
  .modal-content {
    width: 100vw !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 375px) {
  .navbar {
    height: 48px !important;
  }
  .nav-brand img {
    height: 30px !important;
    width: 30px !important;
  }
  body {
    padding-top: 48px !important;
  }
}

.hero {
  width: 100vw;
  max-width: 100vw;
  height: 480px;
  min-height: 320px;
  padding: 0;
  margin: 0;
  margin-top: 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.hero-content {
  margin-left: 150px;
  flex: 1;
  max-width: 600px;
  margin-top: 100px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.hero-slider {
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
  background: #fff;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.7s;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100vw;
  max-width: 100vw;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background-color: #e74c3c;
  color: white;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.products {
  background: url('img/backgroundSodapng.png') no-repeat center top;
  background-size: cover;
  padding: 4rem 2rem;
  margin-top: 0;
  opacity: 1 !important;
}

.products h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  justify-items: center;
  opacity: 1 !important;
}

.product-card {
  background: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
  border: 2px solid #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s;
  width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 180px;
  height: 180px;
  margin: 24px auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.product-content p {
  color: #666;
  margin-bottom: 15px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 8px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-buttons .btn.primary {
  background: #ff6b6b;
  color: white;
}

.product-buttons .btn.secondary {
  background: #4ecdc4;
  color: white;
}

.product-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media (max-width: 900px) {
  .products-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .product-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .products-grid {
    padding: 0 0.5rem;
  }

  .product-card {
    max-width: 100%;
  }
}

/* 3. ürün satırda tek kalırsa ortalansın */
.products-grid > .product-card:nth-child(3):nth-last-child(2) {
  grid-column: 1 / span 2;
  justify-self: center;
}

.map-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.map-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #ac0f0f;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #e74c3c;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  color: #ac0f0f;
  background-color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 40px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero-image img {
    display: none;
  }
}

.features {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.features h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: #e74c3c;
  margin-bottom: 1rem;
}

.testimonials {
  padding: 4rem 2rem;
  background-color: white;
}

.testimonials h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.testimonial-slider {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  padding: 1rem;
}

.testimonial-card {
  min-width: 300px;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.newsletter {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  background: white;
  color: #e74c3c;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial-card {
    min-width: auto;
  }
}

.cookie-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cookie-notice {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-overlay.show .cookie-notice {
  transform: scale(1);
}

.cookie-notice h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cookie-notice p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cookie-buttons .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-buttons .btn.primary {
  background-color: #e74c3c;
  color: white;
  border: none;
}

.cookie-buttons .btn.secondary {
  background-color: transparent;
  border: 2px solid #e74c3c;
  color: #e74c3c;
}

.cookie-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.subscription-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #2ecc71;
  color: white;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.about-content {
  margin-top: 200px;
  max-width: 800px;
  margin: 0 auto;
}

.about-content h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.about-text p {
  color: #7f8c8d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-section {
  padding: 4rem 2rem;
  background-color: #f8f9fa;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.form-group input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
  .about-content,
  .contact-content {
    padding: 0 1rem;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.stat-card h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.about-team {
  margin-top: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.team-member h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-color);
  font-weight: 500;
}

.dealers-page {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.dealers-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.dealers-sidebar {
  flex: 1;
  min-width: 320px;
  max-width: 420px;
}

.dealers-map-container {
  flex: 2;
  min-width: 400px;
  height: 600px;
}

.dealers-search-container input,
.dealers-search-container select,
.dealers-search-container button {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.dealers-search-container button {
  margin-bottom: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dealers-search-container button:hover {
  background: var(--primary-color-dark);
}

@media (max-width: 1024px) {
  .dealers-sidebar {
    max-width: 100%;
    min-width: 0;
  }

  .dealers-map-container {
    width: 100%;
    min-width: 0;
  }
}

#dealers-map {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

#dealers-list {
  max-height: 410px;
  overflow-y: auto;
  padding-right: 8px;
}

@media (max-width: 1024px) {
  .dealers-page {
    padding: 1.5rem;
  }
  
  .dealers-page > div {
    flex-direction: column;
  }

  .dealers-page > div > div:first-child {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .dealers-page > div > div:last-child {
    width: 100%;
    min-width: 0;
  }

  #dealers-map {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .dealers-page {
    padding: 1rem;
  }

  .dealers-search-container {
    padding: 1rem;
  }

  #dealers-map {
    height: 350px;
  }

  #dealers-list {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .dealers-page {
    padding: 0.8rem;
  }

  #dealers-map {
    height: 300px;
  }

  .dealers-search-container input,
  .dealers-search-container select,
  .dealers-search-container button {
    font-size: 0.9rem;
  }
}

.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow);
  animation: slideIn 0.3s ease-out;
  z-index: 1000;
}

.cart-notification i {
  font-size: 1.2rem;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* About Page Styles */
.about-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/yedekwebkapakhakkımzıda.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-bottom: 4rem;
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.about-timeline {
  padding: 4rem 5%;
  background: var(--light-bg);
  position: relative;
}

.about-timeline h2 {
  text-align: center;
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.about-timeline h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background: #e0e0e0;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ff6b6b;
  border-radius: 50%;
  left: 50%;
  margin-left: -10px;
  top: 0;
  z-index: 1;
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 20px;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: 55%;
}

.timeline-year {
  font-size: 24px;
  font-weight: bold;
  color: #ff6b6b;
  margin-bottom: 10px;
}

.timeline-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-card h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 20px;
}

.timeline-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.timeline-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.timeline-image img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
  }
}

.about-values {
  padding: 4rem 5%;
  background: var(--white);
}

.about-values h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.about-production {
  padding: 4rem 5%;
  background: var(--light-bg);
}

.production-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.production-text h2 {
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.production-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.production-steps {
  list-style: none;
  margin-top: 2rem;
}

.production-steps li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.production-steps i {
  color: var(--primary-color);
}

.about-team {
  padding: 4rem 5%;
  background: var(--white);
}

.about-team h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--light-bg);
  border-radius: 10px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--primary-color);
}

.team-member h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--secondary-color);
  transform: scale(1.2);
}

.news-page {
  padding: 3rem 5%;
  background: var(--light-bg);
}

.news-header {
  text-align: center;
  margin-bottom: 3rem;
}

.news-header h1 {
  color: var(--secondary-color);
  font-size: 3rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.news-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.news-header p {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.news-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-color);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.news-date .day {
  font-size: 1.5rem;
  line-height: 1;
}

.news-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.news-content {
  padding: 2rem;
}

.news-content h3 {
  color: var(--secondary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  transition: var(--transition);
}

.news-card:hover .news-content h3 {
  color: var(--primary-color);
}

.news-content p {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.news-source {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .news-page {
    padding: 2rem;
  }

  .news-header h1 {
    font-size: 2.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-image {
    height: 200px;
  }
}

.products-page {
  padding: 4rem 5%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
  min-height: 100vh;
}

.products-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.products-header h1 {
  color: var(--secondary-color);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.products-header p {
  color: var(--text-color);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  justify-items: center;
  opacity: 1 !important;
}

.product-card {
  background: #fff !important;
  opacity: 1 !important;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
  border: 2px solid #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s;
  width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 180px;
  height: 180px;
  margin: 24px auto 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.product-content p {
  color: #666;
  margin-bottom: 15px;
}

.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-buttons .btn {
  flex: 1;
  text-align: center;
  padding: 8px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.product-buttons .btn.primary {
  background: #ff6b6b;
  color: white;
}

.product-buttons .btn.secondary {
  background: #4ecdc4;
  color: white;
}

.product-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  color: white;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: var(--white);
  margin: 10% auto;
  padding: 0;
  width: 80%;
  max-width: 800px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.3s ease;
}

.close:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 3rem;
}

.modal-info h2 {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-align: center;
}

.modal-description {
  color: var(--text-color);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  font-size: 1.2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.modal-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.detail-item:hover {
  transform: translateY(-5px);
}

.detail-item i {
  color: var(--primary-color);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
}

.detail-label {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.detail-value {
  color: var(--text-color);
  font-size: 1rem;
  margin-left: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-body {
    padding: 2rem;
  }

  .modal-info h2 {
    font-size: 2rem;
  }

  .modal-description {
    font-size: 1.1rem;
  }

  .modal-details {
    grid-template-columns: 1fr;
  }
}

.dealers-search-container {
  max-width: 800px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.search-input-group {
  display: flex;
  gap: 10px;
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-input-group input,
.search-input-group select {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
}

.search-input-group input {
  flex: 2;
}

.search-input-group select {
  flex: 1;
}

.dealers-map {
  height: 400px;
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#map {
  width: 100%;
  height: 100%;
}

.dealer-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dealer-info h3 {
  color: #333;
  margin-bottom: 10px;
  font-size: 18px;
}

.dealer-info p {
  color: #666;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dealer-actions {
  display: flex;
  gap: 10px;
}

.become-dealer {
  background: #f8f9fa;
  padding: 60px 0;
  margin-top: 60px;
}

.become-dealer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.become-dealer h2 {
  color: #333;
  margin-bottom: 15px;
  font-size: 28px;
}

.become-dealer p {
  color: #666;
  margin-bottom: 30px;
}

.dealer-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6b6b;
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

@media (max-width: 768px) {
  .search-input-group {
    flex-direction: column;
  }
  
  .dealer-card {
    flex-direction: column;
    text-align: center;
  }
  
  .dealer-info p {
    justify-content: center;
  }
  
  .dealer-actions {
    margin-top: 20px;
    justify-content: center;
  }
}

.dealer-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.dealer-form {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.product-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  position: relative;
  padding-top: 60px;
}

.product-slider {
  width: 100%;
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  position: relative;
  z-index: 0;
}

.slider-card {
  background: #fff;
  opacity: 1 !important;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
  border: 2px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  width: 340px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: none;
  position: relative;
  padding: 0;
}

.slider-card.slider-center {
  transform: scale(1.12) translateY(-12px);
  z-index: 2;
  box-shadow: 0 16px 40px rgba(44,62,80,0.18);
}

.slider-card.slider-left {
  transform: scale(0.82) translateX(-40px) translateY(32px);
  z-index: 1;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}

.slider-card.slider-right {
  transform: scale(0.82) translateX(40px) translateY(32px);
  z-index: 1;
  box-shadow: 0 4px 24px rgba(44,62,80,0.10);
}

.slider-card.slider-center,
.slider-card.slider-left,
.slider-card.slider-right {
  pointer-events: auto;
}

.slider-card .slider-image {
  width: 100%;
  height: 210px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.3s, filter 0.3s;
}

.slider-card:hover .slider-image img {
  transform: scale(1.07);
  filter: brightness(1.08) saturate(1.1);
}

.slider-card .slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 18px 18px;
  transition: transform 0.3s, filter 0.3s;
}

.slider-card .slider-content {
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
}

.slider-card .slider-content h3 {
  font-size: 1.25rem;
  color: #222;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.slider-card .slider-content p {
  color: #888;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
}

.slider-card .slider-content .btn.secondary {
  width: 100%;
  background: linear-gradient(90deg, #e74c3c 0%, #ffb347 100%);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 12px 0;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(231,76,60,0.08);
  transition: background 0.3s, box-shadow 0.3s;
  display: block;
  text-align: center;
}

.slider-card .slider-content .btn.secondary:hover {
  background: linear-gradient(90deg, #ffb347 0%, #e74c3c 100%);
  box-shadow: 0 4px 16px rgba(231,76,60,0.16);
}

@media (max-width: 900px) {
  .product-slider-container {
    max-width: 98vw;
  }
  .slider-card {
    width: 90vw;
    min-height: 340px;
    margin: 0 4px;
  }
  .slider-card .slider-image {
    width: 140px;
    height: 140px;
    margin: 18px auto 8px auto;
  }
}

@media (max-width: 600px) {
  .product-slider {
    min-height: 320px;
  }
  .slider-card.slider-left,
  .slider-card.slider-right {
    display: none !important;
  }
  .slider-card.slider-center {
    transform: scale(1.12) translateY(-12px);
    z-index: 2;
    box-shadow: 0 16px 40px rgba(44,62,80,0.18);
  }
  .slider-card.slider-left {
    transform: scale(0.82) translateX(-40px) translateY(32px);
    z-index: 1;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  }
  .slider-card.slider-right {
    transform: scale(0.82) translateX(40px) translateY(32px);
    z-index: 1;
    box-shadow: 0 4px 24px rgba(44,62,80,0.10);
  }
  .slider-card {
    width: 98vw;
    min-height: 260px;
  }
  .slider-card .slider-image {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    margin: 0 auto 8px auto !important;
  }
  .slider-card .slider-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }
}

/* BAYİ OL BUTONU RESPONSIVE */
#bayi-ol-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #ac0f0f;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  cursor: pointer;
  text-decoration: none;
  gap: 4px;
  transition: box-shadow .2s,transform .2s;
}
#bayi-ol-btn i {
  font-size: 2.6rem;
  color: #ffe066;
  margin-top: 16px;
}
#bayi-ol-btn span {
  font-weight: 900;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #7a1a1a;
}
@media (max-width: 600px) {
  #bayi-ol-btn {
    width: 70px;
    height: 70px;
    bottom: 16px;
    right: 16px;
    border-radius: 12px;
    min-width: 0;
    min-height: 0;
    max-width: 100vw;
    max-height: 100vw;
  }
  #bayi-ol-btn i {
    font-size: 1.4rem;
    margin-top: 8px;
  }
  #bayi-ol-btn span {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  .modal-content {
    width: 96vw !important;
    min-width: 0 !important;
    max-width: 98vw !important;
    margin: 8vw auto !important;
    border-radius: 16px !important;
    padding: 0 !important;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
  }
  .modal-body {
    padding: 1.6rem 1.2rem 1.2rem 1.2rem !important;
  }
  .modal-info h2 {
    font-size: 1.25rem !important;
    margin-bottom: 1.1rem !important;
    text-align: center !important;
    font-weight: 700 !important;
    margin-top: 0.5rem !important;
  }
  .modal-description {
    font-size: 1.05rem !important;
    margin-bottom: 1.2rem !important;
    text-align: center !important;
    margin-top: 0.5rem !important;
  }
}

/* BAYİLERİMİZ RESPONSIVE */
@media (max-width: 900px) {
  .dealers-page > div {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  #dealers-map {
    min-width: 0 !important;
    width: 100% !important;
    height: 320px !important;
    margin-top: 12px;
  }
  .dealer-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

/* ÜRÜNLERİMİZ RESPONSIVE */
@media (max-width: 900px) {
  .products-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .product-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .products-grid {
    padding: 0 0.5rem;
  }

  .product-card {
    max-width: 100%;
  }
}

.marquee-container {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  background: #faf7ef;
  padding: 0.5rem 0;
  margin: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 2.6rem;
  font-weight: 800;
  color: #d1d1ce;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 #fff, 2px 2px 0 #e0e0e0;
  animation: marquee 18s linear infinite;
  font-family: 'Poppins', Arial, sans-serif;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 900px) {
  .marquee-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .marquee-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  .marquee-container {
    padding: 0.2rem 0;
  }
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-slider-dots .dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ac0f0f;
  opacity: 0.6;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}
.hero-slider-dots .dot.active {
  background: #ac0f0f;
  opacity: 1;
}
@media (max-width: 900px) {
  .hero-slider {
    height: 200px;
    border-radius: 10px;
  }
  .hero-slide img {
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .hero-slider {
    height: 120px;
    border-radius: 6px;
  }
  .hero-slide img {
    border-radius: 6px;
  }
}

@media (max-width: 900px) {
  .production-content {
    grid-template-columns: 1fr !important;
  }
  .production-image img {
    width: 90vw !important;
    max-width: 350px !important;
    height: auto !important;
    min-height: 180px !important;
    display: block;
    margin: 24px auto 0 auto !important;
  }
}

@media (max-width: 600px) {
  .production-image img {
    width: 98vw !important;
    max-width: 98vw !important;
    min-width: 220px !important;
    height: auto !important;
    min-height: 160px !important;
    display: block;
    margin: 18px auto 0 auto !important;
  }
}