@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #9cae86;
  --primary-100: white;
  --primary-800: #223f43;
  --primary-900: black;
  --white-text: white;
  --black-text: black;
  --primary-gradient: linear-gradient(to right, #81926d 0%, #272c21 100%);
  --navy-gradient: linear-gradient(to right, #223f43 0%, #305c62 100%);
  --dark-gradient: linear-gradient(to right, #4f6472 0%, #223f43 100%);
  --border-radius: 10px;
  --border-radius-lg: 15px;
  --shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* GENERAL CSS START */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  font-size: 16px;
  transition: all 0.3s ease;
  color: black;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
  scroll-margin-top: 180px;
}

@media (max-width: 992px) {
  section {
    scroll-margin-top: 180px;
  }
}

.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-800);
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 24px;
  }
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container-fluid {
  width: 95%;
  margin: 0 auto;
}

@media (max-width: 1320px) {
  .container {
    padding-inline: 15px;
  }
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li,
.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
  position: relative;
}

.content-wrapper p {
  margin-bottom: 20px;
}

.content-wrapper h2,
.contnet-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  height: auto;
  margin: 20px 0;
}

/* CONTENT WRAPPER END */

/* SOCIAL LINKS START */

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a i {
  color: var(--white-text);
  border: 1px solid var(--primary-100);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SOCIAL LINKS END */

/* WHY US SECTION START */

.why-us {
  padding: 60px 0 0 0;
}

.why-us .text {
  text-align: center;
  font-size: 128px;
  font-weight: bold;
  color: #e2e6e7;
}

@media (max-width: 992px) {
  .why-us .text {
    margin-bottom: 30px;
    font-size: 60px;
  }
}

.why-us .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  position: relative;
  top: -60px;
  z-index: 2;
}

@media (max-width: 992px) {
  .why-us .container {
    top: 0;
  }
}

.why-us .container .why-us-box {
  grid-column: span 3;
  background-color: var(--primary-100);
  box-shadow: var(--shadow);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid gainsboro;
  border-radius: var(--border-radius-lg);
}

@media (max-width: 992px) {
  .why-us .container .why-us-box {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .why-us .container .why-us-box {
    grid-column: span 12;
  }
}

.why-us .container .why-us-box i {
  background: var(--primary-gradient);
  color: var(--primary-100);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 27px;
}

.why-us .container .why-us-box .title {
  font-size: 20px;
  font-weight: bold;
}

/* WHY US SECTION END */

/* PRODUCT CATEGORY SECTION START */

.category .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  justify-content: center;
  gap: 30px;
}

.category-box {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  background-color: var(--primary-100);
  box-shadow: var(--shadow);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

@media (max-width: 992px) {
  .category-box {
    grid-column: span 12 !important;
  }
}

@media (max-width: 450px) {
  .category-box {
    gap: 10px;
  }
}

.category-box-left {
  grid-column: span 6;
  padding: 20px;
}

@media (max-width: 450px) {
  .category-box-left {
    grid-column: span 12;
  }
}

.category-box-left .title {
  font-size: 32px;
  margin-bottom: 60px;
  font-weight: bold;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
  .category-box-left .title {
    font-size: 24px;
  }
}

@media (max-width: 450px) {
  .category-box-left .title {
    margin-bottom: 10px;
  }
}

.category-box-left button {
  background: var(--primary-gradient);
  padding: 5px 30px;
  color: var(--white-text);
  border: none;
}

.category-box-right {
  grid-column: span 6;
}

@media (max-width: 450px) {
  .category-box-right {
    grid-column: span 12;
  }
}

.category-box-right img {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 450px) {
  .category-box-right img {
    height: 250px;
    object-fit: cover;
    object-position: bottom;
  }
}

/* PRODUCT CATEGORY SECTION END */

/* ABOUT US SECTION START */

.about {
  background: linear-gradient(to right, #aec592 0%, #879a70 100%);
  position: relative;
}

@media (max-width: 992px) {
  .about {
    padding: 0 0 60px 0;
  }
}

.about .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.about-left {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .about-left {
    grid-column: span 12;
    overflow: hidden;
  }
}

.about-left img {
  clip-path: polygon(0 0, 66% 0, 100% 100%, 33% 100%);
  box-shadow: var(--shadow);
}

.about-left .left-image {
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width:1580px) {
  .about-left .left-image {
    left: -65px;
  }
}

@media (max-width: 992px) {
  .about-left .left-image {
    display: none;
  }
}

.about-left .right-image {
  position: relative;
  z-index: 2;
  right: -120px;
  bottom: -30px;
}

@media (min-width: 1580px) {
  .about-left .right-image {
    right: 0;
  }
}

@media (max-width: 992px) {
  .about-left .right-image {
    right: 0;
    bottom: auto;
    top: 0;
  }
}

.about-right {
  grid-column: span 6;
  color: var(--white-text);
}

@media (max-width: 1580px) {
  .about-right {
    padding-left: 60px;
  }
}

@media (max-width: 992px) {
  .about-right {
    padding-left: 0;
    grid-column: span 12;
  }
}

.about-right .top-title {
  font-size: 20px;
  font-weight: 200;
}

.about-right .bottom-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .about-right .bottom-title {
    font-size: 24px;
  }
}

.about-right .bottom-title span:nth-child(2) {
  color: var(--primary-800);
}

.about-right .desc {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .about-right .desc {
    font-size: 16px;
  }
}

.about-btn {
  padding: 10px 60px;
  background-color: var(--primary-800);
  border: 1px solid var(--primary-800);
  color: var(--white-text);
  border-radius: var(--border-radius);
}

/* ABOUT US SECTION END */

/* EXPERIENCE SECTION START */

.experience {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 0;
}

.experience .container {
  width: 100%;
  position: absolute;
  background-color: var(--primary-100);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 3;
  padding: 65px 0;
  top: -120px;
  border-radius: 160px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid gainsboro;
}

@media (max-width: 1200px) {
  .experience .container {
    padding: 25px 0;
    top: -75px;
  }
}

@media (max-width: 992px) {
  .experience .container {
    position: static;
    border-radius: 0px;
  }
}

@media (max-width: 568px) {
  .experience .container {
    gap: 30px;
    flex-direction: column;
  }
}

.experience .container .experience-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
}

.experience .container .experience-box:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #606955;
  top: 50%;
  transform: translateY(-50%);
  right: -132px;
}

@media (max-width: 992px) {
  .experience .container .experience-box:not(:last-child)::after {
    display: none;
  }
}

.experience .container .experience-box .title {
  text-align: left;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  color: var(--primary-800);
}

@media (max-width: 568px) {
  .experience .container .experience-box .title {
    align-items: center;
  }
}

.experience .container .experience-box .number {
  font-size: 48px;
  font-weight: bold;
  color: #9cae86;
}

/* EXPERIENCE SECTION END */

/* SOLUTION SECTION START */

.solution {
  background: var(--dark-gradient);
  padding: 140px 0 60px 0;
  overflow: hidden;
}

.solution .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.solution-left {
  grid-column: span 6;
  color: var(--white-text);
}

.solution-left .top-title {
  font-size: 20px;
  font-weight: 200;
}
@media (max-width: 992px) {
  .solution-left {
    grid-column: span 12;
  }
}
.solution-left .bottom-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

@media (max-width: 992px) {
  .solution-left .bottom-title {
    font-size: 24px;
  }
}

.solution-left .bottom-title span:nth-child(2) {
  color: var(--primary-color);
}

.solution-left .desc {
  font-size: 20px;
}

@media (max-width: 992px) {
  .solution-left .desc {
    font-size: 16px;
  }
}

.solution-right {
  grid-column: span 6;
  position: relative;
}

@media (max-width: 992px) {
  .solution-right {
    grid-column: span 12;
  }
}

.solution-right .gallerySlider .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cards-gallery {
  position: relative;
  display: block;
}

.cards-gallery img {
  display: block;
}

.cards-gallery::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.cards-gallery .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  border: 1px solid var(--primary-100);
  font-size: 20px;
  padding: 15px;
  color: white;
  z-index: 2;
}

.navigation-container {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (max-width: 992px) {
  .navigation-container {
    top: -25px !important;
    right: 0;
    z-index: 3;
    gap: 10px !important;
    flex-direction: row-reverse !important;
  }
}

.gallerySlider .swiper-button-next,
.gallerySlider .swiper-button-prev {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white-text) !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.gallerySlider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 27px !important;
}
.gallerySlider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 27px !important;
}

/* SOLUTION SECTION END */

/* BLOG SECTION START */

.blog .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.blog .section-title span {
  font-size: 60px;
  font-weight: 400;
}

@media (max-width: 992px) {
  .blog .section-title span {
    font-size: 32px;
  }
}

.blog .section-title span:nth-child(2) {
  color: var(--primary-color);
}

.blog .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  position: relative;
}

.blog .container .title {
  position: absolute;
  left: -130px;
  top: 30%;
  z-index: -1;
  font-size: 80px;
  font-weight: bold;
  background: var(--dark-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: rotate(-90deg);
}

@media (max-width: 992px) {
  .blog .container .title {
    display: none;
  }
}

.blog-box {
  grid-column: span 6;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
  padding: 15px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  background-color: var(--primary-100);
}

@media (max-width: 992px) {
  .blog-box {
    grid-column: span 12;
  }
}

.blog-left {
  grid-column: span 7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 992px) {
  .blog-left {
    grid-column: span 12;
  }
}

.blog-left .blog-left-top {
  color: var(--primary-color);
  font-size: 20px;
}

.blog-left .blog-title {
  font-size: 24px;
}

@media (max-width: 992px) {
  .blog-left .blog-title {
    font-size: 18px;
  }
}

.blog-left button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
}

.blog-right {
  grid-column: span 5;
}
@media (max-width: 992px) {
  .blog-right {
    grid-column: span 12;
  }

  .blog-right img {
    width: 100%;
  }
}
.section-bottom {
  text-align: center;
  margin-top: 60px;
}

.section-bottom .router-link {
  display: inline-block;
  background: var(--primary-gradient);
  padding: 5px 30px;
  color: var(--white-text);
  border: none;
  border-radius: var(--border-radius);
}

/* BLOG SECTION END */

/* FOOTER SECTION START */
@media (max-width: 992px) {
  footer {
    padding: 0 0 75px 0;
  }
}

footer .footer-top {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy-gradient);
}

@media (max-width: 768px) {
  footer .footer-top {
    padding: 60px 15px;
  }
}

footer .footer-top .logo {
  margin-bottom: 90px;
}

footer .footer-top .footer-top-center {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

footer .footer-top .footer-top-center::after {
  content: "";
  position: absolute;
  top: -45px;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  border-radius: 2px;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer .footer-top .footer-top-center .footer-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px !important;
}

@media (max-width: 768px) {
  footer .footer-top .footer-top-center .footer-list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
    gap: 15px;
  }
}

footer .footer-top .footer-top-center .footer-list li a {
  color: var(--white-text);
}

footer .footer-top .footer-top-center .contact-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  footer .footer-top .footer-top-center .contact-list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 15px;
    gap: 15px;
  }
}

footer .footer-top .footer-top-center .contact-list .contact-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  color: var(--white-text);
  font-size: 14px;
}

footer {
  background-color: var(--primary-color);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  color: var(--white-text);
}

@media (max-width: 768px) {
  footer .container {
    padding-left: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* FOOTER SECTION END */

/* BREADCRUMB START */

.breadcrumb-container {
  padding: 30px 0;
  background-color: var(--primary-color);
  color: var(--white-text);
}

.breadcrumb-container .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.breadcrumb-container .container .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.breadcrumb-container .container .links li {
  position: relative;
}

.breadcrumb-container .container .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -17px;
}

.breadcrumb-container .container .links li a {
  color: var(--white-text);
}

/* BREADCRUMB END */

/* PRODUCT START */
.product-box {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Görsel */
.product-box img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Alt alan */
.product-box-bottom {
  padding: 20px;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

/* Göz ikonu */
.detail-icon {
  position: absolute;
  top: -24px;
  right: 20px;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-box:hover .detail-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Başlık */
.product-box-bottom .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Detay linki */
.product-box-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  transition: gap 0.3s ease, color 0.3s ease;
}

.product-box:hover .product-box-bottom span {
  gap: 14px;
  color: var(--primary-800);
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* Küçük mobil: tek sütun */
  gap: 20px;
}

@media (max-width: 992px) {
  .grid-container {
    padding: 0 15px;
  }
}

/* Küçük cihazlar (min 481px) */
@media (min-width: 481px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  }
}

/* Tablet (min 768px) */
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* 3 sütun */
  }
}

/* Büyük tablet / küçük laptop (min 992px) */
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr); /* 4 sütun */
  }
}

/* Desktop (min 1200px) */
@media (min-width: 1200px) {
  .grid-container {
    grid-template-columns: repeat(4, 1fr); /* 5 sütun */
  }
}

/* PRODUCT END */

/* PRODUCT DETAIL START */

.product-detail-top {
  padding: 15px 0 60px 0;
}

.product-detail-top .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 30px;
}

.product-detail-gallery {
  grid-column: span 4;
}
@media (max-width: 992px) {
  .product-detail-gallery {
    grid-column: span 12;
  }
}

.gallerySlider1 .gallery-box {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  cursor: pointer;
  border: 1px solid var(--primary-color);
}

.product-detail-gallery .gallerySlider2 .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 27px;
  color: var(--primary-800);
}
.product-detail-gallery .gallerySlider2 .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 27px;
  color: var(--primary-800);
}

.gallerySlider1 {
  padding: 15px 5px !important;
}

.gallerySlider1 img {
  height: 100px;
  object-fit: contain;
}

.product-detail-right {
  grid-column: span 8;
  padding: 0 60px;
}

@media (max-width: 992px) {
  .product-detail-right {
    grid-column: span 12;
  }
}
.product-detail-right .content-wrapper {
  padding: 20px 0;
}

.product-detail-right .title {
  font-size: 40px;
  font-weight: 500;
}

.product-detail-right .btn-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .product-detail-right .btn-wrapper {
    gap: 15px;
  }
}

.product-detail-right a {
  grid-column: span 6;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 5px;
}

@media (max-width: 450px) {
  .product-detail-right a {
    grid-column: span 12;
  }
}

.product-detail-right .whatsapp-btn {
  background: #56ab2f;
  background: -webkit-linear-gradient(to right, #a8e063, #56ab2f);
  background: linear-gradient(to right, #a8e063, #56ab2f);
  color: var(--white-text);
  padding: 15px 0;
}

.product-detail-right .offer-btn {
  background-color: var(--primary-color);
  color: var(--white-text);
  padding: 15px 0;
}

@media (min-width: 992px) {
  .tab-select {
    display: none;
  }
  .tab-button {
    padding: 15px 60px;
    border: 1px solid gainsboro;
  }
  .tab-button.active {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-text);
  }
}

@media (max-width: 992px) {
  .tab-buttons {
    display: none;
  }

  .tab-select {
    display: block;
    margin-bottom: 30px;
  }
}

.tab-content {
  opacity: 0;
  display: none;
  pointer-events: none;
  animation-fill-mode: forwards;
}

.tab-content.active {
  display: block;
  pointer-events: auto;
  animation: fadeIn 0.4s ease forwards;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 0 10px 10px 10px;
  border: 1px solid var(--color-border);
}

.tab-content.fadeOut {
  animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.product-tab {
  padding: 60px 0 0 0;
}
.product-tab .content-wrapper {
  padding: 20px;
}

.content-wrapper table {
  border-collapse: collapse;
  background: #ffffff;
  color: #000000;
  border: 1px solid #9cae86;
  font-family: inherit;
  table-layout: auto;
  width: 100%;
}

/* hücreler */
.content-wrapper table th,
.content-wrapper table td {
  border: 1px solid #9cae86;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: left;
  transition: background-color 0.25s ease;
}

/* başlık alanı */
.content-wrapper table th {
  background: #9cae86;
  color: #ffffff;
  font-weight: 600;
}

/* zebra efekti */
.content-wrapper table tbody tr:nth-child(even) {
  background: rgba(156, 174, 134, 0.12);
}

/* hover efekti */
.content-wrapper table tbody tr:hover {
  background: rgba(156, 174, 134, 0.25);
}

/* mobil */
@media (max-width: 768px) {
  .content-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content-wrapper table {
    min-width: 600px;
  }
}

/* PRODUCT DETAIL END */

/* CONTACT PAGE START */

.contact-page .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.contact-page .container .contact-left,
.contact-page .container .contact-right {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .contact-page .container .contact-left,
  .contact-page .container .contact-right {
    grid-column: span 12;
  }
}
.contact-page .container .contact-left .title,
.contact-page .container .contact-right .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    var(--primary-100) 0%,
    rgba(156, 174, 134, 0.12) 100%
  );
  box-shadow: 0 18px 40px rgba(34, 63, 67, 0.15);
}

.contact-form-section .title {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Input & textarea */
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(34, 63, 67, 0.25);
  background: var(--primary-100);
  font-size: 15px;
  color: var(--primary-800);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(34, 63, 67, 0.5);
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(156, 174, 134, 0.25);
}

/* Textarea */
.contact-form textarea {
  resize: vertical;
}

/* Recaptcha spacing */
.contact-form > div:has(iframe),
.contact-form > div:has(.g-recaptcha) {
  margin-top: 6px;
}

/* Button */
.contact-form button {
  margin-top: 12px;
  padding: 14px 22px;
  border: none;
  border-radius: 14px;
  background: var(--primary-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

/* Button hover */
.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(34, 63, 67, 0.4);
  opacity: 0.95;
}

/* Button active */
.contact-form button:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(34, 63, 67, 0.3);
}

.contact-right .contact-flex {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.contact-right .contact-flex .contact-link {
  grid-column: span 6;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--primary-800);
  background: linear-gradient(
    180deg,
    var(--primary-100) 0%,
    rgba(156, 174, 134, 0.12) 100%
  );
  box-shadow: 0 18px 40px rgba(34, 63, 67, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 992px) {
  .contact-right .contact-flex .contact-link {
    grid-column: span 12;
  }
}

/* Hover */
.contact-right .contact-flex .contact-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(34, 63, 67, 0.25);
}

/* İkon */
.contact-right .contact-flex .contact-link > i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-800));
  color: #fff;
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(34, 63, 67, 0.35);
}

/* Metin alanı */
.contact-right .contact-flex .contact-link-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Başlık */
.contact-right .contact-flex .contact-link-info .title {
  font-size: 15px;
  font-weight: 600;
}

/* Alt metin */
.contact-right .contact-flex .contact-link-info span:not(.title) {
  font-size: 14px;
  color: rgba(34, 63, 67, 0.65);
}

.maps iframe {
  box-shadow: var(--shadow);
  border-radius: var(--border-radius-lg);
}

/* CONTACT PAGE END */

/* BLOG DETAIL START */

.blog-detail .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.blog-detail .container .blog-detail-left {
  grid-column: span 8;
}

@media (max-width: 992px) {
  .blog-detail .container .blog-detail-left {
    grid-column: span 12;
  }
}
.blog-detail .container aside {
  grid-column: span 4;
  height: max-content;
}

@media (max-width: 992px) {
  .blog-detail .container aside {
    grid-column: span 12;
  }
}

.blog-detail .container aside .title {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
}

/* BLOG DETAIL END */

/* ERROR PAGE START */

.error-page .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.error-page .container .error-left {
  grid-column: span 6;
}

@media (max-width: 992px) {
  .error-page .container .error-left {
    grid-column: span 12;
  }
}
.error-page .container .error-right {
  grid-column: span 6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 992px) {
  .error-page .container .error-right {
    grid-column: span 12;
  }
}
.error-page .container .error-right .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}

.error-page .container .error-right .home-link {
  padding: 10px 60px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--white-text);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 30px;
}

/* ERROR PAGE END */

/* CATALOG PAGE START */

.catalog .container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.catalog-box {
  grid-column: span 3;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .catalog-box {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .catalog-box {
    grid-column: span 12;
  }
}

.catalog-box:hover {
  transform: translateY(-6px);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 32px;
}

/* Görsel */
.catalog-image {
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.catalog-box:hover .catalog-image img {
  transform: scale(1.06);
}

/* Başlık */
.catalog-box .title {
  padding: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  flex-grow: 1;
}

/* Alt ikili yapı */
.catalog-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #eef1f4;
}

.catalog-actions a {
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Ortadaki çizgi */
.catalog-actions a:first-child {
  border-right: 1px solid #eef1f4;
}

/* Görüntüle */
.catalog-actions a.view {
  color: var(--primary-800);
}

.catalog-actions a.view:hover {
  background: rgba(0, 148, 131, 0.08);
}

/* İndir */
.catalog-actions a.download {
  color: #eb501f;
}

.catalog-actions a.download:hover {
  background: rgba(235, 80, 31, 0.08);
}

/* İkon */
.catalog-actions i {
  font-size: 15px;
}

/* CATALOG PAGE END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 4;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-color);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-900);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */


/* CTA SECTION START */

.cta .container .cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cta .container .cta-box:hover {
  color: var(--primary-800);
}

.cta .container .cta-box .cta-left {
  font-size: 32px;
  font-weight: 500;
}



.cta .container .cta-box .cta-right i{
  height: 80px;
  width: 80px;
  border: 3px solid var(--primary-900);
  border-radius: 50%;
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.cta .container .cta-box:hover .cta-rgiht i {
  border: 3px solid var(--primary-800);
}


/* CTA SECTION END */