 

    .swiper {
      width: 100%;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-slide {
      background-size: cover;
      background-position: center;
    }

    .mySwiper2 {
      height: 80%;
      width: 100%;
      max-height: 400px;
      background-color: #b0b0b0;
      border-radius: 10px;
    }
    .mySwiper2 .swiper-slide {
        text-align: center;
        justify-content: center;
    display: flex;
    } 
    .mySwiper2 .swiper-slide img { 
      width: auto;
      height: 100%;
      object-fit: contain;
      box-shadow: 0px 0px 20px 4px #727272;
    }  
    .mySwiper {
      height: 200px;
      box-sizing: border-box;
      padding: 10px 0;
    }

    .mySwiper .swiper-slide {
      width: 25%;
      height: 100%;
      opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
      opacity: 1;
    }

    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
     h1.baslik {
         font-size: 1.8rem;
         letter-spacing: -.03em;
        color : var(--kirmizi);
        font-weight: 700;
}
.btn-al {padding:15px 25px; color: var(--kirmizi); border:2px solid var(--kirmizi); font-weight:600; transition: all 0.3s ease; border-radius: 30px;}
.btn-al:hover{ background-color: var(--kirmizi); color:#fff; text-decoration:none;}
.fiyat {
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--kirmizi);
}
 /* Adet Seçici Kutusu */
        .quantity-control {
            max-width: 200px;
             
        }

        /* Input Grubu Stili */
        .input-group {
            width: 100%;
        }

        /* Buton Stilleri */
        .btn-qty {
            background-color: var(--kirmizi); /* Kırmızı Vurgu */
            color: white;
            border: 1px solid var(--kirmizi);
            padding: 0.55rem 0.75rem;
            width: 50px; /* Sabit genişlik */
            font-size: 0.75rem;
            font-weight: bold;
            transition: background-color 0.2s, border-color 0.2s;
        }
        
        .btn-qty:hover {
            background-color: #c02d3c;
            border-color: #c02d3c;
            color: white;
        }

        /* Input Stili */
        .input-qty {
            text-align: center;
            font-size: 0.75rem;
            font-weight: 500;
            border-left: none;
            border-right: none;
            border-color: var(--kirmizi);
        }

        /* Input focus olduğunda border rengini kaldırma */
        .input-qty:focus {
            box-shadow: none;
            border-color: var(--kirmizi);
        }
    .accordion-item {
    color: var(--kirmizi);
    background: none;
    border: 1px solid var(--kirmizi);
    }
    .accordion-button{ background: none; color: var(--kirmizi); font-weight:600;}
    .accordion-button:not(.collapsed)
 {
    color: var(--kirmizi);
    background: none;
 }
 .bt-kirmizi { border-top: 1px solid var(--kirmizi);}
 /* Ana yorumlar konteynerı için stil */
        .reviews-container {
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); /* Çok hafif gölge */
            border: 1px solid #dedede;
        }

        /* Yorum başlığı kırmızısı */
        .reviews-header {
            color: var(--kirmizi);
            margin: 15px 0px;
            font-weight: 600;
           font-size: 18px;
            padding-left: 15px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--kirmizi);
        }

        /* Tek bir yorum kartı stili */
        .review-card {
            padding: 20px;
            margin-bottom: 20px;
            border-right: 1px solid #e9ecef; /* Ortadaki ayırıcı çizgi */
            height: 100%; /* Sütunların aynı yükseklikte olmasını sağlamak için */
            border-bottom: 1px solid #e9ecef;
        }
        
         @media (min-width: 768px) {
             .row > .col-md-6:last-child .review-card {
                border-right: none;
            }
        }
        
        /* Mobil görünümde ayırıcı çizgiyi kaldır */
        @media (max-width: 767.98px) {
             .review-card {
                border-right: none;
                border-bottom: 1px solid #e9ecef;
                padding-bottom: 30px;
            }
             .row > .col-md-6:last-child .review-card {
                border-bottom: none;
            }
            .mySwiper { height: 100px;}
        }

        /* Yıldızlar için renk */
        .rating-stars {
            color: #dc3545; /* Kırmızı yıldızlar */
            font-size: 1.2rem;
        }

        /* Konum başlığı */
        .review-location {
            font-size: 1.1rem;
            font-weight: bold;
            margin-top: 10px;
        }

        /* Yorum metni */
        .review-text {
            color: #555;
            line-height: 1.6;
            margin-top: 15px;
            font-style: italic; /* Resimdeki metin eğik gibi duruyor */
        }

        /* Resim stili */
        .review-image {
            max-width: 100px;
            height: auto;
            border-radius: 8px;
            margin-top: 15px;
        }
        
        /* Sayfalama stili */
        .pagination-container {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .pagination .page-item .page-link {
            color: #dc3545; /* Aktif olmayan bağlantı metni */
            border: none;
            margin: 0 2px;
            border-radius: 5px !important;
        }
        .pagination .page-item.active .page-link {
            background-color: #dc3545;
            border-color: #dc3545;
            color: white;
        }