body {
    background-image: linear-gradient(#3A5A40, #588157, #3A5A40);
}

/*-----------------------------------*/
/*-------------Product-Banner--------*/
/*-----------------------------------*/

/* Reset için */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
}

.banner {
    display: none;
}

.slider-option {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#carouselExampleInterval,
.carousel-inner,
.carousel-item,
.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-content-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 100px;

}

.container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    padding: 0 15px;
    margin: 0 auto;
}

.slider-content {
    position: relative;
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
}

.slider-content h1 {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    font-weight: bold;
    color: black;
    overflow: hidden;
}

.slider-content h3 {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(56, 56, 56);
    overflow: hidden;
}

/* Metnin Efekti İçin Kapsayıcı */

.effect-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* Işık Efekti */
.light-effect {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    color: black;
    /* Normal metin rengi */
    background: linear-gradient(to right, black 0%, #d1d1d1 20%, black 40%);
    background-size: 500%;
    background-position: -250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear forwards;
}

/* Işığın Yazının Üzerinden Tek Sefer Geçmesi */
@keyframes shine {
    0% {
        background-position: -160%;
        -webkit-text-fill-color: transparent;
    }

    100% {
        background-position: 70%;
        -webkit-text-fill-color: black;
        /* Efekt bittikten sonra metin tekrar siyah olacak */
    }
}

.slider-center {
    position: absolute;
    text-align: center;
    justify-content: center;
    width: 100%;
    top: 20%;
}

.slider-btn {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: fadeIn 1s ease 0.9s;
    animation-fill-mode: both;
}

.btn-default {
    padding: 1.2rem 3rem;
    background: #28a745;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 100px;
    letter-spacing: 2px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-default:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-control {
    width: 5%;
    background: none;
    border: none;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0 2rem;
}

.control-circle {
    width: 50px;
    height: 50px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-circle:hover {
    background: #218838;
    transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    /* 3D Model Container'ı gizle */
    .model-container,
    #scene-container,
    .Models,
    iframe {
        display: none !important;
    }

    .slider-option,
    .carousel,
    .carousel-inner,
    .carousel-item,
    .slider-item,
    .slider-item img,
    .slider-content-area {
        height: 100vh;
        min-height: 500px;
    }

    .slider-content-area {
        padding-bottom: 50px;
    }

    .slider-content {
        transform: scale(1);
    }

    .slider-content h3 {
        font-size: 1.8rem;
    }

    .slider-content h2 {
        font-size: 3.5rem;
    }

    .slider-content p {
        font-size: 1.5rem;
    }

    .btn-default {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Product Cards için mobil düzenlemeler */
    .related-products {
        min-height: 100vh;
        height: auto;
        padding: 4rem 0;
        width: 100%;
        position: relative;
        display: block;
        margin-top: 100vh;
    }

    .related-products > h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
        color: white;
    }

    .p-cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 1rem;
    }

    .p-card {
        width: 90%;
        height: 20rem;
        margin: 0;
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        background: white;
    }

    .p-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.9;
    }

    .card-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 1.5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        text-align: left;
    }

    .card-content > h2 {
        font-size: 1.5rem;
        color: white;
        margin: 0;
    }

    .card-content p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.9);
        margin: 0.5rem 0;
    }

    .card__button {
        display: inline-block;
        padding: 8px 16px;
        font-size: 0.9rem;
        background: #28a745;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 1rem;
    }

    /* Grid yapısını mobilde düzenle */
    .unit-1,
    .unit-2,
    .unit-3,
    .unit-4 {
        width: 100% !important;
        float: none;
        margin-bottom: 1rem;
    }

    /* Kartları tam genişlikte göster */
    .product-card {
        width: 100% !important;
        margin-bottom: 20px;
    }

    /* Başlık boyutlarını küçült */
    .product-title {
        font-size: 1.5rem;
    }

    .product-subtitle {
        font-size: 1rem;
    }

    /* Özellik listelerini düzenle */
    .features-list {
        grid-template-columns: 1fr !important;
    }

    /* Tablo scrollable yap */
    .specs-table-container {
        overflow-x: auto;
    }

    /* Banner yüksekliğini azalt */
    .product-banner {
        height: 300px !important;
    }

    /* Banner içeriğini düzenle */
    .banner-content {
        padding: 20px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    /* Butonları düzenle */
    .product-btn {
        width: 100%;
        margin: 10px 0;
    }

    /* İkon boyutlarını küçült */
    .feature-icon {
        font-size: 1.5rem;
    }

    /* Product Specs Section için mobil düzenlemeler */
    .product-specs {
        height: auto;
        min-height: auto;
        padding: 2rem 0;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
    }

    #tabBox {
        height: auto;
        margin: 0;
        padding: 0 1rem;
    }

    .tabWrap {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .cctabs label {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-right: 0;
    }

    .cctabs .panel {
        padding: 1rem;
        position: relative;
        opacity: 1;
        height: auto;
        min-height: 300px;
    }

    .table-container {
        margin: 1rem 0;
    }

    table {
        font-size: 0.9rem;
    }

    td, th {
        padding: 0.5rem;
        min-width: 120px;
    }

    tbody th {
        width: 30%;
        padding: 0.5rem;
    }

    tbody td {
        width: 70%;
        padding-left: 1rem;
    }

    /* Özel tablo hücre stilleri */
    tbody tr:nth-child(even) {
        background-color: rgba(88, 129, 87, 0.1);
    }

    tbody tr:hover {
        background-color: rgba(88, 129, 87, 0.05);
    }
}

/* Tablet Görünümü */
@media (min-width: 769px) and (max-width: 1024px) {
    .product-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-container {
        height: 400px;
    }
}

/* Navbar'ın altına girmemesi için */
/* .navbar {
    position: absolute;
    z-index: 1050;
}  */

.gallery-container {
    position: relative;
    width: 400px;
    height: 250px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery {
    position: relative;
    width: 300px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 1s ease-in-out;
}

.gallery span {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
}

.gallery span img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.controls {
    margin-top: 20px;
}

.controls button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    margin: 5px;
    border-radius: 5px;
}

.controls button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

#scene-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    z-index: 1;
}

/*-----------------------------------*/
/*-------------Catalog--------*/
/*-----------------------------------*/

.details-product-section {
    min-height: 100%;
    display: none!important;
    justify-content: center;
    align-items: center;
    padding: 2em 0;
    line-height: 1.5em;
    height: 100vh;
    overflow: hidden;
}

.book {
    transition: opacity 0.4s 0.2s;
    position: relative;
    transition: transform 0.8s ease-in-out;
}



.page {
    width: 30vw;
    height: 44vw;
    background-color: #111111;
    float: left;
    margin-bottom: 0.5em;
    background: left top no-repeat;
    background-size: cover;
}

.page:nth-child(even) {
    clear: both;
}

.book {
    perspective: 250vw;
}

.book .pages {
    width: 90vw;
    height: 44vw;
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 4px;
    /*box-shadow: 0 0 0 1px #e3dfd8;*/
}

.book .page {
    display: flex;
    float: none;
    clear: none;
    margin: 0;
    position: absolute;
    top: 0;
    width: 45vw;
    height: 44vw;
    transform-origin: 0 0;
    transition: transform 1.4s;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    cursor: pointer;
    user-select: none;
    background-color: white;
}

.book .page:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.7s;
    z-index: 2;
}

.book .page:nth-child(odd) {
    pointer-events: all;
    transform: rotateY(0deg);
    right: 0;
    border-radius: 0 4px 4px 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset;
    background-image: url("/images/product-details/page-bg2.png");
}

.book .page:nth-child(odd):hover {
    transform: rotateY(-15deg);
}

.book .page:nth-child(odd):hover:before {
    background: rgba(0, 0, 0, 0.03);
}

.book .page:nth-child(odd):before {
    background: rgba(0, 0, 0, 0);
}

.book .page:nth-child(even) {
    pointer-events: none;
    transform: rotateY(180deg);
    transform-origin: 100% 0;
    left: 0;
    border-radius: 4px 0 0 4px;
    border-color: black;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset;
    background-image: url("/images/product-details/page-bg.png");
}

.book .page:nth-child(even):before {
    background: rgba(0, 0, 0, 0.2);
}

.book .page.grabbing {
    transition: none;
}

.book .page.flipped:nth-child(odd) {
    pointer-events: none;
    transform: rotateY(-180deg);
}

.book .page.flipped:nth-child(odd):before {
    background: rgba(0, 0, 0, 0.2);
}

.book .page.flipped:nth-child(even) {
    pointer-events: all;
    transform: rotateY(0deg);
}

.book .page.flipped:nth-child(even):hover {
    transform: rotateY(15deg);
}

.book .page.flipped:nth-child(even):hover:before {
    background: rgba(0, 0, 0, 0.03);
}

.book .page.flipped:nth-child(even):before {
    background: rgba(0, 0, 0, 0);
}

.book .page .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    margin-top: 7%;
    width: 100%;
    padding: 0% 8%;
    overflow: hidden;
}

.book .page .content h2 {
    text-align: start;
    font-size: 22px;
}

.book .page .content p {
    text-align: start;
    font-size: 15px;
}


.page:nth-child(odd) {
    background-position: right top;
}

.production-details-title-image {
    width: 35%;
    height: auto;
}

.catalog-logo {
    width: 20%;
    height: auto;
}

.product-img {
    width: 70%;
    height: auto;
}

.horizontal-line {
    width: 60%;
    height: 5px !important;
    /* Çizgi kalınlığı */
    background-color: green;
    /* Çizgi rengi */
    margin: 20px 0;
    /* Üst ve alt boşluk */
}

.horizontal-big-line {
    width: 80%;
    height: 5px !important;
    /* Çizgi kalınlığı */
    background-color: green;
    /* Çizgi rengi */
    margin: 20px 0;
    /* Üst ve alt boşluk */
}

.backcover {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;

    img {
        width: 70%;
        height: auto;
    }
}

.backcover-image{
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
}

.page {
    position: relative;
    /* İçerik alanında mutlak konumlandırmaya izin verir */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.page-bottom-img {
    position: absolute;
    bottom: 0;
    left: 2%;
    /* Sol taraftan %2 boşluk */
    width: 90%;
    /* Sayfanın %90'ını kaplayacak */
    max-width: none;
    /* Eğer resim küçükse, genişlemesine izin ver */
}

/*------------------------------*/
/*-------Cards----------*/
/*------------------------------*/


.content {
    display: flex;
    flex-direction: column;
    /* İçerikler dikey hizalansın */
    align-items: center;
    /* Ortalanmış içerik */
    justify-content: center;
    width: 100%;
    height: 100%;
    /* İçeriğe göre dinamik olarak büyümesi için */
    overflow: hidden;
    /* Taşmayı engelle */
    padding: 1rem;
    box-sizing: border-box;
}

/* Kartları içeren container */
.product-detail-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    /* Kartlar arası boşluk */
    width: 100%;
    max-width: 1200px;
    max-height: 100%;
    /* Sayfayı taşırmamak için max yükseklik */
    overflow: auto;
    /* Çok fazla kart olursa kaydırmayı aç */
    box-sizing: border-box;
}

/* Kartları dinamik olarak boyutlandır */
.product-detail-card {
    flex: 1 1 calc(50% - 2rem);
    /* 2 kart yan yana, esnek büyüme */
    max-width: calc(50% - 2rem);
    height: auto;
    /* İçeriğe göre yüksekliği ayarla */
    max-height: 200px;
    /* Eğer taşma olursa maksimum küçülsün */
    background: rgb(255, 255, 255, 0.5);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, max-height 0.3s ease-in-out;
    /* Alt boşluk */
}

/* Kart içindeki resim */
.product-detail-img {
    width: 50px;
    height: auto;
    max-height: 60px;
    /* Çok büyük resimler içerikten taşmasın */
    display: block;
    object-fit: contain;
    margin-left: 20px !important;
}

.product-detail-header {
    display: flex;
    flex-direction: row;
    gap: 3px;
    font-size: 20px;
}

.product-detail-card {
    h2 {
        justify-self: center;
    }

    p {
        justify-self: center;
        align-self: center;
    }
}

/* Kart içeriği */
.product-detail-content {
    padding: 0.5em;
    text-align: center;
}

/* Başlık ve açıklama ayarları */
.product-detail-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.3em 0;
    font-size: 1em;
    /* Kart küçüldüğünde yazı küçülsün */
    color: #000000;
}

.product-detail-text {
    font-size: 0.85em;
    /* Açıklamalar küçülsün */
    color: #000000;
}

.file-list {
    list-style: none;
    padding: 0;
}

.file-list li {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    display: inline-block;
    background-size: cover;
}

.video {
    background-image: url('/images/product-details/icons/youtube.svg');
    /* Video simgesi */
}

.pdf {
    background-image: url('/images/product-details/icons/pdf.svg');
    /* PDF simgesi */
}



/* Genel container ayarları */
.cover-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* İçeriğin dışına taşmasını engelle */
    height: 100%;
    max-height: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

/* Her bir resmin kapsayıcı ayarı */
.product-logo,
.product-image,
.company-logo ,
.company-logo2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* İçeriği kapsayıcıya sığdır */
}

/* **Tek tek boyutlarını değiştirebileceğin özel ayarlar** */
.product-logo img {
    width: 40%;
    /* Burayı manuel olarak ayarlayabilirsin */
    max-height: 120px;
    /* İstersen px cinsinden de sınır koyabilirsin */
}

.product-image img {
    width: 60%;
    /* Ürün görselinin genişliğini artır veya azalt */

}

.company-logo img {
    width: 25%;
    /* Firma logosu daha küçük olsun */
}
.company-logo2 img {
    width: 30%;
    /* Firma logosu daha küçük olsun */
}


/* ----------- Mobil Ekranlar İçin (ör. max-width: 768px) ----------- */
@media (max-width: 768px) {
  /* 3D sayfa çevirme, perspective vb. özellikleri kapatıp klasik akışa dönün */
  .details-product-section {
    height: auto; /* Mobilde tam yükseklik kullanmayın, akış uzasın */
    overflow: visible; /* Taşmayı mobilde engellemeyin */
    padding: 1em 0; /* İsteğe göre yumuşaklık verin */
  }

  .book {
    perspective: none; /* 3D bakış açısı kapat */
    transform: none;   /* kitaba uyguladığınız diğer transform varsa kapat */
    width: 100%;
    max-width: 600px; /* Mobilde belli bir genişliğe sınır koymak isterseniz */
    margin: 0 auto;    /* Ortalamak için */
  }

  .book .pages {
    position: static; /* Artık absolute değil, normal akışta */
    width: 100%;
    height: auto;
    transform: none;
    backface-visibility: visible; /* 3D kapandığı için problem olmaz */
  }

  .book .page {
    position: static;  /* Artık absolute değil */
    width: 100%;
    height: auto;
    margin-bottom: 1.5em; /* Her sayfa arasında boşluk */
    transform: none; /* Sayfa çevirme yok */
    box-shadow: none; /* İsteğe göre gölgeleri kapatabilirsiniz */
    border-radius: 0; /* Yuvarlak kenarları kapatabilirsiniz */
    cursor: auto;     /* İmleç normal olsun */
    user-select: text; /* Metin kopyalamayı etkinleştirin isterseniz */
  }

  .book .page:nth-child(odd),
  .book .page:nth-child(even) {
    background-image: none; /* Arka plan resimlerini iptal edebilirsiniz */
    background-color: #fff; /* Düz bir beyaz sayfa gibi gözüksün */
  }

  /* İçerik bloklarını da yeniden boyutlandırın (isteğe bağlı) */
  .book .page .content {
    margin-top: 0;
    padding: 1em;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  /* Resimlerinizi de mobil uyarlamayı unutmayın */
  .production-details-title-image,
  .product-img,
  .product-logo img,
  .product-image img,
  .company-logo img,
  .company-logo2 img {
    width: 100% !important;   /* Ya da istediğiniz oranda */
    max-width: 400px;        /* Çok büyük ekranlı telefonlarda taşıp bozmaması için */
    height: auto;
  }

  /* Kart tasarımı side-by-side değil de alt alta gelsin isterseniz */
  .product-detail-cards-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-height: none;
    overflow: visible;
  }
  .product-detail-card {
    flex: none; /* Her kart tam genişlik alsın */
    width: 90%;
    max-width: 400px; /* İsteğe göre sınırlayabilirsiniz */
    max-height: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
    /* Kitap kapsayıcısındaki 3D özellikleri kapat */
    .book {
      perspective: none; 
      transform: none;
      width: 100%;
      max-width: 600px; /* İsteğe göre bir genişlik sınırlaması */
      margin: 0 auto; /* Ortalamak için */
    }
  
    .book .pages {
      width: 100%;
      height: auto;
      position: static;
      transform: none;
      transform-style: flat; /* preserve-3d yerine flat */
      backface-visibility: visible;
    }
  
    /* Her sayfayı normal blok düzenine döndür */
    .page {
        /* Mevcut flip efektlerini kapatmak için yaptığınız ayarların yanında */
        position: static !important;
        transform: none !important;
        width: 90%;          /* veya daha farklı bir yüzde belirleyebilirsiniz */
        max-width: 600px;    /* isterseniz bir max genişlik de koyabilirsiniz */
        margin: 1rem auto;   /* yukarı-aşağı 1rem, sağ-sol otomatik ortalama */
        padding: 1rem;       /* içeriden 1rem boşluk */
        box-shadow: none !important;
        border-radius: 0 !important;
        cursor: auto !important;
        user-select: text !important;
        pointer-events: auto;
      }
    
      .page .content {
        /* İsteğe bağlı ekstra içerik boşluğu */
        padding: 1rem;
      }
  
    /* Tüm “nth-child” değişkenleri için de flip ve gölgelendirme iptali */
    .page:nth-child(even),
    .page:nth-child(odd),
    .page.flipped:nth-child(even),
    .page.flipped:nth-child(odd) {
      transform: none !important;
      box-shadow: none !important;
    }
  
    /* Sayfaların yarı saydam overlay efektini kaldır */
    .page:before {
      background: none !important;
    }
  }
  

/*---------------------------*/
/*----------TABS-------------*/
/*---------------------------*/

/*
Author: https://codeconvey.com/
*/

@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700);




/* To Navigation Style */


.cctop a {
    display: inline-block;
    padding: 0 1.5em;
    text-decoration: none;
    letter-spacing: 1px;
}

.cctop span.right {
    float: right;
}

.cctop span.right a {
    display: block;
    float: left;
}

/* Header Style */

.ccheader {
    margin: 0 auto;
    padding: 2em;
    text-align: center;
}

.ccheader h1 {
    font-size: 2.625em;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
}

.ccheader h1 span {
    display: block;
    padding: 0 0 0.6em 0.1em;
    font-size: 60%;
    opacity: 0.7;
}



/* Demo Buttons Style */
.codeconvey-demo {
    padding-top: 1em;
    font-size: 0.8em;
}

.codeconvey-demo a {
    display: inline-block;
    margin: 0.5em;
    padding: 0.7em 1.1em;
    outline: none;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.codeconvey-demo a:hover,
.codeconvey-demo a.current-demo,
.codeconvey-demo a.current-demo:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* Wrapper Style */

.wrapper {
    margin: 0 auto;
}

.cctabs {
    width: 100%;
    margin: 10px auto;
}

.cctabs input[type="radio"] {
    opacity: 0;
}

.cctabs .fa {
    margin-right: 10px;
}

.cctabs label {
    color: #000;
    cursor: pointer;
    float: left;
    margin-right: 2px;
    padding: 0.5% 2%;
    font-size: 25px;
    font-weight: bold;
}

.cctabs label:hover {
    background: #BBD58E;
    color: #fff;
}

.cctabs input:checked+label {
    background: white;
    color: #588157;
    border-top: solid 2px #BBD58E;
}

.cctabs label {
    background: #BBD58E;
    color: #fff;
    border-top: solid 2px #588157;
}

.cctabs input:nth-of-type(1):checked~.panels .panel:first-child,
.cctabs input:nth-of-type(2):checked~.panels .panel:nth-child(2),
.cctabs input:nth-of-type(3):checked~.panels .panel:nth-child(3),
.cctabs input:nth-of-type(4):checked~.panels .panel:last-child {
    opacity: 1;
    -webkit-transition: .3s;
    /*position:relative;*/
    z-index: 999;
}

.cctabs .panels {
    float: left;
    clear: both;
    position: relative;
    width: 100%;
    background: #fff;
}

.cctabs .panel {
    width: 100%;
    opacity: 0;
    position: absolute;
    background: #fff;
    padding: 4%;
    box-sizing: border-box;
}

.cctabs .panel h2 {
    margin: 0;
}

.cctabs .panel i {
    color: #588157;
    cursor: pointer;
}

.cctabs .panel i:hover {
    color: #588157;
}

.cctabs .headline h1 {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.6px;
    padding-bottom: 0;
    text-align: center;
    text-rendering: optimizespeed;
    margin: 10px 0;
}

.cctabs .headline hr {
    background: none repeat scroll 0 0 #588157;
    border: 2px solid;
    color: #588157;
    margin-bottom: 0;
    margin-top: 0;
    width: 30px;
}

.cctabs .headline .lead {
    font-weight: 300;
    line-height: 1.9;
    margin: 5px 0;
    text-align: center;
}

#map-canvas {
    height: 366px;
    width: 462px;
}


#cc-contact input[type="text"],
#cc-contact input[type="email"],
#cc-contact input[type="tel"],
#cc-contact input[type="password"],
#cc-contact textarea {
    width: 100%;
    border: 1px solid #588157;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 14px;
}

#cc-contact textarea {
    height: 147px;
    max-width: 100%;
}

#cc-contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #588157;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
}

#cc-contact button[type="submit"]:hover {
    background: #588157;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
}

/* GRID*/
.grid {
    display: block;
    margin-left: -10px;
}

.cc-text-center {
    text-align: center;
}

.cc-mt-20 {
    margin-top: 50px;
}

.unit-2,
.unit-3,
.unit-4 {
    float: left;
    border-left: 10px solid transparent;
    box-sizing: border-box;
    background-clip: padding-box;
}

.unit-1 {
    width: 100%;
    float: left;
}

.unit-2 {
    width: 50%;
}

.unit-3 {
    width: 33.3%;
}

.unit-4 {
    width: 25%;
}

/*--------------------------------------------------------------------------------*/
/* tabBox */
.product-specs {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    padding: 1rem 0;
    margin-bottom: 3rem;
}

#tabBox {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}

.tabWrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Hide Input Radio */
input[type="radio"] {
    display: none;
}



/*---------------------------*/
/*----------TABLE------------*/
/*---------------------------*/



.table-container {
    margin: 1rem 0;
}

table {
    font-size: 0.9rem;
}

td, th {
    padding: 0.5rem;
    min-width: 120px;
}

tbody th {
    width: 30%;
    padding: 0.5rem;
}

tbody td {
    width: 70%;
    padding-left: 1rem;
}

tbody {
    display: block;
    overflow-y: auto;
    width: 100%;
}

tbody tr {
    display: table;
    width: 100%;
    table-layout: fixed;
}

tr> :first-child {
    position: sticky;
    left: 0;
    background: #5A9F68;
    z-index: 3;
}

/*---------------------------*/
/*----------FAQ------------*/
/*---------------------------*/
.accordion input[type="checkbox"] {
    opacity: 0;
    z-index: -1;
}


.accordion-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0 auto;
}

.accordion {
    width: 100%;
    background: white;
    border-bottom: 1px solid #ddd;
}

.accordion:last-child {
    border-bottom: none;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #5A9F68 !important;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px !important;
    color: white !important;
}

.accordion-label:hover {
    background: #ffffff;
}

.accordion-label::after {
    content: "\276F";
    /* Unicode ok sembolü */
    font-size: 16px;
    transition: transform 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.accordion-content p {
    margin: 0;
    padding: 16px;
    font-size: 18px !important;
    color: rgba(0, 0, 0, 0.7);
}

.accordion input:checked+.accordion-label {
    background: #3A5A40 !important;
}

.accordion input:checked+.accordion-label::after {
    transform: rotate(90deg);
}

.accordion input:checked~.accordion-content {
    max-height: 200px;
    padding: 16px;
}

/*------------------------------*/
/*-------model----------*/
/*------------------------------*/


.Models {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

iframe {
    width: 80%;
    height: 100%;
    border: none;
}

/*------------------------------*/
/*---------Cards----------*/
/*------------------------------*/
.related-products {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 0;
    margin-top: 90px;
}

.related-products > h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
}

.p-cards {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.p-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    height: 24rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.p-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.9;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-content > h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: left;
}

.card__button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.card__button:hover {
    background: #218838;
    transform: translateY(-2px);
}

/* Before After Section Styles */
.before-after-section {
    width: 100%;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--gray-2);
}

.splitview {
    position: relative;
    width: 100%;
    min-height: 45vw;
    overflow: hidden;
    cursor: url('/images/before-after/bacursor.png'), auto;
}

.w-panel {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    overflow: hidden;
}

.w-panel .content {
    position: absolute;
    width: 100vw;
    min-height: 45vw;
    color: #FFF;
}



.w-panel img {
    box-shadow: 0 0 20px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.w-panel h1 {
    color: mix(#fff, #ffffff, 85%);
    font-size: 400%;
    font-weight: 900;
    text-shadow:
        -0.0075em 0.0075em 0 mix(#fff, #e91e63, 94%),
        0.005em 0.005em 0 mix(#fff, #e91e63, 60%),
        0.01em 0.01em 0 mix(#fff, #e91e63, 62%),
        0.015em 0.015em mix(#fff, #e91e63, 64%),
        0.02em 0.02em 0 mix(#fff, #e91e63, 66%),
        0.025em 0.025em 0 mix(#fff, #e91e63, 68%),
        0.03em 0.03em 0 mix(#fff, #e91e63, 70%),
        0.035em 0.035em 0 mix(#fff, #e91e63, 72%);
}

.w-panel.bottom .description {
    position: absolute;
    bottom: 5%;
    right: 5%;
    transform: none;
    width: auto;
    text-align: right;
    font-size: 0.8rem !important;
    z-index: 10;
}

.w-panel.top .description {
    position: absolute;
    top: 5%;
    left: 5%;
    transform: none;
    width: auto;
    text-align: left;    
    font-size: 0.8rem !important;
    z-index: 10;
}

.bottom {
    background-color: rgb(44, 44, 44);
    z-index: 1;
}

.bottom .description {
    right: 5%;
}

.top {
    background-color: rgb(77, 69, 173);
    z-index: 2;
    width: 50vw;
}

.top .description {
    left: 5%;
}

.handle {
    height: 100%;
    position: absolute;
    display: block;
    background-color: rgb(255, 255, 255);
    width: 5px;
    top: 0;
    left: 50%;
    z-index: 3;
}

.skewed .handle {
    top: 50%;
    transform: rotate(30deg) translateY(-50%);
    height: 200%;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    transform-origin: top;
}

.skewed .top {
    transform: skew(-30deg);
    margin-left: -1000px;
    width: calc(50vw + 1000px);
}

.skewed .top .content {
    transform: skew(30deg);
    margin-left: 1000px;
}

/* Intro Overlay */
.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: opacity 1s ease-out;
}

.intro-text {
    color: white;
    font-size: 0px;
    font-weight: bold;
    opacity: 0;
}

.intro-text.animate {
    animation: textGrow 1s ease-out forwards;
}

@keyframes textGrow {
    0% {
        font-size: 0px;
        opacity: 0;
    }

    100% {
        font-size: 50px;
        opacity: 1;
    }
}

/* Before After Section Responsive */
@media (max-width: 900px) {
    body {
        font-size: 75%;
    }
}

/*---------------------------*/
/* Geçici Ürün Açıklamaları */
/*---------------------------*/

.paragraph-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }
  
  .paragraph-block {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .paragraph-block.reverse {
    flex-direction: row-reverse;
  }
  
  .text-content {
    flex: 1;
    min-width: 280px;
  }
  
  .text-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .text-content p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .text-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .paragraph-gif {
    width: 50%;
    height: auto;
    border-radius: 10px;
    flex-shrink: 0;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .paragraph-block, .paragraph-block.reverse {
      flex-direction: column;
      text-align: center;
    }
  
    .paragraph-gif {
      width: 80%;
      margin-top: 20px;
    }
  }

  .paragraph-block .all-gift-block {
    display: flex;
    justify-content: center;
    align-items: center;
    img{
        width: 90%;
        height: auto;
        border-radius: 10px;
    }
  }
  