/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #bdbdbd;
    --dark: #252525;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/* Gradient başlık için kullanılabilir */
h1, h2, h3, h4 {
  margin-bottom: 0.5rem;
}

.icon-img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.icon-hover:hover .icon-img {
  transform: scale(1.2);
}

.accordion-hover {
  transition: transform 0.3s ease;
}
.accordion-hover:hover {
  transform: scale(1.03);
  background-color: #f0f8ff;
}

.accordion-button:focus {
  box-shadow: none;
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.5rem;
  }
  .icon-img {
    width: 40px;
    height: 40px;
  }
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}
.contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 9999;
}

.contact-buttons a {
  width: 48px;
  height: 48px;
  background: #009CFF;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.contact-buttons a:hover,
.contact-buttons a:focus {
  color: white !important;
  transform: scale(1.1);
}

/* Renkler (sıraya göre) */
.contact-buttons a:nth-child(1) { background: #009CFF; }  /* Yukarı */
.contact-buttons a:nth-child(2) { background: #25d366; }  /* WhatsApp */
.contact-buttons a:nth-child(3) { background: #ff4000; }  /* Telefon */


.contact-buttons a:hover {
  transform: scale(1.1);
}
@media (max-width: 576px) {
  .contact-buttons {
    bottom: 12px;
    right: 10px;
    gap: 8px;
  }

  .contact-buttons a {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


  
 
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9fafc;
    color: #212529;
    padding: 20px;
  }

  .note {
    background-color: #e6f4ff;
    border-left: 5px solid #007bff;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInGrow 1.2s ease-in-out;
  }

  .note strong {
    color: #004085;
  }

  .section {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease-in-out;
  }

  .section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0056b3;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
  }

  table thead {
    background-color: #007bff;
    color: white;
  }

  table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  table tbody tr {
    animation: fadeInRow 0.5s ease forwards;
    opacity: 0;
  }

  table tbody tr:nth-child(1) { animation-delay: 0.2s; }
  table tbody tr:nth-child(2) { animation-delay: 0.4s; }
  table tbody tr:nth-child(3) { animation-delay: 0.6s; }
  table tbody tr:nth-child(4) { animation-delay: 0.8s; }
  table tbody tr:nth-child(5) { animation-delay: 1s; }

  /* Animations */
  @keyframes fadeInGrow {
    0% {
      opacity: 0;
      transform: scale(0.95);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInRow {
    to {
      opacity: 1;
      transform: translateY(0);
    }
    from {
      opacity: 0;
      transform: translateY(10px);
    }
  }

  /* Hover effect for rows */
  table tbody tr:hover {
    background-color: #f1f9ff;
    transition: background-color 0.3s ease;
  }
 
  .nav-tabs {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 30px;
  }

  .nav-tabs .nav-link {
    border: 2px solid #ddd;
    border-radius: 50px;
    margin: 0 10px;
    padding: 10px 25px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: #fff;
  }

  .nav-tabs .nav-link:hover {
    background-color: #f0f0f0;
    color: #007bff;
    border-color: #007bff;
  }

  .nav-tabs .nav-link.active {
    background-color: #007bff;
    color: #fff !important;
    border-color: #007bff;
  }

  .tab-pane {
    animation: fadeIn 0.7s ease-in-out;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .tab-pane:nth-child(2) {
    background-color: #fef7f1;
  }

  .tab-pane:nth-child(3) {
    background-color: #f2f9f4;
  }

  .tab-pane:nth-child(4) {
    background-color: #eef4fb;
  }

  .info-table ul {
    list-style: none;
    padding: 0;
  }

  .info-table ul li {
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
  }

  .tab-content img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 100%;
  }

  .icon-button a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background-color: #ff6600;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
  }

  .icon-button a i {
    margin-right: 8px;
  }

  .icon-button a:hover {
    background-color: #cc5200;
    transform: translateY(-2px);
  }

  h4 {
    font-weight: 700;
    margin-bottom: 15px;
  }
 
 
  .btn,
  .icon-button a {
    transition: all 0.3s ease;
    transform: scale(1);
  }

  .btn:hover,
  .icon-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
 
  .doc-card .d-flex {
    transition: transform 0.3s ease;
  }

  .doc-card:hover .d-flex {
    transform: scale(1.05);
  }
 
/* Satır hizalama: kutular yan yana ve eşit yükseklikte */
.section.best-deal .tab-pane .row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Sol Bilgi Kutusu (Özellikler) */
.section.best-deal .info-table {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow: auto;
  flex: 1;
  min-width: 300px;
  max-width: 270px;
}

.section.best-deal .col-lg-6 {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* yukarı hizala */
  padding: 0 20px 10px 20px; /* üstü sıfırla, altı biraz bırak */
}

.section.best-deal .col-lg-6 img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
}


/* Sağdaki Açıklama Kutusuz Alan */
.section.best-deal .description-box {
  flex: 1;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section.best-deal .description-box h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section.best-deal .description-box p {
  font-size: 16px;
  color: #913d3d;
  margin-bottom: 20px;
}

/* Bilgi Al butonu */
.section.best-deal .description-box .icon-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff5a3c;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.section.best-deal .description-box .icon-button a:hover {
  background-color: #e14a2b;
}
.section.best-deal {
  background-color: #ffffff;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .section.best-deal .tab-pane .row {
    flex-direction: column;
    align-items: center;
  }

  .section.best-deal .col-lg-3,
  .section.best-deal .col-lg-6 {
    width: 100%;
    margin-bottom: 20px;
    height: auto;
  }

  .section.best-deal .col-lg-6 img {
    width: 100%;
    height: auto;
  }

  .section.best-deal .info-table,
  .section.best-deal .col-lg-3:last-child {
    height: auto;
  }

  .section.best-deal {
    padding: 30px 15px;
  }
}
 
 
  .custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 75%;
    text-decoration: none;
    color: inherit; /* Varsayılan metin rengini koru */
  }

  .custom-btn i {
    font-size: 18px;
  }

  .custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }

  .btn-satin {
    background-color: #dc3545;
    color: #fff !important;
  }

  .btn-satin:hover {
    background-color: #4ba000;
    color: #fff !important;
  }

  .btn-bilgi {
    background-color: #ffc107;
    color: #000000 !important;
  }

  .btn-bilgi:hover {
    background-color: #e0a800;
    color: #ffffff !important;
  }
 
.accordion-button.btn-uretici {
  background-color: #21a3ff !important; /* Arka plan: Bootstrap yeşil */
  color: #fff !important;               /* Yazı rengi: beyaz */
  border-radius: 6px;
}

.accordion-button.btn-uretici:not(.collapsed) {
  background-color: #21a3ff !important; /* Açıkken biraz koyu yeşil */
  color: #fff !important;
}

.accordion .accordion-header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.accordion-button {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.accordion-item {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
.gallery-viewer {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 300px;        /* 💻 Masaüstü yüksekliği */
  max-height: 450px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  cursor: pointer;
}

.gallery-image.show {
  opacity: 1;
  z-index: 1;
  transform: scale(1.02);
}

/* Mobil görünümde daha küçük yüksekliğe geç */
@media (max-width: 768px) {
  .gallery-viewer {
    min-height: 220px;       /* 📱 Mobil yüksekliği */
    max-height: 300px;
    aspect-ratio: 4 / 3;
  }
}
/*VERGİ LEVHASÍ*/
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }

  .modal-content {
    max-width: 95vw; /* daha geniş tutar */
    max-height: 90vh;
    object-fit: contain;
  }

  .close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #949393;
    cursor: pointer;
    z-index: 10000;
  }

  /* 📱 Mobil Ayarı */
  @media (min-width: 769px) {
  .modal-content {
    width: auto;
    height: auto;
    max-width: 100vw;
    max-height: 100vh;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
}
/* SATÍŞ*/
    body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* Genel Kapsayıcı */
.urun-kapsayici {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 1100px;
  margin: auto;
  gap: 20px;
  padding: 20px;
}

.urun-galeri {
  flex: 1;
  max-width: 55%;
  min-width: 300px;
}

.urun-bilgi {
  flex: 1;
  max-width: 45%;
  min-width: 280px;
  border-left: 1px solid #eee;
  padding-left: 20px;
  position: relative;
}

/* Slider */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 4 / 3;
}

.slide {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  cursor: zoom-in;
}

/* Oklar */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
.arrow.left {
  left: 10px;
}
.arrow.right {
  right: 10px;
}

/* Thumbnail'lar */
.thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
}
.thumbs img {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}
.thumbs img:hover,
.thumbs img.active {
  border-color: #007bff;
}

/* Sekmeler */
.tab-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: #ddd;
  border-radius: 6px;
  cursor: pointer;
}
.tab-btn.active {
  background: #007bff;
  color: #fff;
}
.tab-content {
  margin-top: 20px;
  font-size: 15px;
  color: #333;
}

/* Ürün Bilgileri */
.urun-bilgi h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.fiyat {
  font-size: 20px;
  color: #e63946;
  font-weight: bold;
  margin-bottom: 10px;
}
.konum, .puan, .satici {
  font-size: 14px;
  margin-bottom: 10px;
  color: #444;
}
 

/* Butonlar */
.butonlar button {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 15px;
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.butonlar button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.tel {
  background: #1d3557;
}
.wp {
  background: #25d366;
  
}
.pdf {
  background-color: #c0392b; /* Mavi renk */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 999px; /* Tam oval */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.pdf i {
  font-size: 16px;
}

.pdf:hover {
  background-color: #c0392b;
  transform: scale(1.03);
}

.satinal {
  background: #e70c1e;
}

/* WhatsApp Sabit Butonu */
.fixed-wp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.fixed-wp i {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 768px) {
  .fixed-wp {
    display: flex;
  }
}
/* Blog Kartları Özel Stili */
.blog-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.blog-card h6 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.blog-card span {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.blog-card .btn-outline-primary {
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 50px;
  margin-top: 15px;
  transition: 0.2s ease;
}

.blog-card .btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
  border-color: #0d6efd;
}

/* Modal Arkaplan */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

/* Fiyat Hesap Kutusu */
.calc-box {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 200, 200, 0.4);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  max-width: 360px;
  width: 90%;
  transition: all 0.3s ease;
  position: relative;
}
.calc-box h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: #2a2a2a;
}
.calc-box select,
.calc-box button {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: white;
}
.calc-box button {
  background: linear-gradient(to right, #007bff, #0056b3);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.calc-box button:hover {
  background: linear-gradient(to right, #0056b3, #003f8a);
  transform: scale(1.02);
}

/* Sonuç Kutusu */
/* Sonuç Kutusu - Scroll ve Görünüm */
#price-result {
  margin-top: 10px;
  max-height: 300px;             /* Fazla uzamasın */
  overflow-y: auto;              /* Kaydırılabilir alan */
  scroll-behavior: smooth;
  background: #ffffffdd;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  color: #222;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}


/* Kapat Butonu */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  font-weight: bold;
}
.close:hover {
  color: #e63946;
}

/* Mobil Görünüm Ayarları */
@media (max-width: 768px) {
  .urun-kapsayici {
    flex-direction: column;
    padding: 10px;
    gap: 30px;
  }

  .urun-galeri,
  .urun-bilgi {
    max-width: 100%;
    min-width: 100%;
    border-left: none;
    padding-left: 0;
  }

  .urun-bilgi {
    text-align: center;
  }

  .urun-bilgi h2 {
    font-size: 20px;
  }

  .butonlar button {
    font-size: 14px;
  }

  .thumbs {
    justify-content: center;
  }

  .tab-buttons {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  .info-section table {
    width: 100%;
    font-size: 13px;
  }

  .seller-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
  }

  .seller-card img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
  }
  .copy-icon {
  margin-left: 6px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 0.9em;
}

.copy-icon:hover {
  color: #333;
}

.copy-icon.copied {
  color: green;
}
button.pdf {
  background-color: #e74c3c; /* Kırmızı PDF rengi */
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button.pdf i {
  font-size: 16px;
}

button.pdf:hover {
  background-color: #c0392b;
  transform: scale(1.03);
}
.pdf-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.pdf-download {
  font-family: 'Inter', sans-serif;
}
.copy-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.copy-icon {
  color: #888;
  font-size: 1rem;
  margin-right: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.copy-text {
  line-height: 1.4;
}

@media (max-width: 768px) {
  model-viewer {
    min-height: 200px;
  }
}
.footer-bottom {
  background-color: #000; /* Siyah zemin */
  color: #eaeaea; /* Beyaza yakın yazı */
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: #ffffff; /* Link beyaz */
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}
  }
 
 
.custom-spinner {
  position: relative;
  width: 6rem;
  height: 6rem;
}

.custom-spinner .spinner-border {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: spin 1.5s linear infinite;
  border-width: 0.25rem;
  border-style: solid;
  border-color: #009CFF transparent #009CFF transparent; /* yarım daire efekti */
  border-radius: 50%;
  z-index: 1;
}

.custom-spinner .icon {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #009CFF;
  z-index: 2;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.badge-advanced {
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  gap: 20px;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 16px;
}

.badge-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 12px;
  background: #f9f9f9;
  border-left: 6px solid #2ecc71;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  transform: translateY(0);
}

.badge-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.badge-card .icon {
  font-size: 22px;
  color: #2ecc71;
  background: #e8f6ef;
  padding: 12px;
  border-radius: 50%;
  min-width: 48px;
  min-height: 48px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease;
}

.badge-card:hover .icon {
  transform: scale(1.2);
}

.badge-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

.badge-card p {
  margin: 0;
  font-size: 14.5px;
  color: #000000;
  line-height: 1.6;
}

.badge-card.warning { border-left-color: #f39c12; }
.badge-card.bank    { border-left-color: #2980b9; }
.badge-card.money   { border-left-color: #8e44ad; }
.badge-card.setup   { border-left-color: #16a085; }
.badge-card.kargo   { border-left-color: #2ecc71; }

.badge-card.warning .icon { color: #f39c12; background: #fff6e0; }
.badge-card.bank .icon    { color: #2980b9; background: #eaf4fb; }
.badge-card.money .icon   { color: #8e44ad; background: #f5eafc; }
.badge-card.setup .icon   { color: #16a085; background: #e1f8f3; }
.badge-card.kargo .icon   { color: #27ae60; background: #eafaf1; }

@media (max-width: 600px) {
  .badge-card {
    flex-direction: column;
    text-align: left;
  }

  .badge-card .icon {
    margin-bottom: 12px;
    align-self: flex-start;
  }
}

.gallery-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;  
  max-height: 500px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

/* ÜST BÖLÜM (LOGO + NAV) */
.atg-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative;
  z-index: 20;
  background: #ffffffaa;
  backdrop-filter: blur(12px);
}

.atg-navbar-brand h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.atg-navbar-brand span {
  color: #009CFF;
}

/* Navigation */
.atg-custom-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  padding: 10px 25px;
  border-radius: 40px;
  display: flex;
  gap: 20px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.atg-custom-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.atg-custom-nav a:hover {
  background-color: #009CFF;
  color: #fff;
}

/* Mobil */
@media (max-width: 768px) {
  .atg-top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .atg-custom-nav {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin-top: 10px;
    background: none;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  .atg-custom-nav a {
    margin: 0;
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    color: #333;
  }

  .atg-custom-nav a:last-child {
    border-bottom: none;
  }
}

 
.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Görsel bozulmaz */
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background-color: white;
}

.gallery-image.show {
  opacity: 1;
  z-index: 1;
  transform: scale(1.03);
}

.gallery-image.show {
  opacity: 1;
  z-index: 1;
  transform: scale(1.03);
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3); /* Daha açık siyah */
  backdrop-filter: blur(8px);    /* Arka planı flu yapar */
  -webkit-backdrop-filter: blur(8px); /* Safari desteği */
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 9999;
}


.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 9999;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .gallery-viewer {
    min-height: 280px;
    aspect-ratio: 4 / 3;
  }
}
.badge-advanced {
  max-width: 900px;
  margin: 50px auto;
  display: grid;
  gap: 20px;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 16px;
}

.badge-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 12px;
  background: #f9f9f9;
  border-left: 6px solid #2ecc71;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  transform: translateY(0);
}

.badge-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.badge-card .icon {
  font-size: 22px;
  color: #2ecc71;
  background: #e8f6ef;
  padding: 12px;
  border-radius: 50%;
  min-width: 48px;
  min-height: 48px;
  text-align: center;
  line-height: 24px;
  transition: 0.3s ease;
}

.badge-card:hover .icon {
  transform: scale(1.2);
}

.badge-card h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.badge-card p {
  margin: 0;
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

.badge-card.warning { border-left-color: #f39c12; }
.badge-card.bank    { border-left-color: #2980b9; }
.badge-card.money   { border-left-color: #8e44ad; }
.badge-card.setup   { border-left-color: #16a085; }
.badge-card.kargo   { border-left-color: #2ecc71; }
.badge-card.kabin1  { border-left-color: #9b59b6; }
.badge-card.kabin2  { border-left-color: #e74c3c; }

.badge-card.warning .icon { color: #f39c12; background: #fff6e0; }
.badge-card.bank .icon    { color: #2980b9; background: #eaf4fb; }
.badge-card.money .icon   { color: #8e44ad; background: #f5eafc; }
.badge-card.setup .icon   { color: #16a085; background: #e1f8f3; }
.badge-card.kargo .icon   { color: #27ae60; background: #eafaf1; }
.badge-card.kabin1 .icon  { color: #9b59b6; background: #f4eafc; }
.badge-card.kabin2 .icon  { color: #e74c3c; background: #fdeaea; }

@media (max-width: 600px) {
  .badge-card {
    flex-direction: column;
    text-align: left;
  }

  .badge-card .icon {
    margin-bottom: 12px;
    align-self: flex-start;
  }
}
 .icon {
    width: 20px;
    transition: transform 0.3s ease;
  }

  li:hover .icon,
  .hover-card:hover img {
    transform: scale(1.2);
  }

  .hover-card {
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 768px) {
    .section-heading h2 {
      font-size: 1.6rem;
    }

    .left-image img {
      max-width: 100%;
    }
  }
  .section-text {
  color: #212529 !important; /* Bootstrap'in koyu metin rengi */
}

.section-text p,
.section-text li {
  color: #212529 !important;
  font-weight: 500; /* yazıyı biraz daha okunur yapar */
}
.accordion-body {
  color: #212529 !important; /* Siyah metin */
  font-weight: 500; /* Yazıları biraz kalınlaştır */
}
.accordion-button {
  color: #212529 !important;  /* Tam siyah */
  font-weight: 600;           /* Daha tok görünür */
}
 
  .product-title {
    color: #0056b3; /* Güçlü koyu mavi */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
  }

  .product-subtitle {
    color: #007bff; /* Parlak mavi */
    font-size: 2rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
    line-height: 1.3;
  }

  @media (max-width: 768px) {
    .product-subtitle {
      font-size: 1.5rem;
    }
  }

  /*footer yawrum*/
  .footer {
  background-color: #121212;
  font-size: 14px;
}

.footer h5 {
  color: #00ffa2;
  font-weight: bold;
}

.footer ul li {
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer a:hover {
  color: #00ffa2;
}

/* Belgeler Bağlantıları */
.doc-link {
  background-color: #1e1e1e;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #333;
  margin-bottom: 6px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  transition: 0.3s ease;
}

.doc-link:hover {
  background-color: #2a2a2a;
  color: #0f0;
}

/* WhatsApp Butonu */
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px #25D366;
}

/* Popup Arka Plan */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-overlay:target {
  display: flex;
}

/* Popup İçerik */
.popup-content {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Kapat Butonu */
.popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background-color: #ff4d4d;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.popup-close:hover {
  background-color: #e60000;
}

.gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* Görsel bozulmaz */
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  cursor: pointer;
  padding: 0;
  margin: 0;
  background-color: white;
}

.gallery-image.show {
  opacity: 1;
  z-index: 1;
  transform: scale(1.03);
}

.gallery-image.show {
  opacity: 1;
  z-index: 1;
  transform: scale(1.03);
}

.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 10px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}
 .gallery-viewer {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 550px;  
  max-height: 500px;
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
}

/* ÜST BÖLÜM (LOGO + NAV) */
.atg-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative;
  z-index: 20;
  background: #ffffffaa;
  backdrop-filter: blur(12px);
}

.atg-navbar-brand h1 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.atg-navbar-brand span {
  color: #009CFF;
}

/* Navigation */
.atg-custom-nav {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(12px);
  padding: 10px 25px;
  border-radius: 40px;
  display: flex;
  gap: 20px;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.atg-custom-nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: 0.3s ease;
}

.atg-custom-nav a:hover {
  background-color: #009CFF;
  color: #fff;
}

/* Mobil */
@media (max-width: 768px) {
  .atg-top-bar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }

  .atg-custom-nav {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin-top: 10px;
    background: none;
    box-shadow: none;
    border: none;
    width: 100%;
  }

  .atg-custom-nav a {
    margin: 0;
    padding: 10px 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    text-align: center;
    color: #333;
  }

  .atg-custom-nav a:last-child {
    border-bottom: none;
  }
}
 .urun-kapsayici {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
    padding: 0 20px;
  }

  .urun-galeri {
    flex: 1 1 55%;
    min-width: 300px;
    width: 100%;
  }

  .slider {
    position: relative;
    width: 100%;
  }

  .slider img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
  }

  .thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
  }

  .thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
  }

  .thumbs img:hover {
    border-color: #0077cc;
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
  }

  .arrow.left { left: 10px; }
  .arrow.right { right: 10px; }

  .tab-buttons {
    display: flex;
    margin-top: 20px;
    gap: 10px;
  }

  .tab-btn {
    flex: 1;
    padding: 10px;
    background: #eee;
    border: none;
    cursor: pointer;
    border-radius: 6px;
  }

  .tab-btn.active {
    background: #0077cc;
    color: white;
  }

  .tab-content {
    margin-top: 15px;
  }

  .urun-bilgi {
    flex: 1 1 40%;
    min-width: 280px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.08);
    width: 100%;
  }

  .urun-bilgi h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .urun-bilgi .fiyat {
    font-size: 20px;
    color: #d60000;
    font-weight: bold;
  }

  .urun-bilgi .konum,
  .urun-bilgi .puan {
    margin: 5px 0;
    color: #444;
  }

  .seller-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eef5ff;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
  }

  .seller-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .info-section {
    margin-top: 20px;
  }

  .info-section table {
    width: 100%;
    border-collapse: collapse;
  }

  .info-section th,
  .info-section td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }

  .butonlar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
  }

  .butonlar button {
    flex: 1 1 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    color: #fff;
    background: #0077cc;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
  }

  .butonlar button:hover {
    background: #005fa3;
  }

  @media (max-width: 768px) {
    .urun-kapsayici {
      flex-direction: column;
      padding: 0 10px;
      gap: 30px;
    }

    .urun-galeri,
    .urun-bilgi {
      width: 100%;
      flex: 1 1 100%;
    }

    .slider img {
      max-height: 250px;
    }

    .tab-buttons {
      flex-direction: column;
    }

    .butonlar button {
      flex: 1 1 100%;
    }
  }
  .fixed-wp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.calc-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.calc-box h3 {
  margin-bottom: 20px;
}

.calc-box .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.calc-box select, .calc-box button {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#price-result p {
  margin-bottom: 10px;
}

.copy-icon {
  cursor: pointer;
  margin-left: 10px;
}

.copy-icon i {
  color: #888;
}

details {
  margin-top: 10px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

details[open] {
  background: #e0f7fa;
}
.badge-card {
  transition: all 0.3s ease;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.badge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.badge-card .icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.badge-card:hover .icon i {
  transform: rotate(-6deg) scale(1.2);
  color: #1d4ed8; /* Daha canlı renk efekti */
}
.about-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}
.about-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1e3a8a;
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.about-block {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}
.about-block .icon {
  font-size: 30px;
  color: #0d6efd;
  min-width: 36px;
}
.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.about-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid #0d6efd;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.about-card i {
  font-size: 22px;
  color: #0d6efd;
  margin-right: 8px;
  transition: all 0.3s ease;
}
.about-card:hover i {
  color: #6610f2;
  transform: rotate(-5deg) scale(1.2);
}
.about-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.about-card p {
  font-size: 15px;
  margin: 0;
}
 .seo-blog {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    font-family: "Open Sans", sans-serif;
  }

  .seo-card {
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .seo-card:hover {
    transform: translateY(-5px);
  }

  .seo-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 10px;
  }

  .seo-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .seo-card a {
    margin-top: auto;
    display: inline-block;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    font-size: 14px;
    transition: background 0.3s;
  }

  .seo-card a:hover {
    background: #0056b3;
  }

  @media (max-width: 768px) {
    .seo-card {
      width: 100%;
    }
  }
  .blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 40px 20px;
  background: #f7f7f7;
  font-family: 'Segoe UI', sans-serif;
}

.blog-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  width: 310px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card h3 {
  font-size: 18px;
  color: #222;
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-gozat {
  background: #007bff;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  text-align: center;
  transition: background 0.3s;
}

.btn-gozat:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .blog-card {
    width: 100%;
  }
}
#seo-content h1,
#seo-content h2 {
  color: #009CFF;
  font-weight: 600;
}

#seo-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

#seo-content ul {
  padding-left: 20px;
  list-style-type: disc;
}
.new-gallery-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}

.new-gallery-section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.new-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.new-gallery-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.new-gallery-item:hover {
  transform: translateY(-5px);
}

.new-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.new-caption {
  padding: 16px;
}

.new-caption h3 {
  margin-top: 0;
  font-size: 18px;
  color: #2d2d2d;
}

.new-caption p {
  font-size: 14px;
  color: #555;
}

.new-price {
  font-weight: bold;
  font-size: 16px;
  color: #198754;
  margin-top: 10px;
}

/* ==========================
   Yeni Bağımsız Lightbox
   ========================== */
.new-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.new-lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
}

.new-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.new-lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.new-lightbox-prev { left: 20px; }
.new-lightbox-next { right: 20px; }

@media (max-width: 768px) {
  .new-gallery-section h2 { font-size: 22px; }
  .new-caption h3 { font-size: 16px; }
  .new-caption p { font-size: 13px; }
}