/* BEŞHAN TEKSTİL - Site Stilleri */
:root {
  --primary: #0d2b4d;
  --primary-light: #1a4a7a;
  --accent: #c8a951;
  --orange: #e65100;
  --orange-light: #ff8f00;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border: #eeeeee;
  --shadow: 0 4px 20px rgba(13, 43, 77, 0.1);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
}

body.has-fabric-intro.intro-active {
  overflow: hidden;
}

/* Ana sayfa açılış kumaş animasyonu */
.fabric-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f0f0f;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.fabric-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fabric-intro-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(230, 81, 0, 0.12) 0%, transparent 55%),
    linear-gradient(160deg, #1a1410 0%, #0d0d0d 45%, #1a1a1a 100%);
  animation: fabricBgPulse 4s ease-in-out infinite;
}

.fabric-intro-weave {
  position: absolute;
  inset: -50%;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.04) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255, 255, 255, 0.04) 3px, rgba(255, 255, 255, 0.04) 4px);
  transform: rotate(-12deg);
  animation: fabricWeaveDrift 8s linear infinite;
  pointer-events: none;
}

.fabric-intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.fabric-intro-strips {
  position: absolute;
  inset: -25%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  transform: rotate(-16deg) scale(1.15);
}

.fabric-strip {
  position: relative;
  width: 16vw;
  min-width: 100px;
  max-width: 180px;
  height: 150vh;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fabricStripIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  overflow: hidden;
}

.fabric-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: fabricShimmer 2.4s ease-in-out 1.2s infinite;
}

.fabric-strip-left {
  animation-name: fabricStripInLeft;
  transform: translateY(110%) translateX(-25%) scaleX(0.15) scaleY(0.4);
}

.fabric-strip-right {
  animation-name: fabricStripInRight;
  transform: translateY(110%) translateX(25%) scaleX(0.15) scaleY(0.4);
}

.fabric-strip-1 { animation-delay: 0.05s; margin-top: -100px; }
.fabric-strip-2 { animation-delay: 0.18s; margin-top: 40px; }
.fabric-strip-3 { animation-delay: 0.31s; margin-top: -50px; }
.fabric-strip-4 { animation-delay: 0.44s; margin-top: 80px; }
.fabric-strip-5 { animation-delay: 0.57s; margin-top: -20px; }
.fabric-strip-6 { animation-delay: 0.7s; margin-top: 60px; }

.fabric-intro-threads {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.fabric-intro-threads span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 143, 0, 0.6), transparent);
  opacity: 0;
  animation: fabricThreadFloat 3s ease-in-out infinite;
}

.fabric-intro-threads span:nth-child(1) { top: 18%; width: 40%; left: -40%; animation-delay: 0.4s; }
.fabric-intro-threads span:nth-child(2) { top: 35%; width: 55%; left: -55%; animation-delay: 1.1s; }
.fabric-intro-threads span:nth-child(3) { top: 52%; width: 35%; left: -35%; animation-delay: 1.8s; }
.fabric-intro-threads span:nth-child(4) { top: 68%; width: 48%; left: -48%; animation-delay: 2.4s; }
.fabric-intro-threads span:nth-child(5) { top: 82%; width: 42%; left: -42%; animation-delay: 3s; }

.fabric-intro-content {
  position: relative;
  z-index: 3;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.88);
  animation: fabricLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.fabric-intro-logo-wrap {
  position: relative;
  display: inline-block;
}

.fabric-intro-logo {
  position: relative;
  z-index: 1;
  width: min(300px, 72vw);
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
}

.fabric-intro-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.35) 0%, transparent 70%);
  animation: fabricGlowPulse 2s ease-in-out 1.5s infinite;
  pointer-events: none;
}

.fabric-intro-tagline {
  margin-top: 20px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fabricTaglineIn 0.7s ease 1.4s forwards;
}

.fabric-intro-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--orange), var(--orange-light), transparent);
  animation: fabricLineDraw 0.8s ease 1.6s forwards;
}

.fabric-intro-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 4;
}

.fabric-intro-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 12px rgba(230, 81, 0, 0.6);
  animation: fabricProgress 3.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fabric-intro-skip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fabricSkipIn 0.6s ease 1.8s forwards;
  pointer-events: none;
}

.fabric-intro.is-exiting .fabric-strip-left {
  animation: fabricStripOutLeft 0.9s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.fabric-intro.is-exiting .fabric-strip-right {
  animation: fabricStripOutRight 0.9s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.fabric-intro.is-exiting .fabric-strip-1 { animation-delay: 0s; }
.fabric-intro.is-exiting .fabric-strip-2 { animation-delay: 0.06s; }
.fabric-intro.is-exiting .fabric-strip-3 { animation-delay: 0.12s; }
.fabric-intro.is-exiting .fabric-strip-4 { animation-delay: 0.06s; }
.fabric-intro.is-exiting .fabric-strip-5 { animation-delay: 0.12s; }
.fabric-intro.is-exiting .fabric-strip-6 { animation-delay: 0.18s; }

.fabric-intro.is-exiting .fabric-intro-content {
  animation: fabricLogoOut 0.55s ease forwards;
}

.fabric-intro.is-exiting .fabric-intro-weave {
  animation: fabricWeaveFade 0.6s ease forwards;
}

@keyframes fabricBgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

@keyframes fabricWeaveDrift {
  to { transform: rotate(-12deg) translate(8px, 8px); }
}

@keyframes fabricWeaveFade {
  to { opacity: 0; }
}

@keyframes fabricStripInLeft {
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scaleX(1) scaleY(1);
  }
}

@keyframes fabricStripInRight {
  to {
    opacity: 1;
    transform: translateY(0) translateX(0) scaleX(1) scaleY(1);
  }
}

@keyframes fabricStripIn {
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1) scaleY(1);
  }
}

@keyframes fabricShimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

@keyframes fabricThreadFloat {
  0% { opacity: 0; transform: translateX(0); }
  15% { opacity: 0.7; }
  85% { opacity: 0.5; }
  100% { opacity: 0; transform: translateX(220vw); }
}

@keyframes fabricLogoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fabricTaglineIn {
  to { opacity: 0.92; }
}

@keyframes fabricLineDraw {
  to { width: min(220px, 60vw); }
}

@keyframes fabricGlowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes fabricProgress {
  to { width: 100%; }
}

@keyframes fabricSkipIn {
  to { opacity: 1; }
}

@keyframes fabricStripOutLeft {
  to {
    opacity: 0;
    transform: translateX(-130vw) rotate(-4deg) scaleY(0.8);
  }
}

@keyframes fabricStripOutRight {
  to {
    opacity: 0;
    transform: translateX(130vw) rotate(4deg) scaleY(0.8);
  }
}

@keyframes fabricLogoOut {
  to {
    opacity: 0;
    transform: translateY(-30px) scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fabric-intro {
    display: none;
  }

  body.has-fabric-intro.intro-active {
    overflow: auto;
  }
}

@media (max-width: 768px) {
  .fabric-strip {
    width: 22vw;
    min-width: 72px;
    max-width: 120px;
  }

  .fabric-intro-strips {
    transform: rotate(-16deg) scale(1.4);
    gap: 1px;
  }

  .fabric-intro-tagline {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-link {
  display: block;
  margin: 15px auto;
}

.logo-link img {
  width: 180px;
  height: auto;
}

.main-nav {
  width: 100%;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 30px;
  list-style: none;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--primary);
  padding: 8px 4px;
  display: block;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--accent);
}

.nav-list .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 280px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  list-style: none;
  z-index: 100;
  padding: 8px 0;
}

.nav-list > li:hover > .sub-menu {
  display: block;
}

.sub-menu li {
  position: relative;
}

.sub-menu .sub-menu {
  left: 100%;
  top: 0;
  transform: none;
}

.sub-menu li:hover > .sub-menu {
  display: block;
}

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.sub-menu li a:hover {
  background: #f5f8fc;
  color: var(--primary);
}

.lang-flag {
  width: 20px;
  height: 14px;
  vertical-align: middle;
  border: 1px solid #ddd;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 25px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  max-height: 550px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px;
  background: var(--white);
}

.slider-dot {
  width: 80px;
  height: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.6;
  transition: var(--transition);
  border-radius: 4px;
}

.slider-dot.active,
.slider-dot:hover {
  opacity: 1;
  border-color: var(--primary);
}

.slider-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.slider-arrow {
  pointer-events: all;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--primary);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #e65100 0%, #ff8f00 100%);
  color: var(--white);
  padding: 40px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 1px;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--white);
}

.breadcrumb a:hover {
  color: var(--accent);
}

/* Content Sections */
.content-section {
  padding: 50px 20px;
}

.content-section:nth-child(even) {
  background: #f8fafc;
}

.content-section h2 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

.content-section h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin: 25px 0 12px;
}

.content-section p {
  margin-bottom: 15px;
  text-align: justify;
}

.content-section ul {
  margin: 15px 0 15px 25px;
}

.content-section li {
  margin-bottom: 8px;
}

.text-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-intro {
  max-width: 900px;
  margin: 0 auto 40px;
  padding-bottom: 10px;
}

.page-intro p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.fabric-media .product-video {
  border-radius: 6px;
}

.sub-links {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

/* Diagonal animated product showcase */
.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 50px 0;
}

.products-showcase .product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  text-align: left;
  max-width: 92%;
  opacity: 0;
  will-change: transform, opacity;
}

.products-showcase .product-card:not(.reverse) {
  margin-right: auto;
}

.products-showcase .product-card.reverse {
  margin-left: auto;
}

.products-showcase .product-card.reverse .product-card-media {
  order: 2;
}

.products-showcase .product-card.reverse .product-card-body {
  order: 1;
}

.products-showcase .product-card-media {
  overflow: hidden;
}

.products-showcase .product-card-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.products-showcase .product-card.is-visible:hover .product-card-media img {
  transform: scale(1.04);
}

.products-showcase .product-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 35px 40px;
}

.products-showcase .product-card p {
  text-align: left;
}

.products-showcase .product-card.is-visible {
  animation: productDiagonalInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.products-showcase .product-card.reverse.is-visible {
  animation: productDiagonalInRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes productDiagonalInLeft {
  from {
    opacity: 0;
    transform: translate(-90px, 70px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes productDiagonalInRight {
  from {
    opacity: 0;
    transform: translate(90px, 70px) rotate(2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(13, 43, 77, 0.15);
}

.products-showcase .product-card:hover {
  transform: none;
  box-shadow: 0 12px 40px rgba(13, 43, 77, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.product-card-body {
  padding: 25px 20px;
}

.product-card h2,
.product-card h3 {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 12px;
  border: none;
  padding: 0;
  display: block;
}

.product-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
}

.product-card .btn {
  background: var(--orange);
  border-color: var(--orange);
}

.product-card .btn:hover {
  background: transparent;
  color: var(--orange);
}

.btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}

.btn:hover {
  background: transparent;
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* FAQ Accordion */
.faq-section {
  padding: 50px 20px;
  background: #f0f4f8;
}

.faq-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 50px 18px 20px;
  background: var(--white);
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}

.faq-question:hover {
  background: #f5f8fc;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Fabric Product List (detail pages) */
.fabric-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0 40px;
}

.fabric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fabric-row.reverse {
  direction: rtl;
}

.fabric-row.reverse > * {
  direction: ltr;
}

.fabric-media {
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fabric-media img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 0.3s ease;
}

.fabric-media img.is-fabric-view {
  max-height: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.fabric-body {
  padding: 30px;
}

.fabric-body h2 {
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 12px;
  border: none;
  padding: 0;
  display: block;
}

.fabric-body .composition {
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.fabric-spec-table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
  font-size: 14px;
}

.fabric-spec-table th,
.fabric-spec-table td {
  padding: 8px 12px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.fabric-spec-table th {
  width: 38%;
  background: #f8fafc;
  color: var(--primary);
  font-weight: 600;
}

.fabric-spec-table td {
  color: var(--text);
}

/* 2 sütun grid: görsel üstte, özellikler altta */
.fabric-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 16px 0 32px;
}

.fabric-row.fabric-row-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  margin: 0;
  height: 100%;
}

.fabric-row-stack .fabric-media {
  position: relative;
  width: 100%;
  line-height: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(90deg, #e8ecf1 0%, #f4f6f8 45%, #f4f6f8 55%, #e8ecf1 100%);
}

.fabric-marquee {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.fabric-marquee-left { left: 0; }
.fabric-marquee-right { right: 0; }

.fabric-marquee-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  animation: fabricMarqueeScroll 14s linear infinite;
}

.fabric-marquee-track.fabric-marquee-reverse {
  animation-direction: reverse;
  animation-duration: 16s;
}

.fabric-marquee-track span {
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(230, 81, 0, 0.45);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.fabric-marquee-track span:nth-child(even) {
  color: rgba(13, 43, 77, 0.25);
  font-size: clamp(0.7rem, 1.2vw, 0.9rem);
  letter-spacing: 3px;
}

@keyframes fabricMarqueeScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.fabric-row-stack .fabric-media img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
}

.fabric-row-stack .fabric-media:has(.is-fabric-view) .fabric-marquee {
  opacity: 0.2;
}

.fabric-row-stack .fabric-media img.is-fabric-view {
  max-height: 280px;
  width: 100%;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .fabric-marquee-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .fabric-row-stack .fabric-media {
    min-height: 380px;
  }

  .fabric-row-stack .fabric-media img {
    max-height: 380px;
  }
}

@media (max-width: 480px) {
  .fabric-row-stack .fabric-media {
    min-height: 340px;
  }

  .fabric-row-stack .fabric-media img {
    max-height: 340px;
  }

  .fabric-marquee {
    width: 20%;
  }
}

.fabric-row-stack .fabric-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 16px 18px;
  border-top: 3px solid var(--orange);
}

.fabric-row-stack .fabric-body h2 {
  text-align: center;
  margin-bottom: 14px;
}

.fabric-spec-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.fabric-spec-item {
  flex: 1 1 calc(33.333% - 6px);
  min-width: 0;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
}

.fabric-spec-item .spec-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--primary);
  margin-bottom: 3px;
}

.fabric-spec-item .spec-value {
  display: block;
  font-size: 12px;
  color: var(--text);
  line-height: 1.3;
}

.fabric-row-stack .fabric-body p {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
}

.fabric-row-stack .fabric-body .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Kumaş karşılaştırma tablosu */
.fabric-compare-section {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 2px solid var(--border);
}

.fabric-compare-section h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 8px;
  border: none;
  padding: 0;
}

.fabric-compare-lead {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 15px;
}

.fabric-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fabric-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.fabric-compare-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.fabric-compare-table th,
.fabric-compare-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.fabric-compare-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.fabric-compare-table tbody tr:hover {
  background: #fff3e0;
}

.fabric-compare-table td strong {
  color: var(--orange);
}

.fabric-compare-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}

.fabric-compare-note a {
  color: var(--orange);
  font-weight: 600;
}

@media (max-width: 900px) {
  .fabric-grid-2col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fabric-spec-item {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 480px) {
  .fabric-spec-item {
    flex: 1 1 calc(50% - 6px);
  }
}

.btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  margin-top: 8px;
}

.btn-orange:hover {
  background: transparent;
  color: var(--orange);
}

.fabric-body .btn-orange {
  font-size: 13px;
  letter-spacing: 0.3px;
}

.sub-links {
  text-align: center;
  margin-top: 30px;
}

.sub-links .btn {
  margin: 5px;
}

.hap-section {
  background: #f0f4f8;
  text-align: center;
}

.hap-image {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Hap Bilgiler + FAQ combined section */
.hap-faq-section {
  background: #3d2618;
  padding: 50px 20px;
}

.hap-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hap-faq-media .hap-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.hap-faq-content h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 28px;
  text-align: left;
  border: none;
  padding: 0;
}

.hap-faq-list {
  list-style: none;
}

.hap-faq-list li {
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateX(30px);
}

.hap-faq-list li:last-child {
  border-bottom: none;
}

.hap-faq-section.is-visible .hap-faq-list li {
  animation: hapFaqItemIn 0.6s ease forwards;
}

.hap-faq-section.is-visible .hap-faq-list li:nth-child(1) { animation-delay: 0.1s; }
.hap-faq-section.is-visible .hap-faq-list li:nth-child(2) { animation-delay: 0.2s; }
.hap-faq-section.is-visible .hap-faq-list li:nth-child(3) { animation-delay: 0.3s; }
.hap-faq-section.is-visible .hap-faq-list li:nth-child(4) { animation-delay: 0.4s; }
.hap-faq-section.is-visible .hap-faq-list li:nth-child(5) { animation-delay: 0.5s; }

.hap-faq-media {
  opacity: 0;
  transform: translateX(-40px);
}

.hap-faq-section.is-visible .hap-faq-media {
  animation: hapImageIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hapImageIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hapFaqItemIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section-title {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  margin-left: 10px;
  padding: 14px 35px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
}

.whatsapp-btn:hover {
  background: #1da851;
  color: var(--white);
}

.contact-map-full {
  margin-top: 40px;
}

.contact-map-full iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

.social-links {
  margin-bottom: 12px;
}

.social-links a {
  color: rgba(255,255,255,0.9);
  margin: 0 12px;
  font-weight: 600;
}

.social-links a:hover {
  color: var(--accent);
}

.faq-question-static {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-list-static .faq-item:last-child .faq-question-static {
  border-bottom: none;
}

.gallery-carousel {
  padding: 40px 20px 60px;
  background: var(--white);
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.carousel-slide {
  flex: 0 0 220px;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .fabric-row,
  .fabric-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .fabric-media img {
    max-height: 480px;
  }
}

.fabric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 25px;
  transition: box-shadow var(--transition);
}

.fabric-card:hover {
  box-shadow: var(--shadow);
}

.fabric-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fabric-card .composition {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.fabric-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact */
.contact-page {
  padding: 40px 0 60px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  line-height: 1;
}

.contact-card h2 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-card-sub {
  font-size: 12px !important;
  color: var(--text-light) !important;
  margin-bottom: 14px !important;
}

.contact-card a:not(.contact-card-link) {
  color: var(--primary);
  font-weight: 600;
}

.contact-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-link-wa {
  color: #25d366 !important;
}

.contact-card-link-secondary {
  display: block;
  padding-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light) !important;
  text-transform: none;
  letter-spacing: 0;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.contact-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--white) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow);
}

.contact-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  color: var(--white) !important;
}

.contact-action-btn strong {
  font-size: 15px;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-action-btn span {
  font-size: 13px;
  opacity: 0.9;
}

.contact-action-call {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contact-action-wa {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
}

.contact-action-mail {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
}

.contact-company-bar {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 36px;
  border: 1px solid var(--border);
}

.contact-company-bar img {
  flex-shrink: 0;
}

.contact-company-bar h2 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
  border: none;
  padding: 0;
}

.contact-company-bar p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 12px;
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-social a {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.contact-map-section h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 6px;
  border: none;
  padding: 0;
}

.contact-map-lead {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.contact-map-full {
  margin-top: 0;
}

.contact-map-full iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-info a {
  font-weight: 600;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .contact-company-bar {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .contact-social {
    justify-content: center;
  }

  .contact-map-full iframe {
    height: 300px;
  }
}

.call-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  border-radius: 6px;
  font-size: 16px;
}

.call-btn:hover {
  background: #1da851;
  color: var(--white);
}

/* Vision Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.vm-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.vm-box h3 {
  color: var(--primary);
  margin-bottom: 15px;
}

/* Footer */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
}

.footer-grid a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 6px;
}

.map-wrap {
  position: relative;
  display: block;
  margin-top: 10px;
}

.map-link {
  text-decoration: none;
  cursor: pointer;
}

.map-link iframe {
  pointer-events: none;
}

.map-click-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}

.map-wrap iframe {
  width: 100%;
  border: 0;
  border-radius: 6px;
  display: block;
}

.footer-map .map-wrap iframe {
  height: 200px;
}

.contact-map-full .map-wrap iframe {
  height: 420px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.map-marker {
  display: none;
}

@media (max-width: 768px) {
  .contact-map-full .map-wrap iframe {
    height: 300px;
  }
}

/* Blog */
.page-header-lead {
  margin-top: 12px;
  font-size: 1rem;
  opacity: 0.92;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.page-header-sm {
  padding: 24px 20px;
}

.page-header-sm h1 {
  font-size: 1.4rem;
}

.blog-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef2f6 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.blog-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.blog-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.blog-hero-text h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-hero-text p {
  color: var(--text-light);
  max-width: 620px;
  margin: 0;
}

.blog-hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.blog-hero-stats div {
  text-align: center;
  min-width: 90px;
}

.blog-hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--orange);
  line-height: 1.2;
}

.blog-hero-stats span {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-section {
  padding: 48px 0 72px;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.blog-filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.blog-featured {
  margin-bottom: 36px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-featured-link {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  color: inherit;
  text-decoration: none;
}

.blog-featured-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.04);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}

.blog-featured-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin: 12px 0;
  line-height: 1.35;
}

.blog-featured-body p {
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 22px;
}

.blog-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin: 10px 0;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-light);
}

.blog-cat {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.blog-card .date,
.blog-read {
  font-size: 12px;
  color: var(--text-light);
}

.blog-empty-msg {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.blog-widget {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.blog-widget h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
}

.blog-topic-list,
.blog-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-topic-list li,
.blog-link-list li {
  margin-bottom: 10px;
}

.blog-topic-list a,
.blog-link-list a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-topic-list a:hover,
.blog-link-list a:hover {
  color: var(--orange);
}

.blog-widget-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.blog-widget-cta h3 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.blog-widget-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.blog-widget-cta .btn-orange {
  width: 100%;
  text-align: center;
}

/* Blog post (single article) */
.blog-post-page {
  background: #f8f9fa;
}

.blog-post-wrap {
  max-width: 820px;
  padding: 40px 20px 72px;
}

.blog-post-header {
  margin-bottom: 28px;
}

.blog-post-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--primary);
  line-height: 1.3;
  margin: 12px 0 16px;
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
}

.blog-post-hero {
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-content {
  background: var(--white);
  padding: 36px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.blog-post-content h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin: 28px 0 12px;
}

.blog-post-content h2:first-of-type {
  margin-top: 0;
}

.blog-post-content ul {
  margin: 12px 0 20px 20px;
}

.blog-post-content li {
  margin-bottom: 8px;
}

.blog-post-content a {
  color: var(--orange);
}

.blog-post-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.blog-post-cta p {
  width: 100%;
  margin-bottom: 4px;
}

.blog-post-related {
  background: var(--white);
  padding: 24px 28px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.blog-post-related h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.blog-post-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-post-related li {
  margin-bottom: 10px;
}

.blog-post-related a {
  color: var(--text);
  font-size: 14px;
  text-decoration: none;
}

.blog-post-related a:hover {
  color: var(--orange);
}

.blog-card.is-hidden,
.blog-featured.is-hidden {
  display: none;
}

@media (max-width: 992px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-featured-link {
    grid-template-columns: 1fr;
  }

  .blog-featured-media {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-content {
    padding: 24px 20px;
  }

  .blog-hero-stats {
    width: 100%;
    justify-content: space-between;
  }
}

/* Ürünlerimiz — video grid (orijinal site düzeni) */
.urunler-section {
  padding-top: 20px;
  padding-bottom: 60px;
}

.urunler-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 40px;
}

.urun-item h2 {
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.urun-share {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}

.urun-share a {
  display: inline-flex;
  line-height: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.urun-share a:hover {
  opacity: 1;
}

.urun-share img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
}

.video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  transition: background var(--transition);
}

.video-poster:hover::before {
  background: rgba(0, 0, 0, 0.28);
}

.video-play {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--transition), background var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.video-poster:hover .video-play {
  transform: scale(1.08);
  background: #fff;
}

.video-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--primary);
}

.product-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-video-embed {
  min-height: 280px;
}

.urun-image-link {
  display: block;
  overflow: hidden;
}

.urun-image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.urun-image-link:hover img {
  transform: scale(1.02);
}

.urun-item-full {
  grid-column: 1 / -1;
}

.urun-item-full .urun-image-link img {
  max-height: 520px;
  object-fit: cover;
  width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid,
  .vision-mission {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 15px;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list > li > a {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav-list .sub-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding-left: 15px;
    display: none;
  }

  .nav-list > li.open > .sub-menu {
    display: block;
  }

  .sub-menu li.open > .sub-menu {
    display: block;
  }

  .sub-menu > li > a {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border);
  }

  .sub-menu .sub-menu {
    padding-left: 15px;
  }

  .slider-wrapper {
    aspect-ratio: 16/10;
  }

  .slider-dot {
    width: 60px;
    height: 38px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-showcase .product-card,
  .products-showcase .product-card.reverse {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .products-showcase .product-card.reverse .product-card-media,
  .products-showcase .product-card.reverse .product-card-body {
    order: unset;
  }

  .products-showcase .product-card-media img {
    min-height: 220px;
  }

  .products-showcase .product-card-body {
    padding: 25px 20px;
    align-items: center;
    text-align: center;
  }

  .products-showcase .product-card p {
    text-align: center;
  }

  .hap-faq-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hap-faq-content h2 {
    text-align: center;
  }

  .urunler-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
