/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-anthracite: #2C2C2C;
    --color-dark: #1a1a1a;
    --color-white: #FFFFFF;
    --color-light-gray: #F5F5F5;
    --color-mid-gray: #888888;
    --color-accent: #2C2C2C;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}


.video {
  width: 100%;

  margin: auto;
}

.video video {
  width: 100%;
  height: auto;
  display: block;
}



/* ============================================
   NAVIGATION
   ============================================ */
/* #navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-anthracite);
    padding: 1.5rem 0; //sil sonra
    transition: var(--transition);
}



#navbar.scrolled {
  padding: 0.45rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.2rem;
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
  gap: 0.65rem;
    justify-self: start;
}

.nav-center {
    justify-self: center;
}

.nav-right {
    justify-self: end;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-white);
    text-transform: uppercase;
}

.logo img {
    max-height: 52px;
    width: auto;
    height: auto;
    margin-left: 0;
    transition: transform 0.2s ease;
}

.logo img:hover {
    transform: translateY(-1px) scale(1.02);
}

.nav-menu {
  display: grid;
    list-style: none;
  gap: 0.45rem;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 0.65rem;
  background-color: var(--color-anthracite);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}

.nav-link {
    font-family: var(--font-sans);
  font-size: 0.73rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
    padding: 0.35rem 0.45rem;
    border-radius: 6px;
}

.nav-link::after {
    display: none;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
  transform: translateX(3px);
  background-color: rgba(255, 255, 255, 0.1);
}

.menu-dropdown {
  position: relative;
}

.translate-btn,
.menu-btn,
.search-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.translate-btn:hover,
.menu-btn:hover,
.search-btn:hover {
  transform: translateY(-2px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.menu-dropdown:hover .nav-menu,
.menu-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition);
} */




*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Helvetica, Arial, sans-serif;
}

body{
  background:white;
}

/* NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  height:85px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  background:#2C2C2C;
  color:white;
  transition:.3s ease;
  z-index:9999;
  top: 0;
  left: 0;
}

.navbar.scrolled{
  background:white;
  color:#2C2C2C;
}

.navbar.scrolled .logo img{
  filter: none;
}

.logo img{
  transform: translateY(10px);
}

.navbar:hover{
  background:white;
  color:black;
}


.navbar button,
.navbar a{
  color:inherit;
  background:none;
  border:none;
  cursor:pointer;
  text-decoration:none;
  font-size:13px;
  letter-spacing:2px;
}

/* SOL ALAN */
.nav-left{
  display:flex;
  align-items:center;
  gap:40px; /* MENU ile SEARCH arası açıldı */
}

/* SEARCH */
.search-btn{
  display:flex;
  align-items:center;
  gap:8px;
}

/* SAĞ DİL */
.nav-lang{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav-lang span{
  opacity:.5;
}

/* SEARCH PANEL */
.search-panel{
  position:fixed;
  top:85px;
  width:100%;
  background:white;
  padding:20px 60px;
  display:none;
  border-bottom:1px solid #eee;
}

.search-panel input{
  width:300px;
  padding:10px;
  border:1px solid #ccc;
}

/* HERO */
/* .hero{
  margin-top:140px;
  padding:60px;
} */

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:1500;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* SIDE MENU */
.side-menu{
  position:fixed;
  top:0;
  left:0;
  width:350px;
  height:100%;
  background:white;
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transform:translateX(-100%);
  transition:.4s cubic-bezier(.77,0,.18,1);
  z-index:2000;
}

.side-menu.active{
  transform:translateX(0);
}

.menu-links{
  display:flex;
  flex-direction:column;
  gap:30px;
  font-size:20px;
}

.menu-links a{
  color:black;
  text-decoration:none;
  position:relative;
}

.menu-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0%;
  height:2px;
  background:black;
  transition:.3s;
}

.menu-links a:hover::after{
  width:100%;
}

.menu-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  border-top:1px solid #ececec;
  padding-top:1rem;
}

.menu-tour-link{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-size:13px;
  letter-spacing:2px;
  color:#2C2C2C;
  text-decoration:none;
}

.menu-bottom-lang{
  gap:8px;
}

.menu-bottom-lang button{
  color:#2C2C2C;
  background:none;
  border:none;
  cursor:pointer;
  font-size:13px;
  letter-spacing:2px;
}

.menu-bottom-lang span{
  opacity:.5;
}







/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .products-grid,
    .guides-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .corporate-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

  .nav-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.7rem;
    padding: 0.6rem 1rem;
  }

  .nav-left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .translate-btn,
  .menu-btn,
  .search-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.55rem;
  }
    
    .nav-menu {
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 200px;
  }

  .menu-dropdown:hover .nav-menu,
  .menu-dropdown:focus-within .nav-menu {
    transform: translate(-50%, 0);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .products-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button,
    .submit-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}



/* ANİMASYON */
.mywin-animation-container {
    width: 100vw;
    max-width: none;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  display: flex;
  justify-content: center;
  align-items: center;
    padding: 30px 0 20px;
  box-sizing: border-box;
    background: transparent;
}

.logo-container {
  position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
    background: var(--color-anthracite);
 /*  border-radius: 20px;  */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.95);
  animation: scaleIn 0.8s ease-out 0.5s forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 0, 0, 0.03),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

.spotlight-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: 
    radial-gradient(
      circle 500px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.14) 30%,
            rgba(255, 255, 255, 0.06) 50%,
      transparent 70%
    ),
    radial-gradient(
      circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.16) 0%,
            rgba(255, 255, 255, 0.08) 40%,
      transparent 60%
    );
  mix-blend-mode: screen;
  animation: spotlightPulse 2s ease-in-out infinite;
}

.logo-container:hover .spotlight-overlay {
  opacity: 1;
}

.spotlight-overlay::before,
.spotlight-overlay::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.spotlight-overlay::before {
  width: 1000px;
  height: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: ripple 2s ease-out infinite;
}

.spotlight-overlay::after {
  width: 1000px;
  height: 1000px;
  animation: ripple 2s ease-out 0.5s infinite;
}

.logo-text {
  font-family: 'Ethnocentric Rg', 'Orbitron', sans-serif;
    font-size: clamp(7.6rem, 30vw, 24rem);
  font-weight: 400;
    letter-spacing: 6px;
  position: relative;
  z-index: 3;
  user-select: none;
  display: flex;
    width: 100%;
  animation: textPulse 4s ease-in-out infinite;
  justify-content: center;
    align-items: center;
  gap: 5px;
}

.logo-text span {
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.16);
  transition: all 0.2s ease;
  display: inline-block;
}

.logo-container::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  animation: cursorPulse 2s ease-in-out infinite;
}

.logo-container:hover::after {
  opacity: 1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes textPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.05);
  }
}

@keyframes spotlightPulse {
  0%, 100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.13);
  }
}

@keyframes ripple {
  0% {
    width: 35px;
    height: 35px;
    opacity: 0.55;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
  }
}

@keyframes cursorPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 
      0 0 7px rgba(255, 255, 255, 0.35),
      0 0 14px rgba(102, 126, 234, 0.28),
      inset 0 0 7px rgba(255, 255, 255, 0.28);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow: 
      0 0 11px rgba(255, 255, 255, 0.55),
      0 0 18px rgba(102, 126, 234, 0.38),
      inset 0 0 11px rgba(255, 255, 255, 0.38);
  }
}



/* * slayt */

/* .product-gallery {
  max-width: 600px;
  margin: 40px auto;
}

.main-image {
  background: #f3f3f3;
  padding: 30px;
  border: 1px solid #e5e5e5;
}

.main-image img {
  width: 100%;
  max-height: 350px;
  object-fit: contain;
  display: block;
}

.thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.thumbnails img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.thumbnails img:hover {
  border-color: #000;
}
@media (max-width: 768px) {
  .product-gallery {
    max-width: 95%;
  }

  .thumbnails img {
    width: 70px;
    height: 60px;
  }
}
 */
/* Akan Slayt */

.urun1-top-layout {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin: 260px 0 20px;
  padding: 0 16px;
}

.thumbnails {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding-left: 0;
}

.thumbnails img {
  width: 100px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.yazi {
  max-width: 620px;
}

.yazi h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.yazi ul {
  margin: 0;
  padding-left: 1.2rem;
}

.yazi li {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-dark);
  margin-bottom: 0.55rem;
}

@media (max-width: 992px) {
  .urun1-top-layout {
    flex-direction: column;
    margin-top: 260px;
  }

  .yazi {
    max-width: 100%;
  }
}

.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-slide {
  width: 200px !important;   /* Slide genişliğini sabitle */
  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  height: 150px;             /* Yüksekliği sabitle */
  object-fit: cover;         /* Taşmayı engeller */
  border-radius: 8px;
}



/* yazı */

.pdf-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 30px;
  color: #2C2C2C;
  text-decoration: none;
  transition: 0.3s;
}

.pdf-icon-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #2C2C2C;
}

.pdf-icon:hover {
  color: #888;
  transform: scale(1.1);
}

.pdf-icon:hover .pdf-icon-text {
  color: #888;
}







* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #f5f6f8;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
}

/* HERO */
.page-hero {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 600;
}

.page-hero p {
  margin-top: 10px;
  font-size: 18px;
  color: #666;
}

.page-hero span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  color: #999;
}

/* PRODUCT MAIN */
.product-main {
  display: flex;
  gap: 50px;
  align-items: center;
}

.product-image {
  width: 100%;
  max-width: 500px;
}

.product-image img {
  width: 100%;
  border-radius: 6px;
}

.product-info h2 {
  margin-bottom: 20px;
}

.product-info ul {
  list-style: none;
}

.product-info li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* TECHNICAL */
.technical h2 {
  margin-bottom: 20px;
}

.download-buttons {
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  margin-right: 10px;
  background: #2C2C2C;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.technical-image img {
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 6px;
}

.technical-swiper {
  width: 100%;
  padding: 10px 0;
}

.technical-swiper .swiper-slide {
  width: 300px !important;
  flex-shrink: 0;
}

.technical-swiper .swiper-slide img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: #ffffff;
  padding: 12px;
  border-radius: 8px;
  cursor: zoom-in;
}

.tech-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  padding: 30px;
}

.tech-lightbox.active {
  display: flex;
}

.tech-lightbox-img {
  max-width: min(92vw, 1200px);
  max-height: 88vh;
  width: auto;
  height: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 14px;
}

.tech-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

/* SPECS */
.specs {
  display: flex;
  gap: 60px;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.spec-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.components ul {
  list-style: disc;
  padding-left: 20px;
}

.components li {
  margin-bottom: 10px;
}

/* APPLICATIONS */
.applications {
  background: #ffffff;
  padding: 60px 0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.app-card {
  background: #f5f6f8;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
}

.app-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.app-card span {
  display: block;
  padding: 15px;
  font-weight: 500;
}

.app-card:hover {
  transform: translateY(-5px);
}



/* RENK SEÇENEKLERİ */

 .color-options {
  margin-top: 30px;
}

.color-options h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000;
}

.color-wrapper {
  display: grid;
  grid-template-columns: repeat(8, 60px);
  gap: 20px;
  width: fit-content;
}

.color-item {
  position: relative;
  text-align: center;
  cursor: pointer;
}

.color-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #ddd;
  transition: 0.3s;
}

/* Örnek renkler */
.color-circle.gold {
  background: linear-gradient(45deg, #a8742a, #cfa24c);
}

.color-circle.maun {
  background: linear-gradient(45deg, #4b2e1f, #2b1a12);
}

.color-circle.agate-grey {
  background: #b3b6b1;
}

.color-circle.anthracite-grey {
  background: #4a4f54;
}

.color-circle.basalt-grey {
  background: #5f666b;
}

.color-circle.grey-7155 {
  background: #8a8d91;
}

.color-circle.ochre-yellow {
  background: #c79a33;
}

.color-circle.quartz-grey {
  background: #7a7d73;
}

.color-circle.sage {
  background: #8e927e;
}

.color-circle.slate-grey {
  background: #6f767d;
}

.color-circle.chocolate-brown {
  background: #4a2f22;
}

.color-circle.black-ultimatt {
  background: #161616;
}

.color-circle.black-brown {
  background: #2a211d;
}

.color-circle.sepia-brown {
  background: #6b4a37;
}

.color-circle.signal-grey {
  background: #8b8f91;
}

.color-circle.terracotta {
  background: #a55539;
}

.color-circle.umbra-grey {
  background: #5f5b55;
}

.color-circle.amaranth-oak {
  background: linear-gradient(45deg, #7a3f35, #5e2f28);
}

.color-circle.cayenne-oak {
  background: linear-gradient(45deg, #8a4f2f, #66371f);
}

.color-circle.chia-oak {
  background: linear-gradient(45deg, #6d5237, #4f3a25);
}

.color-circle.cinnamon-oak {
  background: linear-gradient(45deg, #9b633c, #744629);
}

.color-circle.coriander-oak {
  background: linear-gradient(45deg, #7b6a4d, #5a4b35);
}

.color-circle.honey-oak {
  background: linear-gradient(45deg, #b7853e, #8d642c);
}

.color-circle.nutmeg-oak {
  background: linear-gradient(45deg, #7a4f34, #5b3a26);
}

.color-circle.weissbach-eich {
  background: linear-gradient(45deg, #8a6a4a, #664c35);
}

.color-circle.color-6b4a33 {
  background: #6B4A33;
}
.color-circle.weissbach-eich {
  background: linear-gradient(45deg, #8a6a4a, #6B4A33);
}

.color-item:hover .color-circle {
  transform: scale(1.1);
  border-color: #2C2C2C;
}

/* Hover Yazı */
.color-name {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  background: #2C2C2C;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: 0.3s;
  white-space: nowrap;
}

.color-item:hover .color-name {
  opacity: 1;
}

@media (max-width: 1024px) {
  .product-main {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .specs {
    flex-direction: column;
    gap: 24px;
  }

  .app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-wrapper {
    grid-template-columns: repeat(6, 60px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 2rem));
    padding: 40px 0;
  }

  .page-hero {
    padding: 56px 16px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .product-main {
    gap: 22px;
  }

  .product-image {
    max-width: 100%;
  }

  .technical-swiper .swiper-slide {
    width: 240px !important;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }

  .color-options h3 {
    text-align: center;
  }

  .color-wrapper {
    grid-template-columns: repeat(4, 60px);
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .btn {
    display: block;
    width: 100%;
    margin-right: 0;
    text-align: center;
  }

  .product-info li {
    font-size: 14px;
  }

  .color-wrapper {
    grid-template-columns: repeat(3, 56px);
    gap: 14px;
  }

  .color-circle {
    width: 56px;
    height: 56px;
  }
}
 





.mywin-animation-container {
  width: 100vw;
  max-width: none;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(145deg, #1f7a46 0%, #25d366 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    filter: saturate(1.05);
}

.whatsapp-float:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
        border-radius: 14px;
    }

    .whatsapp-float img {
        width: 22px;
        height: 22px;
    }
}

a,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

.download-buttons .btn,
.download-buttons .btn:visited,
.download-buttons .btn:hover,
.download-buttons .btn:active,
.download-buttons .btn:focus {
  color: #fff;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

video,
iframe {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 768px) {
  .side-menu {
    width: min(88vw, 350px);
  }

  .menu-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


.pdf-float svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pdf-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pdf-float:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    

.pdf-float svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
}

.pdf-float {
    position: fixed;
    right: 24px;
    bottom: 92px;
    width: 56px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(145deg, #c21f2f 0%, #a31422 100%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    z-index: 1200;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-float svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.pdf-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pdf-float:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .pdf-float {
        right: 18px;
        bottom: 80px;
        width: 52px;
        height: 36px;
        border-radius: 10px;
    }

    .pdf-float svg {
        width: 16px;
        height: 16px;
    }
}
/* PDF button size synced with WhatsApp button */
.pdf-float {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: #ffffff;
}

.pdf-float svg {
    width: 22px;
    height: 22px;
    fill: #c21f2f;
    color: #c21f2f;
}

@media (max-width: 768px) {
    .pdf-float {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
    }

    .pdf-float svg {
        width: 20px;
        height: 20px;
    }
}

/* Floating buttons final polish */
.pdf-float,
.whatsapp-float {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.pdf-float {
    right: 24px;
    bottom: 92px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(145deg, #ffffff 0%, #f6f7f9 100%);
    border: 1px solid rgba(194, 31, 47, 0.25);
    position: fixed;
    z-index: 1201;
}

.pdf-float svg {
    width: 22px;
    height: 22px;
    fill: #c21f2f;
    color: #c21f2f;
}

.pdf-float::after {
    content: "Tum teknik cizimler";
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(20, 20, 20, 0.92);
    color: #fff;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pdf-float:hover::after,
.pdf-float:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.pdf-float:hover,
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .pdf-float,
    .whatsapp-float {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
        right: 18px;
    }

    .pdf-float {
        bottom: 80px;
    }

    .whatsapp-float {
        bottom: 18px;
    }

    .pdf-float::after {
        display: none;
    }
}

/* PDF final override: black background, red icon, WhatsApp size */
.pdf-float {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.pdf-float svg {
    width: 22px;
    height: 22px;
    fill: #d72638;
    color: #d72638;
}

@media (max-width: 768px) {
    .pdf-float {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 14px;
    }

    .pdf-float svg {
        width: 20px;
        height: 20px;
    }
}

/* Force sync: PDF and WhatsApp same size and fully round */
.pdf-float,
.whatsapp-float {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  aspect-ratio: 1 / 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
}

.pdf-float svg {
  width: 22px !important;
  height: 22px !important;
  fill: #d72638 !important;
  color: #d72638 !important;
}

@media (max-width: 768px) {
  .pdf-float,
  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    aspect-ratio: 1 / 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
  }
}

.whatsapp-float img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
}

@media (max-width: 768px) {
  .whatsapp-float img {
    width: 20px !important;
    height: 20px !important;
  }
}

@media (max-width: 768px) {
  .pdf-float {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
  }

  .pdf-float svg {
    width: 20px !important;
    height: 20px !important;
  }
}
