@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');

/* --- NAVBAR --- */
body {
  font-family: "Electrolize", sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  width: 96%;
  background:black ;
  color: #fff;
  font-family: "Electrolize", Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 30px;
  font-size: 15px;
  position: relative;
  z-index: 1000;
}

.topbar-left {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.2px;
  position: relative;
}

.topbar-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background:#25D366;
  transition: width .3s;
  margin-top: 2px;
}

.topbar-link:hover {
  color: #25D366;
}
.topbar-link:hover::after {
  width: 100%;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 6px 7px 6px 10px; /* sağ padding azaldı */
  border-radius: 22px;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  transition: background 0.2s;
  gap: 7px;
  box-shadow: 0 2px 7px 0 rgba(38, 210, 102, 0.07);
}
.whatsapp-btn:hover {
  background: #1EBE57;
}
.whatsapp-btn svg {
  margin-right: 4px;
  min-width: 22px;
  min-height: 22px;
}
.topbar-right {
  margin-right: 20px;
}


/* Mobil uyum için */
@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 8px 7px;
    font-size: 14px;
  }
  .topbar-left {
    justify-content: flex-start;
    gap: 11px;
    flex-wrap: wrap;
  }
  .topbar-right {
    justify-content: flex-end;
    margin-top: 4px;
  }
  .whatsapp-btn .whatsapp-text {
    display: none; /* Sadece ikon kalsın */
  }
}

/* Daha küçük mobil ekranlar için */
@media (max-width: 500px) {
  .topbar {
    font-size: 13px;
    padding: 6px 4px;
  }
  .topbar-left {
    gap: 8px;
  }
  .whatsapp-btn {
    padding: 6px 8px 6px 8px;
  }
}


/* NAVBAR */
.header-wrapper {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  position: relative;
}

.logo img {
  max-width: 75px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-right: 22px;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  color: #222;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: #f3f3fa;
  color: #240865;
}

/* Toggle Butonu */
.nav-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #240865;
  cursor: pointer;
}

/* Mobil Menü */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 0 0 12px 12px;
    z-index: 999;
  }

  .nav-links.open {
    max-height: 200px;
  }

  .nav-links li {
    width: 100%;
    padding-left: 16px;
    margin: 10px 0;
  }
}


/* Footer */

.footer {
  background:black ;
  color: white;
  padding: 40px 0 20px; /* Padding  */
  margin-top: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px; /* Çizgi boyutu */
  background: linear-gradient(90deg, #000000, #2b2929,#25292f);
  z-index: 2;
}

.footer-column {
  flex: 1 1 200px;
  margin: 0 10px 20px; /* Margin */
  padding: 15px; /* Padding */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px; /* Köşeler */
  transition: all 0.3s ease;
}

.footer-column:hover {
  transform: translateY(-3px); /* Efekt */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Gölge */
}

.footer-column h4 {
  margin-bottom: 15px;
  font-size: 1.1rem; /* Yazı boyutu  */
  position: relative;
  padding-bottom: 8px; 
  color: #fff;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px; 
  height: 2px;
  background: #3498db;
}

.footer-column p {
  font-size: 0.85rem; 
  line-height: 1.6; /* Satır aralığı  */
  margin-bottom: 10px; 
  color: #ecf0f1;
}

.social-icons {
  display: flex;
  gap: 10px; /* Boşluk  */
  margin-top: 15px; 
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; 
  height: 32px; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem; 
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #25D366;
  transform: translateY(-2px); /* Efekt  */
}

.footer-bottom {
  text-align: center;
  padding-top: 20px; 
  margin-top: 20px; 
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem; 
  color: #bdc3c7;
}
.footer-bottom a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 15px; /* Daha da  */
  }
  
  .footer-column {
    flex: 1 1 100%; /* Mobilde tam genişlik */
    margin: 0 0 15px; /* Margin ayarı */
    padding: 12px; /* Daha küçük padding */
  }
  
  .social-icons a {
    width: 28px; /* Mobilde daha küçük */
    height: 28px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 15px;
    align-items: flex-start;
  }

  .logo {
    margin-bottom: 15px;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .footer-column {
    flex: 1 1 100%;
    margin: 0 0 20px;
  }
}
/* Orta Resim */
/* From Uiverse.io by ashwin_5681 */
.slider-container {
 height: 340px;
  background-color: white;
  box-shadow:black 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}
.slider {
  margin-top: 20px;
  width: 100%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #0011f8 10% 90%, transparent);
}

.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}

.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(
    (10s / var(--quantity)) * (var(--position) - 1) - 10s
  ) !important;
}

.slider .list .item a {
  display: block; /* Linkin tüm item alanını kaplamasını sağlar */
  width: 100%;
  height: 100%;
}

.slider .list .item img {
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Resimleri boyutlarına oranlı bir şekilde sığdırır ve boşluk bırakır */
  
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}

.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}

.slider .item:hover {
  filter: grayscale(0);
}

.slider[reverse="true"] .item {
  animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
  from {
    left: calc(var(--width) * -1);
  }
  to {
    left: 100%;
  }
}

/* Butonlar */
.reward-btn {
    width: 120px;
    height: 40px;
    background-color: #101218;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

/* Ana İçerik */
.main-container {
 
  gap: 40px;
    flex: 1;
    padding: 0px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #000000;
    font-size: 30px;
}

/* Arama Formu */
.arama-formu {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    margin-top: -15px;
}

.input {
    width: 300px;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input:focus {
    outline: none;
    border-color: #240865;
    box-shadow: 0 0 5px rgba(36, 8, 101, 0.3);
}

.input::placeholder {
    color: #888;
}

.urunler-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 50px;
    padding: 20px 0;
}

.card {
  margin-right: 140px; bu kodu mobilede uygun hale getir 
  gap: 50px;
    width: 100%;
    height: 400px;
    border-radius: 30px;
    background: #ffffff;
    position: relative;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    
}

.urun-resmi {
  margin-right: 20px;
  width: 100%;       /* kapsayıcı genişliğini alır */
  height: auto;      /* orijinal en-boy oranını korur */
  object-fit: cover !important; /* taşma olmadan kırpar, bulanıklaştırmaz */
 margin-bottom: 12px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0px;
}

  


.card-details {
    
    flex-grow: 1;
    gap: 0.5em;
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}
.card-details .text-body {
    
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.card-details input.text-body {
  border: none;
  outline: none;
  box-shadow: none;
}

.urun-butonlar {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 1rem;
}

.card-button {
    transform: translateY(150%);
    width: 100%;
    border-radius: 10px;
    border: none;
    background-color: #240865;
    color: #fff;
    font-size: 0.9rem;
    padding: 0.6rem;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.card .card-details {
  color: #333333;   
}





.card .card-details .text-body {
  background-color: white;
  color: #000000;        
}

.card .card-details .text-body:hover {
  background-color: #f0f0f0; /* Hover rengi */
  color: #000000; /* Hover rengi */
}
.card .card-details .urun-fiyat {
  color: white;         
  font-size: 1.2rem;      
}

/* 5. Eğer hâlâ başka bir kural baskın geliyorsa, !important ile kesinleştirme */
.card .card-details,
.card .card-details .text-title{
  background-color: #ffffff !important;
  color: #000000 !important;
}
.card .card-details .text-body{
  background-color: #ffffff !important;
}
.card .card-details .urun-fiyat {
  /* color: #333333 !important; */
}


.text-body {
    color: rgb(255, 255, 255);
    font-size: 0.8rem;
    flex-grow: 1;
    margin: 5px 0;
}

.text-title {
    font-size: 1.1em;
    font-weight: bold;
    margin: 0;
    color: #000000;
}

.urun-fiyat {
    font-weight: bold;
    color: #ffffff;
    margin-top: 50px;
    font-size: 1.1rem;
}

/* Hover effects */
.card:hover {
    border-color: #240865;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card:hover .card-button {
    transform: translateY(0);
    opacity: 1;
}

.card-button:hover {
    background-color: #1a0647;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .urunler-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
        padding: 10px;
    }

    .card {
        margin-right: 0 !important;
        width: 100% !important;
        height: auto;
        padding: 1rem;
    }

    .urun-resmi {
        height: auto;
        max-height: 200px;
        margin-right: 0;
    }

    .text-title {
        font-size: 1rem;
    }

    .text-body {
        font-size: 0.75rem;
    }

    .urun-fiyat {
        margin-top: 20px;
        font-size: 1rem;
    }

    .urun-butonlar {
        flex-direction: column;
        gap: 10px;
    }

    .card-button {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}


/* Hover effects */
.card:hover {
    border-color: #240865;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.card:hover .card-button {
    transform: translateY(0);
    opacity: 1;
}

.card-button:hover {
    background-color: #1a0647;
}
@media (max-width: 768px) {
  .urunler-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 10px;
  }

  .card {
    margin-right: 0 !important;
    width: 100% !important;
    height: auto;
    padding: 1rem;
  }

  .urun-resmi {
    height: auto;
    max-height: 200px;
  }

  .text-title,
  .text-body,
  .urun-fiyat {
    font-size: 0.9rem;
  }

  .urun-butonlar {
    flex-direction: column;
    gap: 10px;
  }

  .card-button {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
}


/* İletişim Sayfası */
.contact-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
  }
  
  .contact-title {
    text-align: center;
    color: #240865;
    margin-bottom: 30px;
    font-size: 2.5em;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .contact-info,
  .contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .contact-info h2,
  .contact-form h2 {
    color: #240865;
    margin-bottom: 20px;
    font-size: 1.8em;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: #e60000;
    width: 20px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Electrolize', sans-serif;
    font-size: 1em;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #240865;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #e60000;
  }
  
  .alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
  }
  
  .alert.success {
    background-color: #d4edda;
    color: #155724;
  }
  
  .alert.error {
    background-color: #f8d7da;
    color: #721c24;
  }
  /* About Page Styles */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    flex: 1;
}

.about-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('img/about-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
}

.hero-overlay {
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.5rem;
    color: #f8f8f8;
}

.about-content {
    padding: 0 20px;
}

.about-mission, .about-vision, .about-values, .about-history, .about-team {
    margin-bottom: 60px;
}

.about-content h2 {
    color: #240865;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #5b0202;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2.5rem;
    color: #5b0202;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #240865;
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    font-size: 1rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #5b0202;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-year {
    padding: 10px 15px;
    background-color: #5b0202;
    color: white;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -80px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -80px;
}

.timeline-content {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: #240865;
    margin-bottom: 10px;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #5b0202;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-overlay p {
        font-size: 1.2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-year {
        left: 15px !important;
        right: auto !important;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 80%;
    }
}/* Detay Sayfası Özel Stiller */
.product-detail-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 30px;
}

.product-gallery {
  flex: 1;
  min-width: 300px;
}

.main-image {
  margin-bottom: 20px;
}

.main-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 8px;
  object-fit: contain;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  border-color: #5b0202;
}

.product-info {
  flex: 1;
  min-width: 300px;
}

.product-info h1 {
  color: #240865;
  margin-bottom: 15px;
  font-size: 28px;
}

.product-meta {
  margin-bottom: 20px;
  color: #666;
}

.product-price {
  font-size: 24px;
  color: #e60000;
  font-weight: bold;
  margin: 20px 0;
}

.product-description {
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
  white-space: pre-line;
}

.action-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary {
  background-color: #240865;
  color: white;
}

.btn-secondary:hover {
  background-color: #1a064a;
  transform: translateY(-2px);
}
.whatsapp-btn {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  color: white;
}

.related-products {
  margin-top: 60px;
}

.related-title {
  color: #240865;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.related-item {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
}

.related-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-item h3 {
  padding: 15px;
  margin: 0;
  font-size: 18px;
  color: #240865;
}

.related-item p {
  padding: 0 15px 15px;
  margin: 0;
  font-weight: bold;
  color: #e60000;
}

@media (max-width: 768px) {
  .product-detail {
      flex-direction: column;
      padding: 20px;
  }
  
  .action-buttons {
      flex-direction: column;
  }
  
  .btn {
      width: 100%;
      justify-content: center;
  }
  
  .related-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .related-grid {
      grid-template-columns: 1fr;
  }
}
.yedek-video {
  margin-top: 10px;
  margin-bottom: 2rem;
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 0 1rem; /* yan boşluk ekleyerek taşmayı engelle */
}

.video-wrapper video {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.video-aciklama {
  text-align: center;
  font-size: 0.95rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  padding: 0 1rem; /* yan boşluk */
}


/* Tablet’te (768px altı) */
@media (max-width: 768px) {
  .video-wrapper video {
    max-width: 100%;    /* tam genişlik */
    border-radius: 6px; /* hafifçe azaltabilirsiniz */
  }

  .video-aciklama {
    font-size: 0. ninefiverem; /* isterseniz 0. Nine rem gibi küçültün */
    line-height: 1.3;
    max-width: 100%;
  }
}

/* Mobil’de (480px altı) */
@media (max-width: 480px) {
  .yedek-video {
    margin-bottom: 1.5rem;
  }

  .video-wrapper {
    margin-bottom: 0.8rem;
  }

  .video-wrapper video {
    border-radius: 4px;
    box-shadow: none;    /* mobilde gölge kaldırmak performans ve okunurluk için */
  }

  .video-aciklama {
    font-size: 0. ninerem;
    line-height: 1.2;
    padding: 0 0.5rem;
  }
}

