/* Ataman Plastik - Ana Stil Dosyası */

/* ROOT */
:root {
  --navy: #202d7c;
  --navy-dark: #17215f;
  --orange: #f58220;
  --orange-dark: #df6d0d;
  --light: #f5f6f8;
  --text: #1b1d25;
  --muted: #707582;
  --white: #ffffff;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1320px;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  border-bottom: 1px solid #eeeeee;
  box-shadow: 0 4px 20px rgba(20, 28, 70, 0.05);
}

.header-inner {
  width: 100%;
  min-height: var(--header-height);
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

/* LOGO */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  width: 250px;
  height: auto;
  display: block;
}

/* MENU */
.main-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 30px;
}

.main-menu a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: #252936;
  transition: 0.25s;
}

.main-menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.25s;
}

.main-menu a:hover {
  color: var(--orange);
}
.main-menu a:hover:after {
  width: 100%;
}

/* HEADER BUTTON */
.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  transition: 0.25s;
  flex-shrink: 0;
}

.header-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* MOBILE BUTTON */
.mobile-menu-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: auto;
  flex-shrink: 0;
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-top: var(--header-height);
}

.hero-slider,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
  height: 680px;
}

.hero .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

/* HERO ARROWS */
.hero-arrows {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.25s;
  pointer-events: auto;
}

.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* PAGINATION */
.hero-slider .swiper-pagination {
  left: 50% !important;
  right: auto !important;
  bottom: 25px !important;
  width: auto !important;
  transform: translateX(-50%);
}

.hero-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 4px !important;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
  transition: 0.25s;
}

.hero-slider .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 10px;
  background: var(--orange);
}

/* INFO STRIP */
.info-strip {
  position: relative;
  z-index: 10;
  margin-top: -45px;
}

.info-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  padding: 24px 10px;
}

.info-item {
  flex: 1;
  text-align: center;
  padding: 0 15px;
}

.info-item strong {
  display: block;
  color: #202d7c;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 5px;
}

.info-item span {
  display: block;
  color: #777d89;
  font-size: 11px;
  font-weight: 500;
}

.info-divider {
  width: 1px;
  height: 42px;
  background: #e6e7eb;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .info-inner {
    flex-wrap: wrap;
    padding: 20px 10px;
  }
  .info-item {
    width: 50%;
    flex: 0 0 50%;
    padding: 15px;
  }
  .info-divider {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .info-strip {
    margin-top: -25px;
  }
  .info-inner {
    padding: 10px;
  }
  .info-item {
    padding: 15px 8px;
  }
  .info-item strong {
    font-size: 20px;
  }
  .info-item span {
    font-size: 10px;
  }
}

/* GENERAL */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--light);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.section-kicker {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  color: var(--navy-dark);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -2px;
  font-weight: 800;
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}

.section-description {
  max-width: 470px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.section-link i {
  color: var(--orange);
  transition: 0.25s;
}
.section-link:hover {
  color: var(--orange);
}
.section-link:hover i {
  transform: translateX(4px);
}

/* PRODUCTS */
.products-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 420px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  color: var(--text);
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(20, 28, 70, 0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.category-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 25px 50px rgba(25, 35, 85, 0.14);
}

/* PRODUCT IMAGE */
.category-image {
  position: relative;
  width: 100%;
  height: 320px;
  flex: 0 0 320px;
  overflow: hidden;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.category-image:before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(32, 45, 124, 0.035);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.category-image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.055);
  filter: brightness(1.03);
}

/* PRODUCT CONTENT */
.category-content {
  position: relative;
  flex: 1;
  min-height: 100px;
  padding: 20px 70px 20px 25px;
  background: #0755a0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #eeeeee;
}

.category-content small {
  display: block;
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.category-content h3 {
  margin: 0;
  color: white;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 800;
  transition: color 0.25s ease;
}

.category-card:hover .category-content h3 {
  color: var(--orange);
}

/* PRODUCT NUMBER */
.category-number {
  position: absolute;
  top: 17px;
  left: 17px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 5px 15px rgba(20, 28, 70, 0.1);
}

/* PRODUCT ARROW */
.category-link {
  position: absolute;
  right: 20px;
  bottom: 23px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow: 0 8px 20px rgba(23, 33, 95, 0.18);
  transition:
    background 0.25s ease,
    transform 0.3s ease;
}

.category-card:hover .category-link {
  background: var(--orange);
  color: #fff;
  transform: translateX(3px);
}

.category-link i {
  font-size: 14px;
}

/* ABOUT */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-image {
  position: relative;
  min-height: 550px;
  border-radius: 28px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 22px 25px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.about-badge strong {
  display: block;
  color: var(--navy);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 7px;
}

.about-badge span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}
.about-content {
  padding-left: 35px;
}

.about-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 20px 0 25px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
  color: #333742;
  font-size: 13px;
  font-weight: 700;
}

.about-list li i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0e5;
  color: var(--orange);
  font-size: 10px;
}

.dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 53px;
  padding: 0 23px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}

.dark-btn:hover {
  color: #fff;
  background: var(--orange);
  transform: translateY(-2px);
}

/* PRODUCTION */
.production-section {
  background: var(--navy-dark);
  color: #fff;
  overflow: hidden;
}

.production-section .section-title {
  color: #fff;
}
.production-section .section-kicker {
  color: var(--orange);
}

.production-text {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.9;
  margin: 20px 0 25px;
}

.production-image {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 25px;
}

.production-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 33, 95, 0.35), transparent 50%);
}

.production-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 45px;
}

.production-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 15px;
}

.production-point {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 15px;
}

.production-point i {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 10px;
}

.production-point strong {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-bottom: 4px;
}

.production-point span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

/* SPECIAL PRINT */
.print-section {
  padding: 75px 0;
  background: #fff;
}

.print-box {
  position: relative;
  min-height: 360px;
  padding: 55px;
  border-radius: 28px;
  overflow: hidden;
  background: #f58220;
}

.print-box:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(32, 45, 124, 0.06);
  right: -160px;
  top: -200px;
}

.print-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.print-content h2 {
  color: white;
  font-size: 43px;
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 18px;
}

.print-content p {
  color: white;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.print-visual {
  position: absolute;
  right: 130px;
  bottom: 0px;
  width: 350px;
  max-height: 430px;
  z-index: 2;
}

.print-visual img {
  display: block;
  width: 430px;
  height: 380px;
  object-fit: contain;
}

/* BLOG */
.blog-section {
  padding: 80px 0;
  background: var(--light);
}

.blog-card {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7e8ec;
  box-shadow: 0 8px 25px rgba(20, 28, 70, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(20, 28, 70, 0.12);
}

.blog-image {
  position: relative;
  height: 245px;
  overflow: hidden;
  background: #f1f3f6;
}

.blog-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
  background: #0755a0;
}

.blog-date {
  display: block;
  color: white;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 9px;
}

.blog-content h3 {
  color:white;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.4px;
  font-weight: 800;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.blog-card:hover .blog-content h3 {
  color: var(--orange);
}

.blog-content p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.blog-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.blog-read i {
  color: var(--orange);
  transition: transform 0.25s;
}
.blog-card:hover .blog-read i {
  transform: translateX(4px);
}

/* CATALOG */
.catalog-section {
  padding: 80px 0;
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}

.catalog-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.catalog-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.catalog-content small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.catalog-content h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 800;
  margin-bottom: 20px;
}

.catalog-content p {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 23px;
  border-radius: 14px;
  background: var(--navy-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}

.catalog-btn:hover {
  background: #fff;
  color: var(--navy);
}

.catalog-decoration {
  width: 330px;
  height: 330px;
  flex: 0 0 330px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-decoration-inner {
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
}

.contact-card {
  padding: 40px;
  border-radius: 25px;
  background: var(--light);
  height: 100%;
}

.contact-card h3 {
  color: var(--navy-dark);
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid #e3e4e8;
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--orange);
}

.contact-item strong {
  display: block;
  color: #252832;
  font-size: 12px;
  margin-bottom: 4px;
}

.contact-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* FORM */
.contact-form {
  padding: 40px;
  border-radius: 25px;
  background: var(--navy-dark);
}

.contact-form h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-form > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 25px;
}

.form-control {
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
  padding: 0 16px;
  font-size: 12px;
}

textarea.form-control {
  height: 125px;
  padding-top: 15px;
  resize: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control:focus {
  border-color: var(--orange);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.form-control option {
  color: #222;
  background: #fff;
}

.form-btn {
  width: 100%;
  height: 53px;
  border: 0;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s;
}

.form-btn:hover {
  background: #fff;
  color: var(--navy);
}

/* FOOTER */
.footer {
  background: #111746;
  color: #fff;
  padding-top: 60px;
}

.footer-logo img {
  width: 365px;
  margin-bottom: 22px;
}

.footer-description {
  max-width: 350px;
  color: white;
  font-size: 16px;
  line-height: 1.8;
}

.footer-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: white;
  font-size: 16px;
  transition: 0.25s;
}
.footer-links a:hover {
  color: var(--orange);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  color: white;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 13px;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom span {
  color: white;
  font-size: 16px;
}

/* OFFCANVAS */
.offcanvas {
  width: 310px !important;
}

.offcanvas-header {
  min-height: 85px;
  padding: 20px;
  border-bottom: 1px solid #eeeeee;
}

.offcanvas-header img {
  width: 150px;
  height: auto;
}
.offcanvas-body {
  padding: 30px 25px;
}

.offcanvas-body a {
  display: block;
  padding: 12px 0;
  color: var(--navy-dark);
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid #eeeeee;
}

.offcanvas-body a:hover {
  color: var(--orange);
}

/* TABLET */
@media (max-width: 1199px) {
  .main-menu {
    gap: 22px;
    margin-right: 20px;
  }
  .print-visual {
    width: 320px;
  }
}

@media (max-width: 991px) {
  :root {
    --header-height: 72px;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 0 20px;
  }
  .main-menu,
  .header-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    margin-top: var(--header-height);
  }

  .hero-slider,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    height: 500px;
  }

  .hero-arrows {
    padding: 0 20px;
  }
  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .info-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-item:nth-child(2) {
    border-right: 0;
  }
  .info-item:nth-child(-n + 2) {
    border-bottom: 1px solid #eeeef2;
  }

  .about-content {
    padding-left: 0;
    margin-top: 35px;
  }
  .production-content {
    padding-right: 0;
    margin-bottom: 35px;
  }

  .print-box {
    padding: 45px;
  }
  .print-visual {
    opacity: 0.3;
    right: 0;
  }

  .catalog-decoration {
    width: 250px;
    height: 250px;
    flex-basis: 250px;
  }
  .catalog-decoration-inner {
    width: 185px;
    height: 185px;
    font-size: 65px;
  }

  .category-card {
    height: 390px;
  }
  .category-image {
    height: 290px;
    flex-basis: 290px;
  }
  .category-content {
    min-height: 100px;
    padding: 20px 70px 20px 22px;
  }
  .category-content h3 {
    font-size: 20px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  :root {
    --header-height: 72px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    padding: 0 15px 0 20px;
  }
  .logo img {
    width: 145px;
  }

  .hero {
    margin-top: var(--header-height);
  }

  .hero-slider,
  .hero .swiper-wrapper,
  .hero .swiper-slide {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-arrows {
    padding: 0 12px;
  }
  .hero-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .hero-slider .swiper-pagination {
    bottom: 12px !important;
  }
  .hero-slider .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
  .hero-slider .swiper-pagination-bullet-active {
    width: 20px;
  }

  .info-strip {
    margin-top: -35px;
    padding: 0 12px;
  }
  .info-inner {
    grid-template-columns: 1fr;
  }

  .info-item {
    min-height: 85px;
    padding: 17px 20px;
    border-right: 0;
    border-bottom: 1px solid #eeeef2;
  }

  .info-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 60px 0;
  }
  .section-head {
    display: block;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 34px;
    letter-spacing: -1.7px;
  }
  .section-description {
    margin-top: 15px;
  }
  .section-link {
    margin-top: 18px;
  }

  .products-section {
    padding-top: 60px;
    padding-bottom: 65px;
  }

  .category-card {
    height: 365px;
    border-radius: 20px;
  }
  .category-image {
    height: 275px;
    flex-basis: 275px;
    padding: 10px;
  }
  .category-content {
    min-height: 90px;
    padding: 18px 65px 18px 20px;
  }
  .category-content h3 {
    font-size: 19px;
  }

  .category-link {
    width: 42px;
    height: 42px;
    right: 17px;
    bottom: 22px;
    border-radius: 12px;
  }

  .about-image,
  .about-image img {
    min-height: 380px;
    height: 380px;
  }
  .about-badge {
    left: 15px;
    bottom: 15px;
  }
  .about-content {
    margin-top: 30px;
  }

  .production-image {
    height: 370px;
  }
  .production-points {
    grid-template-columns: 1fr;
  }

  .print-section {
    padding: 60px 0;
  }
  .print-box {
    min-height: 410px;
    padding: 32px 24px;
  }
  .print-content h2 {
    font-size: 34px;
  }
  .print-visual {
    width: 280px;
    right: -70px;
    bottom: -20px;
  }

  .blog-section {
    padding: 60px 0;
  }
  .blog-image {
    height: 220px;
  }
  .blog-content {
    padding: 22px;
  }
  .blog-content h3 {
    font-size: 19px;
  }

  .catalog-section {
    padding: 65px 0;
  }
  .catalog-inner {
    display: block;
  }
  .catalog-decoration {
    display: none;
  }

  .contact-section {
    padding: 60px 0;
  }
  .contact-card,
  .contact-form {
    padding: 30px 25px;
  }

  .footer {
    padding-top: 50px;
  }
  .footer-bottom {
    display: block;
    margin-top: 35px;
  }
  .footer-bottom span {
    display: block;
    margin-bottom: 7px;
  }
}

/* =========================================================
   ÜRÜNLER SAYFASI
========================================================= */

/* PAGE HERO */
.page-hero {
  position: relative;
  margin-top: var(--header-height);
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 30%,
      rgba(245, 130, 32, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #17215f 0%, #202d7c 65%, #27378e 100%);
}

.page-hero:before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  right: -120px;
  top: -130px;
}

.page-hero:after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.08);
  right: 70px;
  bottom: -170px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 70px 0;
}

.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-kicker i {
  font-size: 10px;
}

.page-hero h1 {
  color: #fff;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.breadcrumb-area {
  margin-top: 28px;
}

.breadcrumb-area a,
.breadcrumb-area span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 600;
}

.breadcrumb-area i {
  color: var(--orange);
  margin: 0 10px;
  font-size: 9px;
}

.breadcrumb-area .current {
  color: #fff;
}

/* ÜRÜNLER BÖLÜMÜ (sayfaya özel ölçüler) */
.products-page {
  padding: 90px 0;
  background: #fff;
}
.products-page .section-head {
  margin-bottom: 45px;
}
.products-page .section-description {
  max-width: 500px;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 510px;
  overflow: hidden;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #e4e6eb;
  box-shadow: 0 8px 30px rgba(20, 28, 70, 0.055);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 25px 55px rgba(20, 28, 70, 0.13);
}

/* PRODUCT IMAGE */
.product-image {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #f7f8fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.product-image:before {
  content: "";
  position: absolute;
  width: 235px;
  height: 235px;
  border-radius: 50%;
  background: rgba(32, 45, 124, 0.035);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.055);
  filter: brightness(1.03);
}

/* PRODUCT NUMBER */
.product-number {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 18px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 7px 18px rgba(20, 28, 70, 0.12);
}

/* PRODUCT CONTENT */
.product-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 23px;
  border-top: 1px solid #eeeeee;
  background: #0755a0;
}

.product-content small {
  display: block;
  color: white;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}

.product-content h2 {
  color:white;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-weight: 800;
  margin: 0 0 12px;
  transition: color 0.25s;
}

.product-card:hover .product-content h2 {
  color: var(--orange);
}

.product-content p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* PRODUCT BUTTON */
.product-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 47px;
  padding: 0 15px 0 17px;
  border-radius: 12px;
  background: #f4f5f8;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.product-btn i {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  transition:
    background 0.25s,
    transform 0.25s;
}

.product-card:hover .product-btn {
  background: #fff0e5;
  color: var(--orange);
}

.product-card:hover .product-btn i {
  background: var(--orange);
  transform: translateX(3px);
}

/* FEATURE STRIP */
.feature-section {
  padding: 0 0 90px;
}

.feature-box {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: var(--light);
  border: 1px solid #e7e8ec;
  padding: 40px;
}

.feature-box:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  right: -120px;
  top: -140px;
  background: rgba(245, 130, 32, 0.08);
}

.feature-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 8px 20px rgba(20, 28, 70, 0.06);
}

.feature-item strong {
  display: block;
  color: var(--navy-dark);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
}

.feature-item span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.feature-divider {
  width: 1px;
  height: 45px;
  background: #dedfe4;
}

/* CTA */
.cta-section {
  padding: 0 0 90px;
}

.cta-box {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 28px;
  padding: 50px 55px;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
}

.cta-box:before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  right: -150px;
  top: -200px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.cta-box:after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: 40px;
  bottom: -190px;
  background: rgba(245, 130, 32, 0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-content small {
  display: block;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cta-content h2 {
  color: #fff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 23px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 51px;
  padding: 0 22px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: 0.25s;
}

.cta-btn:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================================
   ÜRÜNLER SAYFASI - RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .product-card {
    min-height: 510px;
  }
  .product-image {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .page-hero {
    min-height: 350px;
  }
  .products-page {
    padding: 70px 0;
  }
  .feature-divider {
    display: none;
  }
  .feature-item {
    margin-bottom: 15px;
  }
  .cta-box {
    padding: 45px;
  }
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 330px;
  }
  .page-hero-content {
    padding: 55px 0;
  }
  .page-hero h1 {
    font-size: 43px;
    letter-spacing: -2px;
  }
  .page-hero p {
    font-size: 13px;
  }

  .products-page {
    padding: 60px 0;
  }

  .product-card {
    min-height: 500px;
    border-radius: 20px;
  }
  .product-image {
    height: 290px;
    padding: 12px;
  }
  .product-content {
    padding: 22px 20px 20px;
  }
  .product-content h2 {
    font-size: 21px;
  }

  .feature-section {
    padding-bottom: 60px;
  }
  .feature-box {
    padding: 25px 22px;
  }
  .feature-item {
    margin-bottom: 20px;
  }
  .feature-item:last-child {
    margin-bottom: 0;
  }

  .cta-section {
    padding-bottom: 60px;
  }
  .cta-box {
    min-height: 350px;
    padding: 35px 25px;
    border-radius: 22px;
  }
  .cta-content h2 {
    font-size: 32px;
  }
}

/* =========================================================
   KURUMSAL SAYFASI — VİZYON & MİSYON KARTLARI
========================================================= */
.vm-card {
  position: relative;
  height: 100%;
  padding: 40px 35px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #e4e6eb;
  box-shadow: 0 8px 30px rgba(20, 28, 70, 0.055);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 25px 55px rgba(20, 28, 70, 0.13);
}

.vm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff0e5;
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 22px;
}

.vm-card h3 {
  color: var(--navy-dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.vm-card h3 small {
  display: block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.vm-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}

/* =========================================================
   CATALOG VIEWER PAGE
========================================================= */
.catalog-viewer {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 25px;
  overflow: hidden;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-file {
  display: flex;
  align-items: center;
  gap: 15px;
}

.catalog-file .vm-icon {
  flex: 0 0 auto;
}

.catalog-file strong {
  display: block;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 800;
}

.catalog-file small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.catalog-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.catalog-btn-light {
  background: var(--light);
  color: var(--navy);
}

.catalog-btn-light:hover {
  background: var(--navy-dark);
  color: #fff;
}

.catalog-frame {
  height: 75vh;
  min-height: 420px;
}

.catalog-frame object,
.catalog-frame iframe,
.catalog-frame embed {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.catalog-frame p {
  padding: 40px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 767px) {
  .catalog-frame {
    height: 60vh;
  }

  .catalog-actions {
    width: 100%;
  }

  .catalog-actions .catalog-btn {
    flex: 1;
    justify-content: center;
  }
}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-item a {
  color: inherit;
  transition: 0.25s;
}

.contact-item a:hover {
  color: var(--orange);
}

.contact-form .form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.map-wrap {
  margin-top: 40px;
  border-radius: 25px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  transition: filter 0.3s;
}

@media (max-width: 767px) {
  .map-wrap iframe {
    height: 300px;
  }
}

/* =========================================================
   QUALITY PAGE
========================================================= */
.quality-card {
  height: 100%;
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 25px;
  overflow: hidden;
  transition: 0.25s;
}

.quality-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(17, 23, 70, 0.1);
}

.quality-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quality-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}

.quality-content {
  padding: 22px 25px;
}

.quality-content h3 {
  color: var(--navy-dark);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.quality-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .quality-image img {
    height: 200px;
  }
}



/* =========================================================
   BLOG DETAY / YORUM ALANI
   ========================================================= */


/* =========================================================
   BLOG DETAY
   ========================================================= */

.blog-detail {
  color: var(--text);
}

.blog-detail-title {
  color: var(--navy);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 25px;
}

.blog-detail-content {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.85;
}


/* Ana içerikteki resimler */
.blog-detail-content img {
  max-width: 100%;
  height: auto;
}


/* =========================================================
   MEVCUT HTML'DEKİ İLK BLOG GÖRSELİ
   ========================================================= */

.row.mb-5 > .col-lg-12 > img:first-child {
  width: 500px !important;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 0 25px 20px 0;
  padding: 0 !important;
  box-shadow: 0 12px 35px rgba(32, 45, 124, 0.12);
}


/* Blog yazısının başlığı */
.row.mb-5 > .col-lg-12 > h2 {
  color: var(--navy);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 25px;
}


/* Blog içerik yazıları */
.row.mb-5 > .col-lg-12 {
  color: var(--text);
  font-size: 16px;
  line-height: 1.85;
}

.row.mb-5 > .col-lg-12 p {
  margin-bottom: 18px;
}

.row.mb-5 > .col-lg-12 h3,
.row.mb-5 > .col-lg-12 h4,
.row.mb-5 > .col-lg-12 h5 {
  color: var(--navy);
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 15px;
}


/* Linkler */
.row.mb-5 > .col-lg-12 a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.row.mb-5 > .col-lg-12 a:hover {
  color: var(--orange-dark);
}


/* =========================================================
   YORUM BÖLÜMÜ
   ========================================================= */

.comment-section {
  width: 100%;
  margin-top: 30px;
  padding: 35px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 22px;
}


/* Yorum başlığı için sonradan eklenirse */
.comment-section-title {
  color: var(--navy);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}


/* =========================================================
   AVATAR
   ========================================================= */

.user-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e6e8ef;
  padding: 3px;
}


/* =========================================================
   YORUM FORMU
   ========================================================= */

.comment-section form {
  width: 100%;
  flex: 1;
}

.comment-input {
  width: 100%;
  min-height: 52px;
  padding: 13px 17px;
  color: var(--text);
  background: var(--white);
  border: 1px solid #dfe2e8;
  border-radius: 11px;
  font-size: 14px;
  outline: none;
  box-shadow: none !important;
  transition: all 0.25s ease;
}

.comment-input::placeholder {
  color: #9ca3af;
}

.comment-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.10) !important;
}

textarea.comment-input {
  min-height: 120px;
  resize: vertical;
}


/* =========================================================
   CAPTCHA
   ========================================================= */

.comment-section img[alt] {
  max-width: 100%;
}


/* Captcha görseli */
.comment-section form img {
  height: 52px;
  width: auto;
  max-width: 100%;
  border-radius: 10px;
  border: 1px solid #dfe2e8;
  background: var(--white);
}


/* =========================================================
   YORUM KAYDET BUTONU
   ========================================================= */

.btn-yorumKaydet {
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 11px;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(32, 45, 124, 0.16);
}

.btn-yorumKaydet:hover {
  background: var(--orange);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245, 130, 32, 0.20);
}

.btn-yorumKaydet:active {
  transform: translateY(0);
}


/* =========================================================
   YORUMLAR LİSTESİ
   ========================================================= */

.comments-list {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid #dde1e8;
}


/* =========================================================
   YORUM KARTI
   ========================================================= */

.comment-box {
  position: relative;
  padding: 22px;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s ease;
}

.comment-box:hover {
  border-color: rgba(32, 45, 124, 0.18);
  box-shadow: 0 8px 25px rgba(32, 45, 124, 0.07);
}


/* Yorum sahibi */
.comment-box h6 {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}


/* Yorum tarihi */
.comment-time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}


/* Yorum metni */
.comment-box p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* =========================================================
   YÖNETİCİ CEVABI
   ========================================================= */

.reply-section {
  margin-left: 65px;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}


/* Yönetici cevabının kartı */
.reply-section .comment-box {
  margin-bottom: 0;
  background: #fffaf5;
  border-color: rgba(245, 130, 32, 0.20);
}


/* Yönetici adı */
.reply-section h6 {
  color: var(--orange-dark);
}


/* =========================================================
   BAŞARILI / HATA MESAJLARI
   ========================================================= */

.comment-section + .alert,
.comment-section .alert {
  border-radius: 12px;
  border: 0;
  padding: 15px 18px;
  font-size: 14px;
  margin-bottom: 25px;
}

.comment-section .alert-success {
  color: #166534;
  background: #dcfce7;
}

.comment-section .alert-danger {
  color: #991b1b;
  background: #fee2e2;
}


/* =========================================================
   BOŞ YORUM ALANI
   ========================================================= */

.comments-list:empty {
  display: none;
}


/* =========================================================
   GALERİ İLE BLOG DETAY ARASI
   ========================================================= */

.row.mb-5 {
  margin-bottom: 45px !important;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 991px) {

  .row.mb-5 > .col-lg-12 > h2 {
    font-size: 30px;
  }

  .row.mb-5 > .col-lg-12 {
    font-size: 15px;
    line-height: 1.75;
  }

  .row.mb-5 > .col-lg-12 > img:first-child {
    width: 100% !important;
    float: none !important;
    display: block;
    margin: 0 0 25px 0;
  }

  .comment-section {
    padding: 25px 20px;
  }

  .reply-section {
    margin-left: 30px;
  }
}


@media (max-width: 767px) {

  .row.mb-5 > .col-lg-12 > h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }

  .comment-section {
    padding: 20px 15px;
    border-radius: 16px;
  }

  .comment-section .d-flex {
    gap: 12px !important;
  }

  .user-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .comment-input {
    min-height: 48px;
    padding: 12px 14px;
  }

  textarea.comment-input {
    min-height: 110px;
  }

  .comment-section form {
    min-width: 0;
  }

  .comment-box {
    padding: 17px;
    border-radius: 13px;
  }

  .comment-box .d-flex {
    align-items: flex-start;
  }

  .comment-time {
    font-size: 11px;
  }

  .reply-section {
    margin-left: 15px;
    padding-left: 12px;
  }

  .btn-yorumKaydet {
    font-size: 13px;
  }
}


@media (max-width: 575px) {

  .row.mb-5 > .col-lg-12 > h2 {
    font-size: 23px;
  }

  .comment-section {
    padding: 18px 12px;
  }

  .comment-section form .row.mt-4 > div {
    margin-bottom: 12px;
  }

  .comment-section form .row.mt-4 > div:last-child {
    margin-bottom: 0;
  }

  .comment-section form img {
    height: 48px;
  }

  .comment-box {
    padding: 15px;
  }

  .reply-section {
    margin-left: 8px;
  }
}

     /* =========================================================
        ATAMAN PLASTİK - SIDEBAR
        ========================================================= */

   .sidebar {
     width: 100%;
     background: var(--white);
     border: 1px solid #e7e9ef;
     border-radius: 18px;
     padding: 25px;
     box-shadow: 0 10px 35px rgba(32, 45, 124, 0.07);
   }


/* =========================================================
   MENÜ BAŞLIĞI
   ========================================================= */

.sidebar .navTitle {
  position: relative;
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  padding: 0 0 18px;
  margin-bottom: 8px;
  border-bottom: 1px solid #e8e9ee;
}

.sidebar .navTitle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 45px;
  height: 3px;
  background: var(--orange);
  border-radius: 10px;
}


/* =========================================================
   ANA MENÜ
   ========================================================= */

.sidebar > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar > ul > li {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eef0f3;
}

.sidebar > ul > li:last-child {
  border-bottom: 0;
}


/* =========================================================
   MENÜ LİNKLERİ
   ========================================================= */

.sidebar > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  min-height: 52px;
  padding: 14px 5px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.25s ease;
}


/* Sol turuncu çizgi */
.sidebar > ul > li > a::before {
  content: "";
  width: 0;
  height: 22px;
  background: var(--orange);
  border-radius: 4px;
  margin-right: 0;
  transition: all 0.25s ease;
}


/* Sağ ok */
.sidebar > ul > li > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #b6bac5;
  font-size: 9px;
  transition: all 0.25s ease;
}


/* =========================================================
   HOVER
   ========================================================= */

.sidebar > ul > li > a:hover {
  color: var(--navy);
  padding-left: 8px;
}

.sidebar > ul > li > a:hover::before {
  width: 3px;
  margin-right: 10px;
}

.sidebar > ul > li > a:hover::after {
  color: var(--orange);
  transform: translateX(3px);
}


/* =========================================================
   AKTİF MENÜ
   ========================================================= */

.sidebar > ul > li > a.active,
.sidebar > ul > li > a[class*="active"] {
  color: var(--navy);
  font-weight: 700;
}


/* =========================================================
   ALT MENÜ
   get_subNav() için
   ========================================================= */

.sidebar ul ul {
  list-style: none;
  margin: 0 0 8px;
  padding: 0 0 0 15px;
}

.sidebar ul ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar ul ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 9px 8px 9px 18px;
  color: #737985;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s ease;
}


/* Alt menü noktası */
.sidebar ul ul li a::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9ccd3;
  transform: translateY(-50%);
  transition: all 0.2s ease;
}


/* Alt menü hover */
.sidebar ul ul li a:hover {
  color: var(--orange);
  padding-left: 22px;
}

.sidebar ul ul li a:hover::before {
  background: var(--orange);
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 991px) {

  .sidebar {
    padding: 20px;
    border-radius: 15px;
  }

  .sidebar .navTitle {
    font-size: 18px;
  }

  .sidebar > ul > li > a {
    min-height: 48px;
    font-size: 14px;
  }
}


@media (max-width: 575px) {

  .sidebar {
    padding: 17px 15px;
    border-radius: 13px;
  }

  .sidebar .navTitle {
    font-size: 17px;
    padding-bottom: 15px;
  }

  .sidebar > ul > li > a {
    min-height: 46px;
    padding: 12px 4px;
    font-size: 13px;
  }

  .sidebar ul ul {
    padding-left: 10px;
  }
}

     /* =========================================================
        SIDEBAR ALT MENÜ / SUB NAV
        ========================================================= */


     /* =========================================================
        ALT MENÜ ANA Lİ
        ========================================================= */

   .sidebar > ul > li {
     position: relative;
   }


/* =========================================================
   SUB LİNK
   get_subNav() tarafından oluşturulan ana alt kategori
   ========================================================= */

.sidebar > ul > li > ul > li > a.sub {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(100% - 35px);
  min-height: 50px;
  padding: 13px 5px;
  color: #4b5563;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.25s ease;
}


/* Sol turuncu çizgi */
.sidebar > ul > li > ul > li > a.sub::before {
  content: "";
  width: 0;
  height: 20px;
  background: var(--orange);
  border-radius: 4px;
  margin-right: 0;
  transition: all 0.25s ease;
}


/* Hover */
.sidebar > ul > li > ul > li > a.sub:hover {
  color: var(--navy);
  padding-left: 8px;
}

.sidebar > ul > li > ul > li > a.sub:hover::before {
  width: 3px;
  margin-right: 10px;
}


/* =========================================================
   MENU PLUS
   Aç / Kapat butonu
   ========================================================= */

.sidebar .menuplus {
  position: absolute;
  top: 8px;
  right: 0;
  width: 34px;
  height: 34px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: #f3f5fa;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
}


/* Hover */
.sidebar .menuplus:hover {
  color: var(--white);
  background: var(--orange);
}


/* İkon */
.sidebar .menuplus i {
  transition: transform 0.25s ease;
}


/* Açık durum için */
.sidebar .menuplus.active {
  color: var(--white);
  background: var(--orange);
}

.sidebar .menuplus.active i {
  transform: rotate(180deg);
}


/* =========================================================
   SUB NAV
   ========================================================= */

.sidebar ul.subNav {
  list-style: none;
  margin: 0;
  padding: 0 0 8px 15px;
}


/* Alt menü gizleme */
.sidebar ul.subNav {
  display: none;
}

.sidebar li.open > ul.subNav,
.sidebar li.active > ul.subNav {
  display: block;
}

/* =========================================================
   SUB NAV Lİ
   ========================================================= */

.sidebar ul.subNav > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Dikey çizgi */
.sidebar ul.subNav > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #e6e8ee;
}


/* =========================================================
   SUB NAV LINK
   ========================================================= */

.sidebar ul.subNav > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 8px 9px 22px;
  color: #737985;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: all 0.2s ease;
}


/* Nokta */
.sidebar ul.subNav > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cbd3;
  border: 2px solid var(--white);
  transform: translateY(-50%);
  transition: all 0.2s ease;
}


/* Hover */
.sidebar ul.subNav > li > a:hover {
  color: var(--orange);
  padding-left: 26px;
}

.sidebar ul.subNav > li > a:hover::before {
  background: var(--orange);
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.12);
}


/* =========================================================
   İÇ İÇE SUB NAV
   ========================================================= */

.sidebar ul.subNav ul.subNav {
  margin-left: 8px;
  padding-left: 10px;
}


/* =========================================================
   AKTİF ALT SAYFA
   ========================================================= */

.sidebar a.active,
.sidebar a.current {
  color: var(--orange) !important;
  font-weight: 700 !important;
}

.sidebar ul.subNav > li > a.active::before,
.sidebar ul.subNav > li > a.current::before {
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.10);
}


/* =========================================================
   DIŞ LİNK
   ========================================================= */

.sidebar a[target="_blank"]::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 9px;
  margin-left: auto;
  padding-left: 10px;
  color: #b7bbc5;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 991px) {

  .sidebar > ul > li > ul > li > a.sub {
    min-height: 48px;
    font-size: 14px;
  }

  .sidebar .menuplus {
    width: 32px;
    height: 32px;
  }

  .sidebar ul.subNav > li > a {
    min-height: 38px;
    font-size: 13px;
  }
}


@media (max-width: 575px) {

  .sidebar > ul > li > ul > li > a.sub {
    min-height: 46px;
    font-size: 13px;
  }

  .sidebar .menuplus {
    width: 30px;
    height: 30px;
    top: 7px;
  }

  .sidebar ul.subNav {
    padding-left: 10px;
  }

  .sidebar ul.subNav > li > a {
    padding-left: 20px;
    font-size: 12px;
  }
}


     /* =========================================================
        PRODUCTION CARD
        ========================================================= */

   .production-card {
     position: relative;
     display: flex;
     flex-direction: column;
     height: 100%;
     min-height: 250px;
     overflow: hidden;
     border-radius: 25px;
     background: #fff;
     border: 1px solid #e4e6eb;
     box-shadow: 0 8px 30px rgba(20, 28, 70, 0.055);
     text-decoration: none;
     transition:
             transform 0.35s ease,
             box-shadow 0.35s ease,
             border-color 0.35s ease;
   }


/* =========================================================
   HOVER
   ========================================================= */

.production-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 25px 55px rgba(20, 28, 70, 0.13);
}


/* =========================================================
   IMAGE
   ========================================================= */

.production-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #f7f8fa;
}


/* Arka plan dairesi */

.production-card__image::before {
  content: "";
  position: absolute;
  width: 235px;
  height: 235px;
  border-radius: 50%;
  background: rgba(32, 45, 124, 0.035);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.5s ease;
}


/* Görsel */

.production-card__image img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
          transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1),
          filter 0.35s ease;
}


/* Hover görsel */

.production-card:hover .production-card__image img {
  transform: scale(1.06);
  filter: brightness(1.03);
}

.production-card:hover .production-card__image::before {
  transform: translate(-50%, -50%) scale(1.08);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.production-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
          to top,
          rgba(32, 45, 124, 0.10),
          transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.production-card:hover .production-card__overlay {
  opacity: 1;
}


/* =========================================================
   ARROW
   ========================================================= */

.production-card__arrow {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;

  width: 45px;
  height: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: var(--navy);
  color: #fff;

  font-size: 13px;

  box-shadow: 0 8px 20px rgba(20, 28, 70, 0.15);

  opacity: 0;
  transform: translateY(10px);

  transition:
          opacity 0.3s ease,
          transform 0.3s ease,
          background 0.25s ease;
}


.production-card:hover .production-card__arrow {
  opacity: 1;
  transform: translateY(0);
}


.production-card:hover .production-card__arrow {
  background: var(--orange);
}


/* Ok */

.production-card__arrow i {
  transition: transform 0.25s ease;
}

.production-card:hover .production-card__arrow i {
  transform: translateX(3px);
}


/* =========================================================
   CONTENT
   ========================================================= */

.production-card__content {
  position: relative;
  flex: 1;

  display: flex;
  align-items: center;

  min-height: 25px;

  padding: 20px 25px;

  background: var(--navy);

  border-top: 1px solid rgba(255,255,255,0.08);

  transition: background 0.3s ease;
}


.production-card:hover .production-card__content {
  background: var(--navy-dark);
}


/* =========================================================
   TITLE
   ========================================================= */

.production-card__content h3 {
  position: relative;

  margin: 0;
  padding-left: 15px;

  color: #fff;

  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: -0.3px;

  transition:
          color 0.25s ease,
          padding-left 0.25s ease;
}


/* Sol turuncu çizgi */

.production-card__content h3::before {
  content: "";

  position: absolute;
  left: 0;
  top: 50%;

  width: 4px;
  height: 24px;

  border-radius: 5px;

  background: var(--orange);

  transform: translateY(-50%);

  transition:
          height 0.25s ease,
          background 0.25s ease;
}


.production-card:hover .production-card__content h3 {
  color: var(--orange);
  padding-left: 18px;
}


.production-card:hover .production-card__content h3::before {
  height: 30px;
}


/* =========================================================
   LINK RESET
   ========================================================= */

.production-card,
.production-card:hover,
.production-card:focus {
  text-decoration: none;
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 991px) {

  .production-card {
    min-height: 400px;
  }

  .production-card__image {
    height: 300px;
  }

  .production-card__content {
    min-height: 85px;
    padding: 18px 22px;
  }

  .production-card__content h3 {
    font-size: 17px;
  }

  .production-card__arrow {
    width: 42px;
    height: 42px;
  }
}


@media (max-width: 767px) {

  .production-card {
    min-height: 380px;
    border-radius: 20px;
  }

  .production-card__image {
    height: 285px;
    padding: 15px;
  }

  .production-card__content {
    min-height: 80px;
    padding: 17px 20px;
  }

  .production-card__content h3 {
    font-size: 16px;
  }

  /*
     Mobilde hover olmadığı için ok sürekli görünür
  */
  .production-card__arrow {
    opacity: 1;
    transform: translateY(0);
    width: 40px;
    height: 40px;
    right: 14px;
    bottom: 14px;
  }
}


@media (max-width: 575px) {

  .production-card {
    min-height: 350px;
    border-radius: 18px;
  }

  .production-card__image {
    height: 255px;
  }

  .production-card__image::before {
    width: 190px;
    height: 190px;
  }

  .production-card__content {
    min-height: 75px;
    padding: 15px 18px;
  }

  .production-card__content h3 {
    font-size: 15px;
  }

  .production-card__content h3::before {
    width: 3px;
    height: 20px;
  }

  .production-card__arrow {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }
}

.product-detail-thumb-image {
  width: 100%;
  max-width: 420px;
  height: 320px;
  margin: 0 auto 25px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e3e6eb;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(20, 28, 70, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-detail-thumb-image:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 15px 35px rgba(20, 28, 70, 0.10);
  transform: translateY(-3px);
}

.product-detail-thumb-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-detail-thumb-image:hover img {
  transform: scale(1.04);
}


/* MOBİL */
@media (max-width: 767px) {

  .product-detail-thumb-image {
    max-width: 100%;
    height: 280px;
    padding: 15px;
    border-radius: 15px;
  }

}