@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

:root {
  --primary-color: #55565a;
  --primary-100: white;
  --primary-200: #d1372f;
  --primary-900: black;
  --white-text: white;
  --black-text: black;
  --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: "Quicksand", 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;
}

button {
  cursor: pointer;
}

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

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

.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

.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;
}

.custom-container {
  max-width: 1525px;
  margin: 0 auto;
  padding: 0 15px;
}

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

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

/* GENERAL CSS END */

/* SOCIAL LINKS START */

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

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-links a:hover {
  background-color: var(--primary-color);
}

/* SOCIAL LINKS 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 */

/* WHY US SECTION START */

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

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

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

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

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

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

.why-us-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--primary-color);
  color: var(--white-text);
  padding: 60px 30px;
  gap: 15px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.why-us-box:hover {
  transform: translateY(-10px);
  background-color: var(--primary-200);
}

.why-us-box i {
  width: 60px;
  height: 60px;
  font-size: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-100);
  color: var(--primary-color);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.why-us-box .title {
  font-size: 18px;
  font-weight: 500;
}

/* WHY US SECTION END */

/* FEATURED PRODUCTS SECTION START */

.featured-products {
  overflow: hidden;
  background-color: #f6f6f6;
}

.featured-products .section-title .top-title {
  font-size: 20px;
  font-weight: 300;
}

.featured-products .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-navigation {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  /* butonlar arası boşluk */
}

/* Swiper default pozisyonlarını iptal et */
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  color: #333;
}

/* Hover efekti */
.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover {
  color: #fff;
}

.featured-products .container-fluid {
  position: relative;
}

.featured-products .featuredSlider {
  padding: 30px 10px !important;
}

.swiper.featuredSlider.swiper-initialized.swiper-horizontal {
  left: 12%;
}

@media (max-width: 1800px) {
  .swiper.featuredSlider.swiper-initialized.swiper-horizontal {
    left: 0;
  }
}

.product-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
  background-color: var(--primary-100);
}

.product-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image i {
  position: absolute;
  right: 0;
  /* başlangıçta dışarıda */
  top: -40px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 2;
}

/* hover olunca animasyon */
.product-box:hover .product-image i {
  animation: slideInFromTop 0.4s ease forwards;
}

/* hover çıkınca geri gitsin */
.product-box:not(:hover) .product-image i {
  animation: slideOutToTop 0.3s ease forwards;
}

/* sağdan gelme */
@keyframes slideInFromTop {
  from {
    top: -40px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

/* sağa geri gitme */
@keyframes slideOutToTop {
  from {
    top: 0;
    opacity: 1;
  }

  to {
    top: -40px;
    opacity: 0;
  }
}

.product-image img {
  transition: all 0.3s ease;
}

.product-box:hover .product-image img {
  transform: scale(1.1);
}

.product-box-bottom {
  padding: 20px 0;
}

.product-box-bottom button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 16px;
}

/* FEATURED PRODUCTS SECTION END */

/* ABOUT SECTION START */

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

.about-section .container .about-left .radius-img {
  border-radius: var(--border-radius-lg);
}

.about-section .container .about-left {
  grid-column: span 6;
  position: relative;
}

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

.about-section .container .about-left .absolute-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--border-radius-lg);
  object-fit: cover;
  border: 8px solid white;
}

@media (max-width: 992px) {
  .about-section .container .about-left .absolute-img {
    bottom: 0;
    right: 0;
  }
}

@media (max-width: 568px) {
  .about-section .container .about-left .absolute-img {
    width: 100px;
  }
}

.about-section .container .about-right {
  grid-column: span 6;
  padding-left: 60px;
}

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

.about-section .container .about-right .title {
  font-size: 20px;
  color: var(--primary-color);
}

.about-section .container .about-right .bottom-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-section .container .about-right .right-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.about-section .container .about-right .right-list .right-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section .container .about-right .right-list .right-list-item i {
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.about-section .container .about-right .btn-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 568px) {
  .about-section .container .about-right .btn-wrapper {
    flex-direction: column;
  }
}

.about-section .container .about-right .btn-wrapper a {
  padding: 10px 40px;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--white-text);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-section .container .about-right .btn-wrapper a:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.about-section .container .about-right .btn-wrapper a:nth-child(2) {
  background-color: var(--primary-200);
  border: 1px solid var(--primary-200);
  color: var(--white-text);
}

@media (max-width: 568px) {
  .about-section .container .about-right .btn-wrapper a {
    width: 100%;
    text-align: center;
  }
}

.about-section .experience-wrapper {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.about-section .experience-wrapper .experience-box {
  grid-column: span 4;
  color: var(--black-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 568px) {
  .about-section .experience-wrapper .experience-box {
    grid-column: span 12;
    width: 100%;
  }
}

.about-section .experience-wrapper .experience-box {
  font-size: 32px;
  font-weight: bold;
}

.about-section .experience-wrapper .experience-box span {
  font-size: 16px;
  font-weight: 300;
}

/* ABOUT SECTION END */

/* COMMENTS SECTION START  */

.comments {
  background-color: #f6f6f6;
}

.commentSlider {
  padding-bottom: 60px !important;
}

.comments-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.comments-box .comment {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  font-size: 27px;
}

@media (max-width: 992px) {
  .comments-box .comment {
    width: 90%;
  }
}

.comments-box-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comments-box-bottom .image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.comments-box-bottom .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments-box-info .name {
  font-weight: bold;
}

.comments-box-info .job {
  color: var(--primary-200);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 30px)
  ) !important;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 5px)
  ) !important;
  border-radius: 5px !important;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color) !important;
}

/* COMMENTS SECTION END  */

/* COLLECTION SECTION START */

.collection {
  background-color: #f6f6f6;
}

.collection .section-title {
  margin-bottom: 30px;
  text-align: center;
}

.collection .section-title .desc {
  font-size: 16px;
  font-weight: 300;
}

.collection .container {
  position: relative;
}

.collection .collectionSlider {
  padding-bottom: 60px !important;
}

.collection .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1450px) {
  .collection .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
  }
}

@media (max-width: 992px) {
  .collection .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none;
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "" !important;
}

.collection .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 1450px) {
  .collection .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
  }
}

@media (max-width: 992px) {
  .collection .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    display: none;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "" !important;
}

.collectionSlider {
  padding: 30px 10px !important;
}

.category-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.category-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.category-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(6, 8, 10, 0.9) 100%
  );
}

.category-box:hover::after {
  background: linear-gradient(
    to top,
    rgba(209, 55, 47, 1),
    rgba(209, 55, 47, 0)
  );
}

.category-box img {
  transition: all 0.3s ease;
}

.category-box:hover img {
  transform: scale(1.1);
}

.category-box .category-box-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  color: var(--white-text);
}

.category-box .category-box-content .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.category-box .category-box-content button {
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--white-text);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Hover olunca animasyon başlasın */
.category-box:hover .category-box-content button {
  animation: buttonUp 0.45s ease-out forwards;
  pointer-events: auto;
}

/* Hover çıkınca geri insin */
.category-box:not(:hover) .category-box-content button {
  animation: buttonDown 0.35s ease-in forwards;
}

@keyframes buttonUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* COLLECTION SECTION END */

/* CTA SECTION START */

.cta {
  background: linear-gradient(to right, #d1372f, #b40e06);
  color: var(--white-text);
  padding: 40px 0;
}

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

@media (max-width: 768px) {
  .cta .container {
    flex-direction: column;
    gap: 40px;
  }
}

.cta-left .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.cta-left .desc {
  font-weight: 300;
}

.cta-right a {
  color: var(--primary-color);
  padding: 15px 60px;
  background-color: var(--primary-100);
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  font-size: 18px;
}

.cta-right a:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* CTA SECTION END */

/* FOOTER START */

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

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

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

footer .footer-logo {
  display: inline-block;
  margin-bottom: 30px;
}

footer .footer-logo img {
  max-width: 150px;
}

footer .footer-left {
  grid-column: span 3;
}

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

footer .footer-right {
  width: 100%;
  grid-column: span 9;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  footer .footer-right {
    grid-column: span 12;
    flex-wrap: wrap;
    gap: 30px;
  }
}

footer .footer-right .footer-col {
  width: 100%;
}

footer .footer-right .footer-col .footer-list-title {
  color: var(--white-text);
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
}

footer .footer-right .footer-col .footer-list-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 150px;
  height: 2px;
  background-color: var(--primary-100);
}

footer .footer-right .footer-col .footer-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .footer-right .footer-col .footer-list li,
footer .footer-right .footer-col .footer-list li a {
  color: gainsboro;
  transition: all 0.3s ease;
}

footer .footer-right .footer-col .footer-list li:hover,
footer .footer-right .footer-col .footer-list li a:hover {
  color: var(--white-text);
}

.footer-bottom .container {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-text);
}

@media (max-width: 992px) {
  .footer-bottom .container {
    padding: 15px 0 120px 15px;
    flex-wrap: wrap;
  }
}

.footer-bottom-right .bottom-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer-bottom-right .bottom-links li {
  position: relative;
}

.footer-bottom-right .bottom-links li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-text);
}

.footer-bottom-right .bottom-links li a {
  color: var(--white-text);
}

/* FOOTER END */

/* PRODUCT PAGE START  */

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

.list-product .container .category-box {
  grid-column: span 4;
}

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

@media (max-width: 568px) {
  .list-product .container .category-box {
    grid-column: span 12;
  }
}

/* PRODUCT PAGE END  */

/* CATEGORY PAGE START */

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

.list-category .container .category-box {
  grid-column: span 4;
}

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

.category-top .container .product-box {
  grid-column: span 4;
}

/* CATEGORY PAGE END */

/* BREADCRUMB START */

.breadcrumb-container {
  padding: 30px 0;
  background-color: var(--primary-200);
  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;
  font-size: 14px;
}

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

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

/* BREADCRUMB END */

/* PRODUCT DETAIL START */

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

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

.product-detail-gallery {
  grid-column: span 7;
}
@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-radius: var(--border-radius);
}
.product-detail-gallery .gallerySlider2 .swiper-button-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-detail-gallery .gallerySlider2 .swiper-button-next i {
  font-size: 27px;
}

.product-detail-gallery .gallerySlider2 .swiper-button-prev {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.product-detail-gallery .gallerySlider2 .swiper-button-prev i {
  font-size: 27px;
}

.gallerySlider1 {
  padding: 15px 5px !important;
}
/* 🔹 Play ikonu sadece küçük thumb’larda */
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
  background: rgba(255, 255, 255, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
/* Play ikonu */
.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  /* ikonun kendisinden büyük */
  height: 80px;
  /* ikonun kendisinden büyük */
  border: 2px solid rgba(255, 255, 255, 1);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: pulse1 2s infinite;
  z-index: -1;
}

.play-icon::after {
  animation-delay: 1s;
}

@keyframes pulse1 {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
}
@media (max-width: 992px) {
  .video-thumb .play-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }
}
.video-thumb:hover .play-icon {
  background: rgba(0, 0, 0, 0.7);
}

/* 🔹 BÜYÜK slider (gallerySlider2) dokunulmaz */
.gallerySlider2 .swiper-slide {
  height: auto;
}

.gallerySlider2 .gallery-box img {
  width: 100%;
  height: auto;
  object-fit: contain; /* Görseller oranını koruyarak sığsın */
}

/* 🔹 Video slide boyutları (büyük alan) */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 oran */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.gallerySlider1 img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .gallerySlider1 img {
    height: 100px;
  }
}

.product-detail-right {
  grid-column: span 5;
}

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

.features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.features-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.features-list li:hover {
  background: #f3f3f3;
  transform: translateY(-1px);
}

.features-list .left {
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.features-list .right {
  color: #666;
  text-align: right;
  line-height: 1.4;
}

.features-list .right .color {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.features-list .right .color:not(:last-child) {
  margin-right: 3px;
}

.product-detail-right .offer-btn {
  width: 100%;
  padding: 20px;
  background-color: var(--primary-color);
  color: var(--white-text);
  border-radius: var(--border-radius);
  display: block;
  margin-top: 30px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  font-size: 20px;
}

.product-tab {
  padding: 0 0 60px 0;
}

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

  .tab-button {
    padding: 15px 60px;
    border: 1px solid var(--primary-800);
    cursor: pointer;
  }

  .tab-button.active {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: var(--white-text);
  }
}

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

  .tab-select {
    display: block;
    width: 100%;
    margin-bottom: 30px;
    padding: 12px 14px;
    background-color: var(--primary-100);
    color: var(--primary-200);
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .tab-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 55, 47, 0.2);
  }

  .tab-select:hover {
    border-color: var(--primary-color);
  }

  .tab-select option {
    color: var(--primary-200);
  }
}

.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(--primary-800);
}

.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;
  }
}

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

.tabs-content .content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--primary-100);
  color: var(--primary-200);
  font-size: 14px;
}

.tabs-content .content-wrapper table thead {
  background-color: var(--primary-color);
  color: var(--primary-100);
}

.tabs-content .content-wrapper table th,
.tabs-content .content-wrapper table td {
  padding: 12px 14px;
  border: 1px solid var(--primary-color);
  text-align: left;
}

.tabs-content .content-wrapper table tbody tr:nth-child(even) {
  background-color: rgba(209, 55, 47, 0.05);
}

.tabs-content .content-wrapper table tbody tr:hover {
  background-color: rgba(209, 55, 47, 0.12);
}

.tabs-content .content-wrapper table th {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.product-contact {
  padding: 0 0 60px 0;
}

.product-contact .container {
  box-shadow: var(--shadow);
  padding: 30px;
  border-radius: var(--border-radius);
}

.product-contact .container .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.offer-form {
  width: 100%;
}

/* GRID YAPI */
.offer-form .form-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* YARIM ALAN (6/12) */
.offer-form .form-item {
  grid-column: span 6;
}

/* TAM ALAN (12/12) */
.offer-form .form-item-full {
  grid-column: span 12;
}

/* INPUT & TEXTAREA */
.offer-form input,
.offer-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.offer-form input:focus,
.offer-form textarea:focus {
  border-color: #000;
}

/* ALT ALAN */
.offer-form .form-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offer-form button {
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

/* =====================
   RESPONSIVE
===================== */

/* TABLET */
@media (max-width: 991px) {
  .offer-form .form-item {
    grid-column: span 12;
  }

  .offer-form .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .offer-form button {
    width: 100%;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .offer-form .form-grid {
    gap: 12px;
  }

  .offer-form input,
  .offer-form textarea {
    font-size: 13px;
    padding: 10px 12px;
  }
}

/* PRODUCT DETAIL 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: 10;
  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 */

/* 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);
}

/* 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-color);
  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 12;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--primary-900);
  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-200));
  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;
  margin-bottom: 0;
}

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

.maps {
  padding: 0 0 30px 0;
}

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

.maps .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* CONTACT PAGE END */

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

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

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

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

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

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

.blog-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.blog-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(6, 8, 10, 0.9) 100%
  );
}

.blog-box:hover::after {
  background: linear-gradient(
    to top,
    rgba(209, 55, 47, 1),
    rgba(209, 55, 47, 0)
  );
}

.blog-box img {
  width: 100%;
  transition: all 0.3s ease;
}

.blog-box:hover img {
  transform: scale(1.1);
}

.blog-box .blog-box-content {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  color: var(--white-text);
}

.blog-box .blog-box-content .title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog-box .blog-box-content button {
  background: transparent;
  border: none;
  font-size: 16px;
  color: var(--white-text);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Hover olunca animasyon başlasın */
.blog-box:hover .blog-box-content button {
  animation: buttonUp 0.45s ease-out forwards;
  pointer-events: auto;
}

/* Hover çıkınca geri insin */
.blog-box:not(:hover) .blog-box-content button {
  animation: buttonDown 0.35s ease-in forwards;
}

@keyframes buttonUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

.detail-layout {
  padding: 60px 0;
}

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

.detail-layout .detail-left {
  grid-column: span 8;
}
@media (max-width: 992px) {
  .detail-layout .detail-left {
    grid-column: span 12;
  }
}
.detail-layout .detail-right {
  grid-column: span 4;
}

@media (max-width: 992px) {
  .detail-layout .detail-right {
    grid-column: span 12;
  }
}
.detail-layout .detail-right {
  position: sticky;
  top: 50px;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  padding: 30px;
}

.detail-layout .detail-right .title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.detail-layout .detail-right .contact-form {
  padding: 0;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}

/* BLOG PAGE END */
/* WHATSAPP FIXED START */
.wp-img {
  color: #fff;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  opacity: 0.5;
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mypage-alo-ph-circle-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.4 !important;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: rgba(30, 30, 30, 0.1)
    url(https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.inetmar.com%2Fblog%2Fweb-sitesine-whatsapp-butonu-ekleme%2F&psig=AOvVaw24o_fVXdJxPaz-ZYw6fVc_&ust=1728734068863000&source=images&cd=vfe&opi=89978449&ved=0CBQQjRxqFwoTCKi3trKihokDFQAAAAAdAAAAABAE)
    no-repeat center center;
  background-size: 100%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-size: 100%;
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.mypage-alo-phone {
  position: absolute;
  top: -10px;
  right: 0px;
  z-index: 9999999;
}

.mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle {
  border-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-circle-fill {
  background-color: #43b91e;
}

.mypage-alo-phone:hover .mypage-alo-ph-img-circle {
  background-color: #43b91e;
}

.hotlinemp {
  position: fixed;
  right: 139px;
  bottom: 130px;
  z-index: 10;
}

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

/* WHATSAPP FIXED END*/

/* DOCUMENTS PAGE START */

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

.documents-box {
  grid-column: span 3;
  box-shadow: var(--shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}

.documents-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background:rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.3s ease;
}

.documents-box:hover::after {
  opacity: 1;
}

.documents-box i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  color: var(--primary-100);
  font-size: 32px;
  opacity: 0;
  transition: all 0.3s ease;
}

.documents-box:hover i {
  opacity: 1;
}


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

.documents-box img {
  width: 100%;
}

/* DOCUMENTS PAGE END */

/* POLICIES PAGE START */

.accordion-box {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-toggle {
    padding: 15px;
    cursor: pointer;
    background: #f5f5f5;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-toggle:hover {
    background: #e8e8e8;
}

.toggle-icon {
    transition: transform 0.4s ease;
    font-size: 16px;
}

.accordion-toggle.active .toggle-icon {
    animation: rotateIcon 0.4s ease forwards;
}

.accordion-toggle:not(.active) .toggle-icon {
    animation: rotateIconBack 0.4s ease forwards;
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(180deg);
    }
}

@keyframes rotateIconBack {
    0% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
}

.accordion-content.active {
    animation: slideDown 0.4s ease forwards;
}

.accordion-content:not(.active) {
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideDown {
    0% {
        max-height: 0;
        opacity: 0;
    }
    100% {
        max-height: 300px;
        opacity: 1;
    }
}

@keyframes slideUp {
    0% {
        max-height: 300px;
        opacity: 1;
    }
    100% {
        max-height: 0;
        opacity: 0;
    }
}

.accordion-content-inner {
    padding: 15px;
    animation: fadeIn 0.5s ease;
}

.accordion-content.active .accordion-content-inner {
    animation: fadeInSlide 0.5s ease forwards;
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-pdf {
    display: inline-block;
    transition: transform 0.3s ease;
}

.accordion-pdf:hover {
    transform: scale(1.05);
}

.accordion-pdf img {
    max-width: 250px;
}


/* POLICIES PAGE END */


/* /EDGE-WİDGET START/ */

.edge-widget img {
    display: none;
}

.edge-widget.active img {
    display: block;
}

.edge-widget {
    position: fixed;
    z-index: 9999;
}

.img-wrapper {
    background-color: var(--primary-100);
    border-radius: 5px;
    position: fixed;
    top: 0;
    height: 100vh;
    right: 0;
    width: 420px;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 3;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.img-wrapper .title {
  font-size: 27px;
  font-weight: 500;
}
.img-wrapper .desc {
  font-size: 14px;
  color: var(--primary-200);
}

.edge-widget button {
    width: 150px;
    height: 40px;
    border: none;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%) translateX(37%) rotate(-90deg);
    z-index: 3;
    transition: right 0.3s ease, background 0.3s ease;
    border-radius: 5px;
}


.edge-widget.active .img-wrapper {
    transform: translateX(0);
}
.edge-widget.active body {
  overflow: hidden;
}
.edge-widget.active button {
    right: 420px;
}

.edge-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2; /* edge-widget'ın z-index'inden bir düşük olmalı */
}

.edge-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media(max-width:992px) {
    .edge-widget.active .img-wrapper {
        width: 75%;
    }

    .edge-widget.active button {
        right: 172px;
    }
}

/* /EDNGE-WİDGET END/ */