/* Custom Styles for kitikate */

/* Color Variables */
:root {
  --primary-color: #9eb3a5;
  --primary-dark: #8aa394;
  --secondary-color: #dbc9bb;
  --secondary-dark: #c19660;
}

/* Global Styles */
body {
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Mulish", sans-serif;
  font-weight: 600;
}

.fw-bold {
  font-weight: 700 !important;
}

/* Product Card Styles */
.product-card {
  transition: transform 0.3s ease;
  border: 1px solid #dee2e6;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
  background-color: #f8f9fa;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: bold;
}

.product-card .rating {
  font-size: 0.9rem;
}

.product-card .badges .badge {
  font-size: 0.7rem;
  margin-right: 5px;
}

/* Category Card Styles */
.category-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #dee2e6;
}

.category-card:hover {
  background-color: #f8f9fa !important;
  transform: translateY(-3px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Quick Category Styles */
.quick-category {
  cursor: pointer;
  transition: all 0.3s ease;
}

.quick-category:hover {
  transform: scale(1.05);
}

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

.quick-category:hover .category-icon {
  transform: scale(1.1);
}

/* Age Category Styles */
.age-category {
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}

.age-category:hover {
  background-color: #e3f2fd;
  border-color: #2196f3 !important;
  transform: translateY(-2px);
}

/* Hero Slider Styles */
.hero-slide {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide.bg-success {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}

/* Header Styles */
.header-top {
  background-color: #9eb3a5;
  padding: 0.8rem 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header-main {
  background-color: #ffffff;
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Logo Styles */
.logo h2 {
  font-family: "Mulish", sans-serif;
  font-weight: 700;
  color: #9eb3a5;
  font-size: 2rem;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.logo a:hover h2 {
  transform: scale(1.02);
}

.logo i {
  font-size: 1.8rem;
  margin-right: 8px;
  vertical-align: middle;
}

/* Header Links */
.header-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.header-links a:hover {
  color: #f8f9fa;
  transform: translateY(-1px);
}

/* Header Actions */
.header-actions {
  display: flex;
}
.header-actions .notification-toggle {
  order: 1;
  margin-right: 0.5rem;
}
.header-actions .dropdown {
  order: 2;
}
.header-actions .position-relative {
  order: 3;
}

.header-actions .btn {
  border: none;
  background: none;
  color: #6c757d;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-actions .btn:hover {
  color: #9eb3a5;
  transform: translateY(-2px);
}

.header-actions .btn i {
  font-size: 1.3rem;
}

/* Bildirimler butonu dönen animasyonu */
.header-actions .notification-toggle i {
  transform-origin: top center;
  animation: rotate-sway 2s infinite ease-in-out;
}

@keyframes rotate-sway {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

/* Search Bar */
.search-bar .form-control {
  border-radius: 25px 0 0 25px;
  border: 2px solid #e9ecef;
  border-right: none;
  height: 50px;
  padding-left: 20px;
  font-size: 1rem;
  font-family: "Mulish", sans-serif;
  font-weight: 400;
  transition: all 0.3s ease;
}

.search-bar .form-control:focus {
  border-color: #9eb3a5;
  box-shadow: none;
}

.search-bar .btn {
  border-radius: 0 25px 25px 0;
  height: 50px;
  width: 60px;
  background-color: #9eb3a5;
  border: 2px solid #9eb3a5;
  transition: all 0.3s ease;
}

.search-bar .btn:hover {
  background-color: #8aa394;
  border-color: #8aa394;
  transform: translateY(-1px);
}

.search-bar .btn i {
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  background-color: #9eb3a5;
  padding: 0.8rem 0;
  border-top: 3px solid #8aa394;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.2rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  font-family: "Mulish", sans-serif;
}

.navbar-nav .nav-link:hover {
  color: #f8f9fa !important;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transform: translateY(-1px);
}

/* Hamburger menu styles */
.navbar-toggler {
  border: none;
  padding: 0.25rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown Menus */
.dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 8px;
}

/* Mega Dropdown Menü Genişliği */
.dropdown-mega {
  min-width: 400px;
  max-width: 800px;
}

/* Dropdown Item Styles */
.dropdown-item {
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  font-family: "Mulish", sans-serif;
  color: #495057;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #9eb3a5;
  color: #ffffff;
}

/* Footer Styles */
footer {
  background: #fff;
  color: #404040;
  font-family: "Mulish", sans-serif;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #404040;
}

footer h6 {
  color: #404040;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 400;
  color: #404040;
}

footer a:hover {
  color: #6b5d54 !important;
}

footer p {
  color: #404040;
}

footer small {
  color: #404040;
}

/* Security Features */
.bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    margin-bottom: 20px;
  }

  .category-card {
    margin-bottom: 15px;
  }

  .age-category {
    margin-bottom: 10px;
  }

  .hero-slide h1 {
    font-size: 1.8rem;
  }

  .hero-slide p {
    font-size: 1rem;
  }

  .logo h2 {
    font-size: 1.5rem;
  }

  .search-bar .form-control,
  .search-bar .btn {
    height: 45px;
  }

  .header-actions .btn {
    width: 35px;
    height: 35px;
    padding: 0.25rem;
  }

  .header-actions .btn i {
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .header-main {
    padding: 1.5rem 0;
  }

  .header-actions {
    justify-content: end;
  }

  /* Mobile hamburger menu */
  .navbar-toggler {
    width: 35px;
    height: 35px;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    transform: none;
    box-shadow: none;
    border: 1px solid #dee2e6;
    margin-top: 0.5rem;
  }

  .category-item span {
    font-size: 0.8rem;
  }

  .category-image-wrapper {
    width: 60px;
    height: 60px;
  }

  .header-top {
    padding: 0.6rem 0;
    font-size: 0.85rem;
  }

  .header-links a {
    font-size: 0.8rem;
    margin: 0 0.3rem;
  }

  .main-banner-swiper {
    aspect-ratio: 16/7;
  }

  .main-banner-slider-section {
    padding: 0.3rem;
  }

  .main-banner-swiper .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
  }

  .main-banner-swiper .swiper-button-next,
  .main-banner-swiper .swiper-button-prev {
    width: 35px;
    height: 35px;
  }

  .main-banner-swiper .swiper-button-next::after,
  .main-banner-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

/* Mobile First Media Query */
@media (max-width: 576px) {
  .header-main {
    padding: 1rem 0;
  }

  .logo h2 {
    font-size: 1.3rem;
  }

  .header-actions .btn {
    width: 32px;
    height: 32px;
    padding: 0.2rem;
  }

  .header-actions .btn i {
    font-size: 1rem;
  }

  .navbar-toggler {
    width: 32px;
    height: 32px;
    padding: 0.2rem;
  }

  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }

  .search-bar .form-control,
  .search-bar .btn {
    height: 40px;
  }

  .category-image-wrapper {
    width: 50px;
    height: 50px;
  }

  .category-item span {
    font-size: 0.7rem;
  }

  .age-label {
    font-size: 0.7rem !important;
  }

  .navbar-nav .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0.6rem;
  }

  .header-top {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }

  .header-links a {
    font-size: 0.75rem;
    margin: 0 0.2rem;
    display: inline-block;
    margin-top: 0.3rem;
  }

  .main-banner-swiper {
    aspect-ratio: 16/8;
  }

  .main-banner-slider-section {
    padding: 0.5rem;
  }

  .main-banner-swiper .swiper-slide {
    border-radius: 8px;
    overflow: hidden;
  }

  .main-banner-swiper .swiper-button-next,
  .main-banner-swiper .swiper-button-prev {
    width: 30px;
    height: 30px;
  }

  .main-banner-swiper .swiper-button-next::after,
  .main-banner-swiper .swiper-button-prev::after {
    font-size: 14px;
  }

  /* Best sellers buttons for mobile */
  .best-sellers-swiper .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .best-sellers-nav-next,
  .best-sellers-nav-prev {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .best-sellers-nav-next {
    right: 8px;
  }

  .best-sellers-nav-prev {
    left: 8px;
  }

  .best-sellers-nav-next::after,
  .best-sellers-nav-prev::after {
    font-size: 12px;
  }
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button Hover Effects */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary {
  border-color: #667eea;
  color: #667eea;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  transform: translateY(-1px);
}

/* Custom Badge Styles */
.badge.bg-success {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%) !important;
}

.badge.bg-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.badge.bg-warning {
  background-color: #ffc107 !important;
  color: #212529;
}

/* Categories Section */
.categories-section {
  padding: 1rem 0;
  margin-bottom: 0.5rem;
}

/* Weekly Combinations Section */
.weekly-combinations-section {
  background-color: var(--secondary-color);
  max-width: 1920px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Weekly Product Card Styles */
.weekly-product-card {
  border-radius: 0 !important;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: white;
  padding: 10px;
}

.weekly-product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.weekly-product-card .card-img-top {
  border-radius: 0 !important;
  padding: 0.5rem;
  background-color: #f8f8f8;
}

.weekly-product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1.5rem;
}

.weekly-product-card .card-title {
  font-size: 0.95rem !important;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
  order: 1;
}

.weekly-product-card .rating {
  font-size: 0.9rem;
  order: 0;
}

.weekly-product-card .badge-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  align-items: flex-start !important;
}

.weekly-product-card .badge-container .badge {
  border-radius: 0 !important;
  padding: 2px 6px !important;
  font-size: 0.75rem !important;
}

.weekly-product-card .badge.bg-dark {
  background-color: #333 !important;
  color: #fff !important;
  border-radius: 0 !important;
  padding: 2px 6px !important;
  font-size: 0.75rem !important;
}

.weekly-product-card .price {
  color: #333 !important;
  order: 2;
}

.category-item a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  width: auto;
}

.category-item a:hover {
  color: #9eb3a5;
}

.category-item a:hover .category-image-wrapper {
  transform: scale(1.05);
}

.category-image-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 6px solid transparent; /* Varsayılan olarak transparan border */
}

.category-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.category-item:nth-child(1) .category-image-wrapper {
  border-color: #fceeee;
  background-color: white;
}
.category-item:nth-child(2) .category-image-wrapper {
  border-color: #eaf7e8;
  background-color: white;
}
.category-item:nth-child(3) .category-image-wrapper {
  border-color: #fff8e1;
  background-color: white;
}
.category-item:nth-child(4) .category-image-wrapper {
  border-color: #eef7fa;
  background-color: white;
}
.category-item:nth-child(5) .category-image-wrapper {
  border-color: #fbeee7;
  background-color: white;
}
.category-item:nth-child(6) .category-image-wrapper {
  border-color: #e5f4fa;
  background-color: white;
}
.category-item:nth-child(7) .category-image-wrapper {
  border-color: #fef8e4;
  background-color: white;
}
.category-item:nth-child(8) .category-image-wrapper {
  border-color: #f1eef7;
  background-color: white;
}
.category-item:nth-child(9) .category-image-wrapper {
  border-color: #fdefee;
  background-color: white;
}
.category-item:nth-child(10) .category-image-wrapper {
  border-color: #fefbe4;
  background-color: white;
}

/* Swiper Customization */
.main-banner-swiper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 16/6;
  position: relative;
}

.main-banner-swiper,
.main-banner-swiper .swiper-wrapper {
  height: auto;
}

.swiper-slide {
  height: auto;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner-swiper .swiper-slide {
  height: 100%;
}

.main-banner-swiper .swiper-slide img {
  object-position: center;
  min-height: 100%;
}

.main-banner-swiper .swiper-button-next,
.main-banner-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #333;
  transition: background-color 0.3s;
}

.main-banner-swiper .swiper-button-next:hover,
.main-banner-swiper .swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 1);
}

.main-banner-swiper .swiper-button-next::after,
.main-banner-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Main Banner Slider */
.main-banner-slider-section {
  background-color: #f8f9fa;
}

.main-banner-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.main-banner-slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.main-banner-slider-track .slide {
  min-width: 100%;
  box-sizing: border-box;
}

.main-banner-slider-track .slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background-color: rgba(255, 255, 255, 1);
}

.slider-btn.prev-btn {
  left: 15px;
}

.slider-btn.next-btn {
  right: 15px;
}

.slider-btn i {
  line-height: 0;
}

/* Product Image Hover Effect */
.product-image-main,
.product-image-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  z-index: 1;
}

.product-image-hover {
  opacity: 0;
}

.weekly-product-card:hover .product-image-main {
  opacity: 0;
}

.weekly-product-card:hover .product-image-hover {
  opacity: 1;
}

/* Badge z-index fix */
.weekly-product-card .badge,
.weekly-product-card .btn {
  z-index: 10;
  position: relative;
}

/* Kalp ikonunu açık gri yap */
.weekly-product-card .card-img-top .btn {
  color: #c4c4c4 !important;
}

/* Sayaç rozeti için mor renk */
.weekly-product-card .badge.bg-primary {
  background-color: #6f2eea !important;
  color: #fff !important;
}

/* Üst sol Yeni rozeti arkaplan ve yazı */
.weekly-product-card .badge.bg-dark {
  background-color: #333 !important;
  color: #fff !important;
}

/* Best Sellers Swiper Styles */
.best-sellers-swiper {
  position: relative;
  overflow: visible;
  margin: 0 auto;
  padding-bottom: 1rem;
}

/* Container padding for navigation buttons */
.best-sellers-swiper .container {
  padding-left: 80px;
  padding-right: 80px;
}

.best-sellers-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.best-sellers-swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
  padding: 0 10px;
}

/* Header-specific Best Sellers Nav Overrides */
.best-sellers-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.best-sellers-nav .best-sellers-nav-prev,
.best-sellers-nav .best-sellers-nav-next {
  position: static !important;
  top: auto !important;
  transform: none !important;
  background: none !important;
  box-shadow: none !important;
  width: 32px !important;
  height: 32px !important;
  left: auto !important;
  right: auto !important;
  border: none !important;
  color: #6b5b53 !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  transition: color 0.2s;
  text-decoration: none !important;
}
.best-sellers-nav .best-sellers-nav-prev:hover,
.best-sellers-nav .best-sellers-nav-next:hover {
  color: #a08c7d !important;
  background: none !important;
}

/* Navigation buttons positioned outside slider */
.best-sellers-nav-next,
.best-sellers-nav-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  background-color: white;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 20;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-sellers-nav-next {
  right: -60px;
}

.best-sellers-nav-prev {
  left: -60px;
}

.best-sellers-nav-next:hover,
.best-sellers-nav-prev:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.best-sellers-nav-next::after,
.best-sellers-nav-prev::after {
  font-size: 16px;
  font-weight: bold;
}

/* Responsive best sellers slider for tablets */
@media (max-width: 992px) and (min-width: 769px) {
  .best-sellers-swiper .container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .best-sellers-nav-next {
    right: -30px;
  }

  .best-sellers-nav-prev {
    left: -30px;
  }

  .best-sellers-nav-next,
  .best-sellers-nav-prev {
    width: 40px;
    height: 40px;
  }
}

/* Responsive best sellers slider for mobile */
@media (max-width: 768px) {
  .best-sellers-swiper .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .best-sellers-swiper .swiper-slide {
    padding: 0 5px;
  }

  .best-sellers-nav-next,
  .best-sellers-nav-prev {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .best-sellers-nav-next {
    right: 10px;
  }

  .best-sellers-nav-prev {
    left: 10px;
  }

  .best-sellers-nav-next::after,
  .best-sellers-nav-prev::after {
    font-size: 14px;
  }
}

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

/* Add to cart button hover effect */
.weekly-product-card .add-to-cart-btn {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 15;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weekly-product-card:hover .add-to-cart-btn {
  opacity: 1;
  transform: translateY(0);
}

#static-add-to-cart-btn {
  display: block;
  width: 400px;
  height: 60px;
  background: #a1aea4;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* Popular Categories Swiper Styles */
.popular-categories-swiper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.popular-categories-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.popular-categories-swiper .swiper-slide {
  width: 300px;
  flex-shrink: 0;
  padding: 0 10px;
}

.popular-category-card {
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

.popular-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #dee2e6;
}

.category-image {
  width: 100%;
  height: 280px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.category-title {
  padding: 18px 12px;
  background-color: white;
}

.category-title p {
  font-size: 15px;
  color: #495057;
  font-weight: 500;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .popular-categories-swiper .swiper-slide {
    width: 150px;
    padding: 0 8px;
  }

  .category-image {
    height: 200px;
  }

  .category-title {
    padding: 15px 10px;
  }

  .category-title p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .popular-categories-swiper .swiper-slide {
    width: 130px;
    padding: 0 6px;
  }

  .category-image {
    height: 170px;
  }

  .category-title {
    padding: 12px 8px;
  }

  .category-title p {
    font-size: 13px;
  }
}

/* Yaşa Göre Alışveriş Yap Section */
.age-section .age-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.age-section .age-item:hover {
  transform: translateY(-3px);
}
.age-section .age-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.age-section .age-item:hover img {
  transform: scale(1.1);
}
.age-section .age-label {
  position: static;
  background: none;
  color: #333;
  padding: 0.5rem 0 0;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* Age Section: fit all items in one row without scroll */
.age-section .row.flex-nowrap {
  flex-wrap: nowrap;
}
.age-section .row.flex-nowrap > div {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
}

/* Age Section Responsive Design */
/* 1400px ve üzeri ekranlar için - Grid layout */
@media (min-width: 1400px) {
  .age-section .age-swiper {
    display: none !important;
  }

  .age-section .age-grid {
    display: flex !important;
    gap: 15px;
    justify-content: center;
  }

  .age-section .age-grid-item {
    flex: 0 0 calc(10% - 12px);
    max-width: calc(10% - 12px);
    min-width: 120px;
  }

  .age-section .age-grid-item .age-item img {
    height: 120px;
  }

  .age-section .age-grid-item .age-label {
    font-size: 0.8rem;
    padding: 0.3rem 0 0;
  }
}

/* 1400px altı ekranlar için - Swiper layout */
@media (max-width: 1399px) {
  .age-section .age-swiper {
    display: block !important;
  }

  .age-section .age-grid {
    display: none !important;
  }
}

/* Blog Section Styles */
.blog-section h2 {
  font-weight: 600;
  margin-bottom: 2rem;
}
.blog-section h2 i {
  font-size: 2rem;
  color: var(--primary-color);
}
.blog-section .card-img-top {
  height: 180px;
  object-fit: cover;
}
.blog-section .card {
  transition: transform 0.3s ease;
}
.blog-section .card:hover {
  transform: translateY(-5px);
}
.blog-section .card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 3);
}
.blog-section .card-body a {
  color: #333;
  text-decoration: underline !important;
  font-weight: 600;
  transition: color 0.3s ease;
}
.blog-section .card-body a:hover {
  color: var(--primary-color);
}

/* Blog Section Mobile Styles */
@media (max-width: 767px) {
  .blog-section .card-text {
    -webkit-line-clamp: 2;
    max-height: calc(1.4em * 2);
  }
}

/* Blog Section Responsive Design */
/* 992px ve üzeri ekranlar için - Grid layout */
@media (min-width: 992px) {
  .blog-section .blog-swiper {
    display: none !important;
  }

  .blog-section .blog-grid {
    display: block !important;
  }
}

/* 992px altı ekranlar için - Swiper layout */
@media (max-width: 991px) {
  .blog-section .blog-swiper {
    display: block !important;
  }

  .blog-section .blog-grid {
    display: none !important;
  }
}

/* User Photos Section Styles */
.user-photos-section .photo-item {
  position: relative;
  overflow: hidden;
  height: 350px;
}
.user-photos-section .photo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.user-photos-section .photo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.user-photos-section .photo-item:hover .photo-overlay {
  opacity: 1;
}
.user-photos-section .photo-link {
  display: block;
  height: 100%;
}

/* User Photos Desktop Grid */
.user-photos-grid .row {
  margin: 0;
}
.user-photos-grid .col-lg-3 {
  padding: 0 10px;
}

/* Wide Containers for Haftanın Kombinleri ve Çok Satanlar */
.weekly-combinations-section .container-fluid,
.best-sellers-section .container-fluid {
  max-width: 1600px;
  margin: 0 auto;
}

/* Çok Satanlar Kartları için Daha Yüksek Tasarım */
.best-sellers-section .weekly-product-card .card-img-top {
  height: 320px !important;
}

/* Responsive için */
@media (max-width: 768px) {
  .weekly-combinations-section .container-fluid,
  .best-sellers-section .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .best-sellers-section .weekly-product-card .card-img-top {
    height: 230px !important;
  }
}

/* User Photos Mobile Slider */
.user-photos-swiper {
  padding-bottom: 40px;
}
.user-photos-swiper .swiper-pagination {
  bottom: 10px;
}
.user-photos-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(158, 179, 165, 0.5);
}
.user-photos-swiper .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

/* Mobile için responsive özellikler */
@media (max-width: 767px) {
  .user-photos-section .photo-item {
    height: 300px;
  }
  .user-photos-section .photo-overlay {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Footer Features Section */
.footer-features {
  /* custom styling */
}
.footer-features h5 {
  font-weight: 600;
  font-size: 1.5rem;
  color: #333;
}
.footer-features p {
  color: #6b5d54;
}
.footer-features a {
  color: #6b5d54;
}
.footer-features a:hover {
  text-decoration: underline;
}
.footer-features .feature-item i {
  font-size: 2rem;
  color: #6b5d54;
  border: 1px solid #6b5d54;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.payment-logos img {
  height: 5rem;
  margin: 0 10px;
  max-width: 85%;
  object-fit: cover;
}
.btn-outline-secondary {
  border-color: #6b5d54;
  color: #6b5d54;
}
.btn-outline-secondary:hover {
  background-color: #6b5d54;
  color: #fff;
}

/* Back to Top Button Gradient (Design Uyumlu) */
.btn-primary.position-fixed {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  border: none;
}

.btn-primary.position-fixed:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  );
}

@media (max-width: 640px) {
  .weekly-product-card .card-title {
    font-size: 0.95rem;
    line-height: 1.1;
  }
  .weekly-product-card .card-img-top {
    height: 250px !important;
    min-height: 120px;
    max-height: 350px;
  }
  .weekly-product-card .card-img-top img {
    max-height: 100%;
    object-fit: contain;
  }
}

/* Haftanın Kombinleri nav butonları için sade stil */
.weekly-combinations-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.weekly-combinations-nav .weekly-combinations-nav-prev,
.weekly-combinations-nav .weekly-combinations-nav-next {
  position: static !important;
  top: auto !important;
  transform: none !important;
  background: none !important;
  box-shadow: none !important;
  width: 32px !important;
  height: 32px !important;
  left: auto !important;
  right: auto !important;
  border: none !important;
  color: #6b5b53 !important;
  border-radius: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 1rem;
  transition: color 0.2s;
  text-decoration: none !important;
}
.weekly-combinations-nav .weekly-combinations-nav-prev:hover,
.weekly-combinations-nav .weekly-combinations-nav-next:hover {
  color: #a08c7d !important;
  background: none !important;
}

@media (min-width: 992px) {
  .weekly-combinations-nav .weekly-combinations-nav-prev,
  .weekly-combinations-nav .weekly-combinations-nav-next {
    display: none !important;
  }
}

/* Search Toggle Button */
.search-toggle {
  border: none;
  background: none;
  color: #6c757d;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-toggle:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Navigation Search Bar */
#searchNav {
  padding: 1rem 0;
  background-color: #fff;
}
#searchNav .input-group {
  position: relative;
  max-width: 800px;
  margin: auto;
}
#searchNav .form-control {
  padding-right: 4rem;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  box-shadow: none;
  height: 50px;
}
#searchNav .input-group button {
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 99;
}

/* Sepet ürün tasarımı ayarları */
.cart-item .input-group {
  max-width: 120px;
}
.cart-item .quantity-input {
  width: 35px !important;
}

/* Color pill position and z-index */
.weekly-product-card .card-img-top .color-pill {
  z-index: 25 !important;
}

.relatedProductsColor {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 10;
}

.relatedProductsColor .relatedProductsColorBtn {
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  cursor: pointer;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
}

.relatedProductsColor .relatedColorDiv {
  display: flex;
  align-items: center;
}

.relatedProductsColor .relatedColorDiv .relatedColor {
  width: 13px;
  height: 13px;
  border: solid 1px #fff;
  background-color: #ffc0cb;
  border-radius: 50%;
}

.relatedProductsColor .relatedColorDiv .relatedColor:nth-child(1) {
  background-image: linear-gradient(
    to right,
    #3023ae 0%,
    #53a0fd 48%,
    #b4ec51 101%
  );
  z-index: 2;
}

.relatedProductsColor .relatedColorDiv .relatedColor:nth-child(2) {
  background-image: linear-gradient(
    to right,
    #6bceb4 0%,
    #f98cc2 48%,
    #fff781 101%
  );
  z-index: 1;
  margin-left: -6px;
}

.relatedProductsColor .productRelatedColorCount {
  font-size: 10px;
  line-height: 13px;
  color: #333;
}

.social-media-buttons {
  background-color: #fff;
  box-shadow: 0 5px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-buttons i {
  font-size: 1.2rem;
  color: #404040;
}

.social-media-buttons:hover {
  transform: translateY(-2px);
}

/* Offcanvas menu link renkleri */
.offcanvas .navbar-nav .nav-link {
  color: #495057 !important;
}
.offcanvas .navbar-nav .nav-link:hover {
  color: #9eb3a5 !important;
  background-color: transparent;
}
.offcanvas .dropdown-item {
  color: #495057 !important;
}
.offcanvas .dropdown-item:hover {
  background-color: #9eb3a5 !important;
  color: #ffffff !important;
}

.offcanvas-header {
  background-color: #9db3a5;
}

.btn-link.btn-back {
  color: #495057 !important;
  text-decoration: none !important;
}

.btn-link.btn-back:hover {
  color: #9eb3a5 !important;
}

/* Footer Accordion Styles - Mobile Only */
@media (max-width: 768px) {
  .footer .col-lg-3.col-md-6 {
    margin-bottom: 0;
    border-bottom: 1px solid #e9ecef;
  }

  .footer .col-lg-3.col-md-6:last-child {
    border-bottom: none;
  }

  .footer h6 {
    position: relative;
    cursor: pointer;
    padding: 0.2rem 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    color: #404040;
    transition: all 0.3s ease;
  }

  .footer h6::after {
    content: "+";
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    transition: transform 0.3s ease;
  }

  .footer h6.active::after {
    content: "-";
    transform: rotate(180deg);
  }

  .footer h6:hover {
    color: #9eb3a5;
  }

  .footer .collapse-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .footer .collapse-content.active {
    max-height: 500px;
  }

  .footer .collapse-content ul {
    padding-bottom: 1rem;
    margin-bottom: 0;
  }

  .footer .collapse-content ul li {
    margin-bottom: 0.5rem;
  }

  .footer .collapse-content ul li a {
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer .collapse-content ul li a:hover {
    color: #9eb3a5;
  }

  /* Newsletter ve Social Media kısmı mobilde */
  .footer .row.mt-4 {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }

  .footer .row.mt-4 .col-lg-4 {
    margin-bottom: 1.5rem;
  }

  .footer .row.mt-4 h6 {
    padding: 0;
    cursor: default;
  }

  .footer .row.mt-4 h6::after {
    display: none;
  }

  /* Footer Features Section - Mobile Layout */
  .footer-features .row {
    padding: 1rem 0;
  }

  .footer-features .feature-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
  }

  .footer-features .feature-item i {
    font-size: 2.5rem;
    color: #6b5d54;
    border: 1px solid #6b5d54;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .footer-features .feature-item .feature-content {
    flex: 1;
    padding-top: 0.5rem;
  }

  .footer-features .feature-item p {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
  }

  .footer-features .feature-item small {
    font-size: 0.8rem;
    color: #666;
  }
}

/* Mobile Weekly Combinations Styles */
@media (max-width: 767px) {
  .weekly-combinations-swiper .swiper-slide {
    width: 100%;
    max-width: 100%;
  }

  .weekly-combinations-swiper .swiper-wrapper {
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .weekly-combinations-swiper {
    overflow: visible;
  }

  .weekly-combinations-section .d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start;
  }

  .weekly-combinations-section .d-none.d-lg-block {
    display: none;
  }

  .weekly-combinations-section .weekly-combinations-swiper {
    width: 100%;
  }

  .weekly-combinations-section .weekly-product-card {
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* Mobile card image height düzenlemesi */
  .weekly-combinations-section .weekly-product-card .card-img-top {
    height: 280px !important;
    display: flex !important;
    flex-direction: row !important;
    padding: 10px !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
  }

  /* Container içindeki tüm pozisyonlu elementleri resetle */
  .weekly-combinations-section .weekly-product-card .card-img-top > img {
    position: static !important;
  }

  /* Mobile'de görselleri yan yana göster */
  .weekly-combinations-section .weekly-product-card .card-img-top img {
    flex: 1 !important;
    width: calc(50% - 5px) !important;
    height: calc(100% - 20px) !important;
    max-height: 260px !important;
    object-fit: cover !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  /* Her iki görseli de görünür yap */
  .weekly-combinations-section .weekly-product-card .product-image-main,
  .weekly-combinations-section .weekly-product-card .product-image-hover {
    opacity: 1 !important;
    position: static !important;
    max-height: 100% !important;
    width: calc(50% - 5px) !important;
    flex-shrink: 0 !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }

  /* Hover efektini mobilde iptal et */
  .weekly-combinations-section .weekly-product-card:hover .product-image-main {
    opacity: 1 !important;
    transform: none !important;
  }

  .weekly-combinations-section .weekly-product-card:hover .product-image-hover {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Mobile başlık boyutu */
  .weekly-combinations-section h2 {
    font-size: 1.5rem !important;
  }

  /* Navigation buttons mobilde gizle */
  .weekly-combinations-nav {
    display: none !important;
  }

  .weekly-combinations-section .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Mobile card body düzenlemeleri */
  .weekly-combinations-section .weekly-product-card .card-body {
    padding: 1rem 0.75rem !important;
  }

  .weekly-combinations-section .weekly-product-card .card-title {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }

  .weekly-combinations-section .weekly-product-card .price {
    font-size: 0.7rem !important;
  }

  .weekly-combinations-section .weekly-product-card .rating {
    font-size: 0.85rem !important;
  }

  /* Çok Satanlar bölümü mobil yazı boyutları */
  .best-sellers-section .weekly-product-card .card-title {
    font-size: 0.7rem !important;
    line-height: 1.2 !important;
  }

  .best-sellers-section .weekly-product-card .price {
    font-size: 0.7rem !important;
  }

  /* Badge container için mobil düzenleme - sadece img container'ının dışında */
  .weekly-combinations-section .weekly-product-card .badge-container {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  .weekly-combinations-section .weekly-product-card .badge-container .badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.4rem !important;
    pointer-events: auto !important;
  }

  /* Renk seçici butonu mobil düzenleme - sadece img container'ının dışında */
  .weekly-combinations-section .weekly-product-card .relatedProductsColor {
    position: absolute !important;
    bottom: 15px !important;
    left: 15px !important;
    z-index: 10 !important;
    pointer-events: auto !important;
  }

  .weekly-product-card .card-body {
    padding: 0;
  }
}

/* New Login Form Styles */
#divNewUyeGirisContent {
    max-width: 588px;
    margin: 90px auto;
    float: none;
}

.userDivTab {
    float: left;
    width: 100%;
}

.userDivTab ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.userDivTab ul li {
    flex: 1;
    display: flex;
}

.userDivTab ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    line-height: 36px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 2px solid #e5e5e5;
    color: #a3a3a3;
}

.userDivTab ul li.active span {
    border-color: #2c4755;
    color: #2c4755;
}

#mainHolder_divUyeGirisAlan {
    display: none;
}

#mainHolder_divHizliUyelikAlan {
    display: none;
}

#mainHolder_divUyeGirisAlan.showDivMember {
    display: block;
}

#mainHolder_divHizliUyelikAlan.showDivMember {
    display: block;
}

.displayNone {
    display: none;
}

.newUserDivRow:after {
    clear: both;
    display: table;
    content: "";
}

.newUserDivLeft, .newUserDivRight {
    width: 100%;
    float: left;
    padding: 0!important;
}

.newUserDivRight {
    float: right;
}

#divNewUyeGirisContent .uyeGirisFormDetail {
    float: left;
    width: 100%;
}

#divNewUyeGirisContent .newUserLeftBox, #divNewUyeGirisContent .newUserRightBox {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    float: left;
    width: 100%;
}

#divNewUyeGirisContent .uyeGirisFormDetailInputList {
    float: left;
    width: 100%;
    background: #fafafa;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    padding: 24px 16px;
}

#divNewUyeGirisContent .uyeGirisFormDetailButtonList {
    float: left;
    width: 100%;
}

#divNewUyeGirisContent .signSozlesmeDiv {
    float: left;
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#divNewUyeGirisContent .signSozlesmeDiv .socialUserInput {
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    flex-flow: row wrap;
}

#divNewUyeGirisContent .signSozlesmeDiv input {
    display: none;
}

#divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesme {
    float: left;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 2px solid #a8c8ed;
    border-radius: 3px;
    margin-right: 7px;
    position: relative;
}

#divNewUyeGirisContent .signSozlesmeDiv input:checked+.newSocialChkSozlesme {
    border-color: #436293;
}

#divNewUyeGirisContent .signSozlesmeDiv input:checked+.newSocialChkSozlesme:before {
    content: '✓';
    font-weight: normal;
    font-size: 17px;
    color: #436293;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesmeTranslate {
    float: left;
    font-size: 14px;
    color: #15284b;
    line-height: 1.2;
    flex: 1;
    width: 100%;
}

#divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesmeTranslate a {
    color: #2e8aff!important;
    font-size: 14px;
}

#divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesmeTranslate strong {
    font-weight: normal;
}

#divNewUyeGirisContent .forgotpasswordDiv {
    float: left;
    width: 100%;
    margin-top: 8px;
    text-align: right;
}

.newUserWrapper {
    float: left;
    width: 100%;
    position: relative;
    margin-bottom: 0;
    margin-top: 8px;
}

.newUserWrapper:after {
    clear: both;
    display: table;
    content: "";
}

.newUserWrapper input[type="password"], .newUserWrapper input[type="text"], .newUserWrapper input {
    -webkit-appearance: initial;
    float: left;
    width: 100%;
    color: #15284b;
    font-size: 14px;
    height: 52px;
    padding: 14px 14px 0;
    border-radius: 0;
    box-shadow: none;
    font-weight: normal;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #f5f5f5;
    transition: none;
}

.newUserWrapper input:focus {
    outline: 0;
    border-bottom-color: #2c4755;
}

.newUserWrapper .placeholderLabel {
    user-select: none;
    position: absolute;
    left: 14px;
    top: 15px;
    max-width: 100%;
    color: #9ca3af;
    font-size: 14px!important;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: .00937em;
    text-decoration: inherit;
    text-transform: inherit;
    transform-origin: left top;
    transition: transform .36s cubic-bezier(.4,0,.2,1), max-width .324s cubic-bezier(.4,0,.2,1);
    backface-visibility: hidden;
    pointer-events: none;
    margin: 0!important;
    padding: 0!important;
}

.newUserWrapper .placeholderLabel.active {
    max-width: 133%;
    transform: translateY(-40%) scale(.75);
    transition: transform .36s cubic-bezier(.4,0,.2,1), max-width .396s cubic-bezier(.4,0,.2,1);
    color: #2c4755;
}

.TcxPassEye {
    cursor: pointer;
}

.TcxPassEye a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.TcxPassEye a:hover {
    color: #2c4755;
}

.newUserLoginBtn {
    cursor: pointer;
    border: 0;
    border-radius: 4px;
    height: 52px;
    padding: 15px 0;
    line-height: normal;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .6px;
    width: 100%;
    display: block;
    margin: 20px 0 0 0;
    background: #2c4755;
    color: #fff;
    transition: all 0.3s ease;
}

.newUserLoginBtn:hover {
    background-color: #1e3240;
    color: #fff;
}

.userPassBtn {
    margin: 0;
    display: inline-block;
    line-height: normal;
    font-size: 14px;
    color: #f97316;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.userPassBtn:hover {
    color: #ea580c;
}

.alert.alert-danger {
    float: left;
    width: 100%;
    background-color: transparent;
    border: 0;
    color: #f00;
    font-size: 12px!important;
    font-weight: 400;
    padding: 0!important;
    margin: 5px 0 0!important;
    line-height: 15px;
}

@media (max-width: 768px) {
    #divNewUyeGirisContent {
        margin: 20px auto;
        padding: 0 10px;
    }
    
    .userDivTab ul li span {
        font-size: 14px;
    }
    
    .newUserWrapper input {
        font-size: 14px;
    }
    
    .newUserLoginBtn {
        font-size: 14px;
    }
    
    #divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesmeTranslate {
        font-size: 11px;
    }
    
    #divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesmeTranslate a {
        font-size: 11px;
    }
    
    #divNewUyeGirisContent .signSozlesmeDiv .newSocialChkSozlesme {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }
    
    #divNewUyeGirisContent .signSozlesmeDiv input:checked+.newSocialChkSozlesme:before {
        font-size: 10px;
    }
}

.why-choose-section {
  padding: 80px 0;
}

.why-choose-section .feature-item {
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.why-choose-section .feature-item:hover {
  transform: translateY(-5px);
}

.why-choose-section .feature-icon i {
  transition: all 0.3s ease;
}

.why-choose-section .feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .login-card {
    margin: 20px;
    padding: 30px 20px !important;
  }
  
  .why-choose-section {
    padding: 50px 0;
  }
  
  .why-choose-section .feature-item {
    padding: 20px 15px;
  }
}
