.hero-banner {
  position: relative;
  color: white;
  padding: 0;
  margin-bottom: 40px;
  overflow: hidden;
  height: 500px;
}

.banner-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
}

.banner-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #3c4c6d;
  display: flex;
  align-items: center;
  padding: 0 50px;
}

.banner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-banner h1 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner-buttons {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
  width: auto;
  gap: 0;
  justify-content: center;
}

.banner-button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  color: white;
  border: none;
  font-size: 14px;
  width: 200px;
  transition: all 0.3s ease;
  justify-content: center;
  text-align: center;
  margin: 0;
}

.banner-button span {
  font-size: 13px;
  letter-spacing: 0.1px;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
}

.banner-button:hover {
  opacity: 0.9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn-catalog {
  background-color: #3c4c6d;
}

.btn-info {
  background-color: #00bf3f;
}

.icon-container {
  margin-right: 6px;
  min-width: 18px;
  width: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
}

.kurumsal-content {
  padding: 30px 0;
}

.kurumsal-content .container {
  max-width: 95%;
  padding-left: 10px;
  padding-right: 10px;
}

.kurumsal-content h2 {
  font-family: "Afacad", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  color: #415171;
}

.kurumsal-content p {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.6;
}

.kurumsal-galeri {
  margin: 30px 0;
}

.galeri-item {
  margin-bottom: 15px;
  padding: 0 5px;
}

.galeri-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 2px;
}

.product-item .img-container {
  justify-content: flex-end !important;
  padding-right: 0 !important;
  overflow: visible !important;
}

.product-item .img-container a {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-right: 0 !important;
}

.product-item img {
  transform: translateX(25px);
  margin-right: 0px;
  transform-origin: right center;
}

.product-item:hover img {
  transform: translateX(25px) scale(1.05);
  margin-right: 0px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination a {
  display: inline-block;
  padding: 8px 14px;
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination a:hover {
  background-color: #e0e0e0;
}

.pagination .active a {
  background-color: #3c4c6d;
  color: white;
}

.pagination .disabled a {
  background-color: #f5f5f5;
  color: #aaa;
  pointer-events: none;
}

@media (max-width: 992px) {
  .hero-banner {
    height: auto;
  }
  
  .banner-container {
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative;
  }
  
  .banner-left, .banner-right {
    position: relative;
    width: 100%;
    height: 250px;
  }
  
  .banner-image {
    position: relative;
    height: 100%;
    object-fit: cover;
  }
  
  .banner-right {
    padding: 20px 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-banner h1 {
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .hero-banner h3 {
    font-size: 16px;
    text-align: center;
  }

  .text-content {
    width: 100%;
    text-align: center;
  }
  
  .banner-buttons {
    position: relative;
    width: 100%;
    flex-direction: column;
    margin: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f5f5f5;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.05);
  }
  
  .banner-button {
    width: 100%;
    max-width: 280px;
    margin: 0;
    justify-content: center;
    min-width: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    flex-wrap: nowrap;
  }
  
  .banner-button .icon-container {
    width: 20px;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
  }
  
  .banner-button span {
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .banner-left, .banner-right {
    height: 200px;
  }
  
  .banner-right {
    height: 150px;
    padding: 15px 20px;
  }
  
  .hero-banner h1 {
    font-size: 22px;
    margin-bottom: 8px;
  }
  
  .hero-banner h3 {
    font-size: 14px;
  }
  
  .banner-buttons {
    padding: 15px;
    gap: 10px;
  }
  
  .banner-button {
    padding: 10px 12px;
    font-size: 12px;
    max-width: 100%;
    flex-wrap: nowrap;
    min-height: 40px;
  }
  
  .banner-button span {
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1.1;
    white-space: nowrap;
  }
  
  .icon-container {
    margin-right: 6px;
    min-width: 18px;
    width: 18px;
  }
  
  .icon-container img {
    height: 18px;
  }
  
  .icon-container i {
    font-size: 14px !important;
  }
}

.product-categories-wrapper {
  width: 100%;
  background-color: white;
  margin: 0;
  padding: 0;
}

.product-categories {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-categories .row {
  margin: 0;
  width: 100%;
}

.products {
  background-color: white;
  padding-top: 20px;
  padding-bottom: 40px;
}

.product-categories-full-width {
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: white;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
}

.product-categories-full-width .container-fluid {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.product-categories-full-width .row {
  margin: 0;
  width: 100%;
}

.product-item {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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