/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.pc-version {

  width: 100%;
  height: 100%;
  position: fixed;
  display: block;
  top: 0%;
  padding-top: 25%;
  background-color: white;
  color: black;
  z-index:99999999999999;
  
  }


/****************************************************
   SAĞ ALT KÖŞEDEKİ BUTON, MENÜ VE POPUP STİLLERİ
****************************************************/

/* -- Yuvarlak buton (sağ alt köşede) -- */
.floating-btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 9999; /* Üstte görünmesi için yüksek değer */
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-btn img {
  width: 48px;
  height: 40px;
}

/* -- Açılan menü (gizli başlayacak) -- */
.floating-menu {
  position: fixed;
  bottom: 10px; /* Butonun üstünde başlasın */
  right: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 0;
  width: 240px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none; /* Kapalıyken tıklanamaz */
  z-index: 99999;
}

/* Menü Açıkken durumu (JS ile toggle) */
.floating-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto; /* Açıkken tıklanabilir */
}

/* Menü açıkken arkada gösterilecek tam ekran blur backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Arka planı hafif beyaz ve blur yapalım */
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9997; /* Menünün hemen altında kalacak şekilde ayarlayın */
}

/* Açıkken görünür olması için .open class eklenince devreye girsin */
.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

/* Menüdeki her bir satır */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.2s;
}
.menu-item:last-child {
  border-bottom: none; /* Son elemanda çizgi olmasın */
}
.menu-item:hover {
  background-color: #f4f4f4;
}
.menu-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-right: 10px;
}
.menu-item img {
  width: 48px;
  height: auto;
  border-radius: 6px;
}

/* -- Popup Overlay (ekranın kararması) -- */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none; /* Başlangıçta gizli */
  align-items: center;
  justify-content: center;
}

/* -- Popup kutusu -- */
.popup-box {
  position: relative;
  background: #fff;
  width: 90%;
  height: 90%;

  border-radius: 8px;
  overflow: hidden;
}
.popup-box iframe {
  width: 100%;
  height: 100%; /* Kapat butonu için alan bırakalım */
  border: 0;
}

/* -- Popup kapat butonu -- */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 38px;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.307);
  backdrop-filter: blur(10px);
  width: 40px;
  heighT: 40px;
  border-radius: 1000px;
}

/* Popup görünürken .open class ekleyebiliriz */
.popup-overlay.show {
  display: flex;
}

@font-face {
  font-family: 'Urbanist';
  src: url('assets/fonts/Urbanist-Regular.ttf') format('truetype'),
       url('assets/fonts/Urbanist-Bold.ttf') format('truetype'),
       url('assets/fonts/Urbanist-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Urbanist';
  src: url('assets/fonts/Urbanist-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Urbanist';
  src: url('assets/fonts/Urbanist-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}
body {
  font-family: 'Urbanist', sans-serif;
  color: #333;
}


.device-access-img img {

  display: none;
}
/* ---------------- [HERO ALANI] ---------------- */
.hero-section {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;             
  min-height: 1414px;        
  background: url("assets/bg-1.jpeg") no-repeat center center / contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding: 0 100px;
  margin-top: -110px;
}

/* Hero metin */
.hero-content {
  color: #fff;
  max-width: 1100px;
  margin-top: -400px;
}
.hero-content h1 {
  font-size: 66px;
  margin-bottom: 80px;
  line-height: 84px;
}
.hero-content p {
  font-size: 23px;
  margin-bottom: 20px;
  line-height: 28px;
  margin-top: 50px;
}
.btn-hero {
  display: inline-block;
  background-color: white; 
  padding: 24px 50px;
  border-radius: 1000px;
  font-size: 20px;
  text-decoration: none;
  margin-top: 80px;
}
.btn-hero span {
  font-weight: 800;
  background: linear-gradient(90deg, #2AC35A 0%, #25388C 140%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------------- [SLIDER ALANI] ---------------- */
.slider-section {
  padding: 60px 5% 80px;
  background: transparent;
  margin-top: -520px;
}
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; 
  border-radius: 10px;
  padding: 20px;
}

/* Ok butonları */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eee;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 50px;
  cursor: pointer;
  text-align:center;
  justify-content: center;

  transition: background-color 0.3s;
  z-index:999;
  opacity: 0.9;
}
.arrow-btn:hover {
  background-color: #ccc;
}
#prevBtn { left: 0px; }
#nextBtn { right: 0px; }

/* Slider track */
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
}
.slide {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}
.slide img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 20px;
  border: solid 1px white;
  border-radius: 20px;
}


.slide h3 { 
  font-size: 22px; 
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
}


.slide p { 
  font-size: 22px; 
  margin-bottom:45px;
  color: white;
  font-weight: normal;
}



.btn-slide {
  display: inline-block;
  background-color: #ffffff;
  color: black;
  padding: 18px 48px;
  border-radius: 1200px;
  font-weight: 600;
  font-size: 16px;
  border: solid 1px black;
  text-decoration: none;

}



/* ---------------- [SHOWROOM BÖLÜMÜ] ---------------- */
.showroom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0px;
  background: white;
  gap: 0px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 20px;
}

.mockup {
  flex: 1;
  text-align: center;
}
.mockup img {
  max-width: 389px;
  height: auto;
}

.mockup-mobile-paye {
  flex: 1;
  text-align: center;
  display: none;
}
.mockup-mobile-paye img {
  max-width: 389px;
  height: auto;
}


.mockup2 {
  display: block;
  position: absolute;
  right: 28px;
  top: 200px;
}
.mockup2 img {
  max-width: 370px;
  height: auto;


}

/* Showroom Başlık */
.showroom-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.showroom-title img {
  width: 73px;
  height: auto;
  position: absolute;
  margin-bottom:160px;
}
.showroom-title h2 {
  font-size: 50px;
  font-weight: 700;
  background: linear-gradient(90deg, #58ADC0 0%, #009A64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
}

/* Showroom Açıklama */
.showroom-content {
  flex: 2;
  max-width: 827px;
  margin-top: -120px;
}
.showroom-content h3 {
  font-size: 36px;
  background: linear-gradient(90deg, #58ADC0 0%, #009A64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-bottom: 300px;
}
.showroom-content p {
  font-size: 28px;
  color: #333;
  line-height: 35px;
  margin-bottom: 0px;
  font-weight:thin;
  position: absolute;
  margin-top: -150px;
  width: 800px;
}


/* İkonlar */
.showroom-icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  position: absolute;
  margin-top: 120px;
}

.icon-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 240px;
  max-width: 320px;

}

.icon-box img {
  width: 48px;
  height: auto;
  margin-top: 4px; /* İkonlar metin hizasında ortalansın */
  margin-right: 5px;
}

.icon-box span {
  font-size: 16px;
  color: #333;
  line-height: 20px;
  display: inline-block;
  max-width: 220px; /* Metin genişliği sınırlanarak 2 satır olması sağlandı */
}

/* ---------------- [RESPONSIVE] ---------------- */
@media (max-width: 1024px) {
 
 
  .showroom-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .mockup img {
    max-width: 250px;
  }
  .showroom-content {
    max-width: 90%;
  }
  .showroom-icons {
    flex-direction: column;
    align-items: center;
  }
  .icon-box {
    max-width: 100%;
    text-align: left;
  }
}


/* ---------------- [ÜRÜN DETAY BÖLÜMÜ] ---------------- */
.product-detail-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5%;
  background: #ffffff00;
  gap: 0px;
  max-width: 1366px;
  margin: 0 auto;
}

.product-image {
  flex: 1;
  text-align: center;
}
.product-image img {
  max-width: 520px;
  height: auto;
}

/* Ürün Başlık */
.product-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 160px;
}
.product-title img {
  width: 73px;
  height: auto;
  position: absolute;
  margin-bottom:160px;
}

.product-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
}

/* Ürün Açıklama */
.product-content {
  flex: 2;
  max-width: 620px;
  margin-top: -220px;
}



.product-content p {
  font-size: 28px;
  color: #333;
  line-height: 35px;
  margin-bottom: 0px;
  font-weight:thin;
  position: absolute;
  margin-top: -80px;
  width: 620px;
}


/* Ürün Detay İkonları */
.product-icons {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  position: absolute;
  margin-top: 100px;
}

.product-icons .icon-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
}

.product-icons .icon-box img {
  width: 48px;
  height: auto;
  margin-top: 4px; /* İkonlar metin hizasında ortalansın */
}

.product-icons .icon-box span {
  font-size: 16px;
  color: #333;
  line-height: 1.4;
  display: inline-block;
  max-width: 220px; /* Metin genişliği sınırlanarak 2 satır olması sağlandı */
}

.product-image-mixe {
  display: none;
}

/* ---------------- [RESPONSIVE] ---------------- */
@media (max-width: 1024px) {
  .product-detail-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .product-image img {
    max-width: 250px;
  }
  .product-content {
    max-width: 90%;
  }
  .product-icons {
    flex-direction: column;
    align-items: center;
  }
  .product-icons .icon-box {
    max-width: 100%;
    text-align: left;
  }
}



/* ---------------- [ÜRÜNLERİ KARŞILAŞTIR & TAKSİT KAMPANYASI] ---------------- */
.compare-products-section {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;             
      
  background: url("assets/bg-2.jpg") no-repeat center center / contain;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding: 60px;
  max-width: 1366px;
  padding-top:0px;
  color: #fff;
  margin-top: -140px;
  min-height: 809px;
}

.compare-container {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  margin-left: 20px;
  flex-direction: column;
  align-items: flex-start; /* Yazıları sola hizala */
}

.compare-container h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  margin-top:60px;
  text-align: left;
}

.compare-container p {
  font-size: 26px;
  margin-bottom: 0px;
  text-align: left;
  max-width: 600px;
  margin-top: 20px;
}


/* Ürün Karşılaştırma İçeriği */
.compare-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  margin-top: 0px;
}

/* Ürün Bilgi Kartı */
.product-info-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 32px;
  border-radius: 54px;
  border: solid 1px white;
  text-align: left;
  width: 660px;
  backdrop-filter: blur(28px);
  margin-top: 45px;
}

.product-info-card h3 {
  font-size: 20px;
  line-height: 31px;
  font-weight: 600;
  margin-top: 0px;
  margin-left: 20px;
  color: #fff;
}

/* Renk Seçenekleri */
.color-options {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0px;
  margin-top: 30px;
  margin-left: 20px;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;
  background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
}

/* Özel Renkler */
.color-dot:nth-child(1) { --color1: #E9CCB1; --color2: #837364; } /* Bej */
.color-dot:nth-child(2) { --color1: #C4C4C4; --color2: #5E5E5E; } /* Gri */
.color-dot:nth-child(3) { --color1: #676767; --color2: #333333; } /* Siyah */
.color-dot:nth-child(4) { --color1: #A9C181; --color2: #505B3D; } /* Yeşil */
.color-dot:nth-child(5) { --color1: #507E91; --color2: #456876; } /* Mavi */
.color-dot:nth-child(6) { --color1: #DEB3B3; --color2: #786161; } /* Pembe */

/* "+12" Ekstra Seçenek Butonu */
.color-more {
  font-size: 13px;
  background: #D9D9D97D;
  padding: 8px;
  color: white;
  border-radius: 200px;
  font-weight: 600;
}
/* Ürün Detayları */
.product-details {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  position: absolute;
  right: 190px;
  top: 36px;
  text-align:right;

}


.product-details2 {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  position: absolute;
  right: 190px;
  top: 138px;
  text-align:right;

}

.stock-status {
  font-weight: 700;
  color: #4CAF50;
}

/* Ürün Butonları */
.product-buttons {
  display: flex;
  gap: 15px;
  margin-top:30px;
}

.btn-product, .btn-view {
  padding: 18px 24px;
  border-radius: 2000px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  width: 50%;
}

.btn-product {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-view {
  background: #fff;
  color: #A1C1CB;
}

/* Ürün Görseli */
.product-image-box {
  position: absolute;
  left:564px;
  margin-top:70px;
  flex: 1;
  display: flex;
  justify-content: center;
}


.product-image-box img {
 border-radius: 29px;
 width: 140px;
}



.product-image-mixed { 
  display: none;
}

/* ---------------- [RESPONSIVE] ---------------- */
@media (max-width: 1200px) {
  .compare-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .compare-container h2, .compare-container p {
    text-align: center;
    max-width: 100%;
  }
  .product-info-card {
    max-width: 100%;
    text-align: center;
  }
  .campaign-bubble {
    top: 20px;
    right: 20px;
    width: 140px;
    height: 140px;
  }
  .product-image-box img {
    max-width: 220px;
  }
}

/* ---------------- [360 İNCELE BÖLÜMÜ] ---------------- */
.explore-360-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0px;
  background: #ffffff00;
  gap: 0px;
  max-width: 1366px;
  margin: 0 auto;
}

.explore-360-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  gap: 60px;
}



/* Ürün Görseli */
.explore-360-image {
  flex: 1;
  text-align: center;
}

.explore-ar-icon {
  position: absolute;
  width: 62px;
  height: auto;

  margin-top: -50px;
}

.explore-360-image img {
  max-width: 680px;
  height: auto;
  border-radius: 20px;
}

/* Metin Alanı */
.explore-360-content {
  flex: 1;
  text-align: left;
}

.explore-360-title {
  display: flex;
  align-items: center;
  gap: 12px;
}



.explore-360-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-top: 160px;
}

.explore-360-content p {
  font-size: 28px;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
  width: 620px;
  margin-top: 60px;
}

/* Buton Stili */
.btn-explore-360 {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  background: transparent;
  color: #000;
  border: 2px solid #000;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 150px;
  margin-left: 280px;
}

.btn-explore-360:hover {
  background: #000;
  color: #fff;
}

/* ---------------- [RESPONSIVE] ---------------- */
@media (max-width: 1024px) {
  .explore-360-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .explore-360-image img {
    max-width: 100%;
  }
  .explore-360-content {
    text-align: center;
  }
  .explore-360-title {
    justify-content: center;
  }
}

/* ---------------- [HER CİHAZDAN KOLAY ERİŞİM BÖLÜMÜ] ---------------- */
.device-access-section {
  background: url('assets/bg-3.jpg') no-repeat center center / contain;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;             
  min-height: 960px;        
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding: 0 0px;
  margin-top: 0px;
}

.device-access-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.device-access-text {
  flex: 1;
  max-width: 500px;
  position: absolute;
  left: 120px;
  top: 260px;
}

.device-access-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.device-access-text p {
  font-size: 26px;
  line-height: 1.5;
  margin-top: 25px;
  color: white;
}

/* Görsel */
.device-access-image {
  flex: 2;
  text-align: right;
}

.device-access-image img {
  max-width: 100%;
  height: auto;
  color: white;
}

/* ---------------- [RESPONSIVE] ---------------- */
@media (max-width: 1200px) {
  .device-access-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .device-access-text {
    max-width: 100%;
  }
  .device-access-image img {
    max-width: 100%;
    height: auto;
  }
}



/* =========================
   MOBİL (768px ve altı) 
   ========================= */
@media (max-width: 768px) {

  /* GENEL SIFIRLAMA/ÖLÇÜ */


  /* ---- [HERO ALANI] ---- */
  .hero-section {
    width: 100%;
    max-width: 100%;
    margin: 0;             
    min-height:724px;        
    background: url("assets/bg-1-mobile.jpg") no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 0px;
    margin-top: 0px;
    top: 0px;
  }

  .hero-content {
    margin-top: 0;
    max-width: 100%;
    padding: 0px;
    width: 100%;
    margin-top: 180px;
  }
  .hero-content h1 {
    font-size: 23px; 
    line-height: 30px;
    margin-bottom: 0px;
    text-align: center;
    font-weight: normal;
    width: 100%;
  }
  .hero-content p {
    font-size: 16px;  
    line-height: 1.5;
    margin-top: 20px;
    display: none;
  }
  .btn-hero {
    display: none;
    font-size: 16px;
    margin-top: 30px;
    padding: 14px 30px;
  }

  .slider-section {
    margin-top: -200px; 
    padding: 10px 0;
    overflow: hidden; /* Taşmaları gizle */
  }

  .slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0; /* Dilerseniz yuvarlatmayı kaldırıp sıfırlayabilirsiniz */
    padding: 0px;
  }

  /* Eğer ok butonlarını mobilde istemiyorsanız gizleyin */
  #prevBtn, #nextBtn {
    display: none; 
  }

  /* Kaydırılabilir alan */
  .slider-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 0px;              /* Slide’lar arası boşluk */
    will-change: transform; /* Performans için eklenebilir */
    display: flex;
    flex-direction: row;
    align-items: left;
    justify-content: left;
    flex-wrap: nowrap;             /* Tek satırda tut */
    overflow-x: auto;   
    max-width: 100%;  
  }

  /* Her bir slide mobilde %50 genişlik kaplayacak şekilde */
  .slider-track .slide {
    flex: 0 0 calc(46% - 0px);
    max-width: calc(46% - 0px);
    box-sizing: border-box;
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    background-color: #ffffff00; /* Arka plan rengi ekleyebilirsiniz */
    margin-bottom: 0;
  }

  /* Slide içindeki görsel */
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 0 auto;
  }

  /* Başlık, alt metin ve butonlar */
  .slide h3 {
    font-size: 16px;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #ffffff;
  }
  .slide p {
    font-size: 13px;
    margin: 0 0 24px;
    color: #ffffff;
  }
  .btn-slide {
    display: none;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 999px;
    background-color: #000;
    color: #fff;
    margin-bottom: 10px;
  }

  /* ---- [SHOWROOM BÖLÜMÜ] ---- */
  .showroom-section {
    flex-direction: column;   /* Tek kolon */
    text-align: center;
    padding: 100px 0;
    margin-top: 0;
    gap: 20px; 
  }
  .mockup {
    order: 1;
    display: none;
  }
  .mockup img {
    max-width: 80%; 
    height: auto;
  }

  .mockup-mobile-paye {
    order: 1;
    display: inline-block;
  }
  .mockup-mobile-paye img {
    max-width: 90%; 
    height: auto;
  }


/* Showroom Başlık */
.showroom-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.showroom-title img {
  width: 53px;
  height: auto;
  position: absolute;
  margin-bottom:100px;
  left: 50%;
  transform: translateX(-50%);
}
.showroom-title h2 {
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, #58ADC0 0%, #009A64 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0px;
  width: 100%;

}


  .showroom-content {
    order: 2;
    max-width: 100%;
    margin-top: 0;
    position: static; /* absolute pozisyonlamayı kaldıralım */
    padding: 0 15px;
  }
  .showroom-content h3 {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .showroom-content p {
    position: static;
    margin: 30px auto 30px;
    font-size: 14px;
    line-height: 1.4;
    width: 90%;
  }
  .showroom-icons {
    position: static;
    margin-top: 20px;
    justify-content: center;  /* ikonları ortaya al */
    display: none;
  }


  
  .icon-box {
    justify-content: center;
    margin-bottom: 20px;
  }

  /* ---- [ÜRÜN DETAY BÖLÜMÜ] ---- */
  .product-detail-section {
    flex-direction: column;
    padding: 40px 0;
    text-align: center;
    gap: 20px;
  }
  .product-image {
    order: 1;
    display: none;
  }
  .product-image img {
    max-width: 80%;
  }

  .product-image-mixed {
    order: 1;
    display: inline-block;
  }
  .product-image-mixed img {
    max-width: 80%;
  }

  .product-title img {
    width: 52px;
    height: auto;
    position: absolute;
    margin-bottom:140px;
  }
  .product-content {
    order: 2;
    max-width: 100%;
    margin-top: 0;
    position: static;
    padding: 0 15px;
  }
  .product-title {
    position: static;
    margin-bottom: 20px;
    justify-content: center;
  }
  .product-title h2 {
    font-size: 24px;
    margin-top: 0;
  }
  .product-content p {
    position: static;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 1.5;
    width: 90%;
  }
  .product-icons {
    position: static;
    margin-top: 20px;
    justify-content: center;
    display: none;
  }
  .product-icons .icon-box {
    justify-content: center;
    margin-bottom: 20px;
  }

  /* ---- [ÜRÜNLERİ KARŞILAŞTIR & TAKSİT KAMPANYASI] ---- */
  .compare-products-section {
    width: 100%;
    margin: 0 auto;
    border-radius: 14px; 
    background: url("assets/bg-2-mobile.jpg") no-repeat center;
    /* Arka planı konteynerin %80’ine ölçekle */
    background-size: 120% auto; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding: 0px;
    color: #fff;
    height: auto; /* İçerik kadar yükseklik */
    overflow: hidden; /* Köşe yuvarlamasında taşma olmasın diye */
    margin-top: -60px;
  }
  .compare-container {
    margin-left: 0;
    align-items: center;

    width: 100%;
  }

  .compare-container h2 {
    font-size: 20px;
    text-align: center;
    margin-top: -150px;
    width: 100%;
  }
  .compare-container p {
    font-size: 15px;
    width: 100%;
    margin: auto;
    line-height: 24px;
    text-align: center;
    margin-top: 0px;
  }
  .compare-content {
    flex-direction: column;
    gap: 0px;
    align-items: center;
    justify-content: center;
  }

  .mockup2 img {
    max-width: 60%;
    height: auto;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
  }


.mockup2 {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 420px;
  width: 100%;
}
  .product-info-card {
    width: 100%;
    margin-top: 0;
    text-align: center;
    position: absolute;
    background: rgba(255, 255, 255, 0);
    padding: 0px;
    border-radius: 54px;
    border: none;
    text-align: left;
    backdrop-filter:none;
    margin-top: 0px;
    bottom: 64px;
    padding-left: 20px;
  }
  .product-info-card h3 {
    margin-left: 0;
    font-size: 16px;
    line-height: 22px;
    margin-top: 30px;
  }
  .color-options {
    justify-content: left;
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  /* "+12" Ekstra Seçenek Butonu */
.color-more {
  font-size: 13px;
  background: #d9d9d900;
  padding: 8px;
  color: white;
  border-radius: 200px;
  font-weight: 600;
}

  .color-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: inline-block;
    background: linear-gradient(135deg, var(--color1) 0%, var(--color2) 100%);
  }

  .product-details2 {
    text-align: center;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    position: absolute;
    right:10px;
    top: 64px;
    text-align:right;
  }

  .product-details {
    text-align: center;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    position: absolute;
    right:10px;
    top: 30px;
    text-align:right;
  }
  
  .product-buttons {
    flex-direction: column;
    display: none;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
  }
  .btn-product,
  .btn-view {
    width: auto;
    margin: 0 auto;
  }
  /* Ürün görseli */
  .product-image-box {
    position: static;
    left: auto;
    margin: 0 auto 20px;
    display: none;
  }
  .product-image-box img {
    width: 200px;
  }

  /* ---- [360 İNCELE BÖLÜMÜ] ---- */


  /* Metin paragrafı başlıktan sonra */


  /* Görsel en altta */
  .explore-360-image {
    order: 4;
    text-align: center;
    margin-top: 20px;
  }
  
  .explore-360-section {
    flex-direction: column;
    padding: 0px 0px;
    gap: 0px;
    text-align: center;
    margin-top: 100px;
  }
  .explore-360-container {
    flex-direction: column;
    gap: 0px;
    justify-content: center;
  }
  .explore-360-image,
  .explore-360-content {
    flex: unset;
    width: 100%;
  }
  .explore-360-image img {
    max-width: 90%;
    margin: 0 auto;
  }
  .explore-360-title {
    position: static;
    justify-content: center;
    order: 2;
    display: flex;
    flex-direction: column; 
    align-items: center;  /* AR ikonu ve yazı ortalansın */
  }
  .explore-360-title h2 {
    font-size: 24px;
    margin-top: 0;
  }
  .explore-360-content p {
    font-size: 16px;
    width: 100%;
    margin: 10px auto 20px auto;
    order: 3;

  }
  .btn-explore-360 {
    margin-top: 20px;
    margin-left: 0;
    display: none;
    order: 1;        /* Sırada 1 (en üst) */
    margin: 20px 0;  /* İsteğe göre boşluk ekleyin */
  }

  /* ---- [HER CİHAZDAN KOLAY ERİŞİM BÖLÜMÜ] ---- */
  .device-access-section {
    min-height: auto;
    padding: 40px 0;
    margin-top: 200px;
    background: none;
  }
  .device-access-container {
    flex-direction: column;
    gap: 20px;
  }
  .device-access-text {
    position: static;
    text-align: center;
    left: auto;
    top: auto;
    margin: 0 auto;
    margin-top: -160px;

  }
  .device-access-text h2 {
    font-size: 24px;
    color: black;
  }
  .device-access-text p {
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5;
    color: black;
  }
  .device-access-image {
    text-align: center;
  }
  .device-access-image img {
    max-width: 100%;
    height: auto;
  }

  .explore-ar-icon {
    position: absolute;
    width: 62px;
    height: auto;
  
    margin-top: -180px;
  }


  .device-access-img img {
    max-width: 94%;
    width: 94%;
    margin-top: 40px;
    display: block;
  }
  
  .popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 38px;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.307);
  backdrop-filter: blur(10px);
  width: 40px;
  heighT: 40px;
  border-radius: 1000px;
}

.pc-version {

  width: 100%;
  height: 100%;
  position: absolute;
  display: none;
  top: 0%;
  padding-top: 25%;
  background-color: white;
  color: black;
  z-index:99999999999999;
  
  }
}

