@charset "UTF-8";
.main-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #222;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0;
}

.back-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 18px;
}
.back-btn:hover {
  background: rgb(255, 255, 255);
  color: #222;
}

.search-container {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
}

.categories-container {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
}

.categories-toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.categories-toggle-btn:hover {
  background: rgb(255, 255, 255);
  color: #222;
  transform: scale(1.1);
}

.search-toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-toggle-btn:hover {
  background: rgb(255, 255, 255);
  color: #222;
  transform: scale(1.1);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.search-bar-centered {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  padding: 30px;
  width: 90%;
  max-width: 500px;
  animation: slideUp 0.3s ease;
}
.search-bar-centered .search-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.search-bar-centered .search-bar-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  font-family: "Titillium Web", sans-serif;
}
.search-bar-centered .search-bar-header .search-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.search-bar-centered .search-bar-header .search-close-btn:hover {
  background: #f8f9fa;
  color: #333;
}
.search-bar-centered .search-form-centered {
  display: flex;
  gap: 15px;
  align-items: center;
}
.search-bar-centered .search-form-centered .search-input-centered {
  flex: 1;
  border: 2px solid #e9ecef;
  outline: none;
  padding: 15px 20px;
  font-size: 1rem;
  border-radius: 25px;
  background: white;
  transition: all 0.3s ease;
}
.search-bar-centered .search-form-centered .search-input-centered:focus {
  border-color: #198754;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.1);
}
.search-bar-centered .search-form-centered .search-input-centered::placeholder {
  color: #999;
}
.search-bar-centered .search-form-centered .search-submit-btn-centered {
  background: #198754;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.search-bar-centered .search-form-centered .search-submit-btn-centered:hover {
  background: #157347;
  transform: scale(1.1);
}
.search-bar-centered .search-form-centered .search-submit-btn-centered i {
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.categories-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 9998;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.categories-sidebar.open {
  right: 0;
}
.categories-sidebar .sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}
.categories-sidebar .sidebar-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  font-family: "Titillium Web", sans-serif;
}
.categories-sidebar .sidebar-header .sidebar-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.categories-sidebar .sidebar-header .sidebar-close-btn:hover {
  background: #e9ecef;
  color: #333;
}
.categories-sidebar .sidebar-content {
  padding: 20px;
}
.categories-sidebar .sidebar-content .category-item {
  display: block;
  padding: 15px 20px;
  margin-bottom: 10px;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: "Titillium Web", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.categories-sidebar .sidebar-content .category-item:hover {
  background: #e9ecef;
  border-color: #198754;
  color: #198754;
  transform: translateX(5px);
}
.categories-sidebar .sidebar-content .category-item:last-child {
  margin-bottom: 0;
}
.categories-sidebar .sidebar-content .no-categories {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}
.categories-sidebar .sidebar-content .no-categories i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}
.categories-sidebar .sidebar-content .no-categories p {
  margin: 0;
  font-size: 1rem;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .search-container {
    right: 60px;
  }
  .categories-container {
    right: 15px;
  }
  .search-bar-centered {
    width: 95%;
    padding: 20px;
  }
  .search-bar-centered .search-bar-header h3 {
    font-size: 1.3rem;
  }
  .search-bar-centered .search-form-centered {
    gap: 10px;
  }
  .search-bar-centered .search-form-centered .search-input-centered {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .search-bar-centered .search-form-centered .search-submit-btn-centered {
    width: 45px;
    height: 45px;
  }
  .search-bar-centered .search-form-centered .search-submit-btn-centered i {
    font-size: 1rem;
  }
  .categories-sidebar {
    width: 100%;
    right: -100%;
  }
  .categories-sidebar .sidebar-content {
    padding: 15px;
  }
  .categories-sidebar .sidebar-content .category-item {
    padding: 12px 16px;
    font-size: 0.95rem;
  }
}
.footer {
  font-size: 13px;
  color: #888;
  text-align: center;
  padding: 32px 0 16px 0;
}

.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper.showcase-swiper {
  aspect-ratio: 16/6;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eee;
}
.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: #222;
}
.swiper-button-next:focus,
.swiper-button-prev:focus {
  outline: none;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #f8f9fa;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px;
  font-weight: bold;
}

.swiper-button-prev {
  left: 8px;
}

.swiper-button-next {
  right: 8px;
}

.swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.7);
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.category-card,
.all-category-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: box-shadow 0.2s;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.category-card:hover,
.all-category-card:hover {
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
}
.category-card img,
.all-category-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}
.category-card .cat-title,
.all-category-card .cat-title {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 10px;
}

.product-card {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.06);
  transition: box-shadow 0.2s;
  overflow: hidden;
  margin-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.1);
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}
.product-card .product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card .product-info {
  padding: 20px;
}
.product-card .product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}
.product-card .product-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}
.product-card .product-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #28a745;
}
.product-card .product-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
.product-card .product-meta {
  font-size: 0.85rem;
  color: #888;
}
.product-card .product-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 15px;
  gap: 10px;
}
.product-card .product-price-section {
  flex: 1;
}
.product-card .product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-card .add-to-cart-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
  min-width: 100px;
  justify-content: center;
  height: 35px; /* Info butonu ile aynı yükseklik */
}
.product-card .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}
.product-card .add-to-cart-btn:active {
  transform: translateY(0);
}
.product-card .add-to-cart-btn i {
  font-size: 0.9rem;
}
.product-card .add-to-cart-btn span {
  font-size: 0.75rem;
  white-space: nowrap;
}
.product-card .product-details-btn {
  background: rgba(25, 135, 84, 0.9);
  border: none;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-card .product-details-btn:hover {
  background: #198754;
  transform: scale(1.1);
}
.product-card .product-details-btn i {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .category-card,
  .all-category-card {
    min-height: 100px;
  }
  .category-card img,
  .all-category-card img {
    height: 100px;
  }
  .product-card .product-image {
    height: 150px;
  }
  .product-card .product-info {
    padding: 15px;
  }
}
.section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 32px 0 18px 0;
  color: #222;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}
.no-products h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.language-selector {
  position: relative;
  display: inline-block;
}
.language-selector .language-toggle-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.language-selector .language-toggle-btn:hover {
  background: rgb(255, 255, 255);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
.language-selector .language-toggle-btn i {
  font-size: 16px;
  color: #666;
}
.language-selector .language-toggle-btn .current-language {
  font-weight: 600;
  color: #333;
}
.language-selector .language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.language-selector .language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-selector .language-dropdown .language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-weight: 500;
}
.language-selector .language-dropdown .language-option:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #007bff;
  text-decoration: none;
}
.language-selector .language-dropdown .language-option.active {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
  font-weight: 600;
}
.language-selector .language-dropdown .language-option .flag {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .language-selector .language-toggle-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .language-selector .language-toggle-btn .current-language {
    display: none;
  }
  .language-selector .language-dropdown {
    min-width: 140px;
    right: -10px;
  }
  .language-selector .language-dropdown .language-option {
    padding: 8px 12px;
    font-size: 13px;
  }
}
.showcase-section {
  position: static;
  width: 100%;
  margin-top: 80px;
  z-index: 1;
}

.home-page .main-container {
  max-width: 900px;
  margin: 0 auto;
}
.home-page .featured-categories-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.home-page .all-categories-section {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .home-page .main-container {
    padding: 0 15px;
  }
}

.category-header-section {
  width: 100%;
  margin-top: 80px;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
  min-height: 150px;
}
.category-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.category-header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-info {
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-title {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 auto 15px auto;
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  max-width: 600px;
  display: block;
  margin-top: 15px;
  margin-bottom: 0;
}

.category-description {
  font-size: 0.8rem;
  margin: 0 auto;
  color: #f1f5f9;
  line-height: 1.6;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  max-width: 500px;
  display: block;
}

.category-page .main-container {
  max-width: 900px;
  margin: 0 auto;
}
.category-page .products-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .category-page .main-container {
    padding: 0 15px;
  }
  .category-page .category-header-section {
    margin-top: 70px;
    min-height: 150px;
  }
  .category-page .category-header-content {
    height: 150px;
  }
  .category-page .category-title {
    font-size: 2rem;
  }
  .category-page .category-description {
    font-size: 1rem;
  }
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  height: 100%;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.product-image:hover {
  opacity: 0.8;
}

.product-card a {
  display: block;
  text-decoration: none;
}

.product-info {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.product-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #1e293b;
  font-family: "Titillium Web", sans-serif;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #198754;
  font-family: "Titillium Web", sans-serif;
}

.product-price-placeholder {
  height: 1.2rem;
  font-family: "Titillium Web", sans-serif;
}

.product-details-btn {
  background: rgba(25, 135, 84, 0.9);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-details-btn:hover {
  background: #198754;
  transform: scale(1.1);
}
.product-details-btn i {
  font-size: 0.9rem;
}

.modal-content {
  border: none;
  border-radius: 16px;
  padding: 20px;
}

.modal-footer {
  border: none;
  padding: 0px;
  background: transparent;
  position: relative;
}
.modal-footer .modal-close-btn {
  background: rgb(255, 255, 255);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  top: 100%;
  margin: auto;
  float: none;
  left: 0;
  right: 0;
  margin-top: 30px;
  transition: all 0.5s ease;
}
.modal-footer .modal-close-btn i {
  color: #000;
  font-size: 14px;
}
.modal-footer .modal-close-btn:hover {
  background: rgb(255, 255, 255);
  transform: rotate(360deg);
  transition: all 0.5s ease;
}
.modal-footer .modal-close-btn:hover i {
  color: #333;
}

.modal-body {
  padding: 0px;
}

.product-modal-content {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.product-modal-image {
  flex: 0 0 300px;
}
.product-modal-image a {
  display: block;
  text-decoration: none;
}
.product-modal-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.product-modal-image img:hover {
  opacity: 0.8;
}

.product-modal-info {
  flex: 1;
}

.modal-product-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1e293b;
  font-family: "Titillium Web", sans-serif;
}

.modal-product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 15px;
  font-family: "Titillium Web", sans-serif;
}

.modal-product-description {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: "Titillium Web", sans-serif;
}

.product-details-grid {
  display: grid;
  gap: 15px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 8px;
}
.detail-item i {
  color: #198754;
  width: 16px;
}
.detail-item .detail-label {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
}
.detail-item .detail-value {
  color: #6b7280;
  font-size: 0.9rem;
}

.product-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.product-badges .badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-modal-content {
    flex-direction: column;
    gap: 20px;
  }
  .product-modal-image {
    flex: none;
  }
  .modal-product-name {
    font-size: 1.5rem;
  }
  .modal-product-price {
    font-size: 1.3rem;
  }
}
.search-header-section {
  width: 100%;
  margin-top: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  border-bottom: 1px solid #e2e8f0;
  min-height: 200px;
}
.search-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.search-header-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-info {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
}

.search-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  font-family: "Titillium Web", sans-serif;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 25px;
  margin-bottom: 15px;
}

.search-form .d-flex {
  gap: 10px;
}
.search-form .search-input {
  border: none;
  border-radius: 25px;
  padding: 15px 20px;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.search-form .search-input:focus {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-color: #667eea;
}
.search-form .search-btn {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #198754;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.search-form .search-btn:hover {
  background: #157347;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.search-form .search-btn i {
  font-size: 1.1rem;
}

.search-page .main-container {
  max-width: 900px;
  margin: 0 auto;
}
.search-page .search-results-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.search-page .results-info {
  margin-bottom: 2rem;
  padding: 15px 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #198754;
}
.search-page .results-info p {
  margin: 0;
  font-weight: 600;
  color: #198754;
  font-size: 1.1rem;
}
.search-page .no-results,
.search-page .search-intro {
  text-align: center;
  padding: 60px 20px;
}
.search-page .no-results h3,
.search-page .search-intro h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333;
}
.search-page .no-results p,
.search-page .search-intro p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .search-page .main-container {
    padding: 0 15px;
  }
  .search-page .search-header-section {
    margin-top: 70px;
    min-height: 150px;
  }
  .search-page .search-header-content {
    height: 150px;
  }
  .search-page .search-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .search-page .search-form .search-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .search-page .search-form .search-btn {
    width: 45px;
    height: 45px;
  }
  .search-page .search-form .search-btn i {
    font-size: 1rem;
  }
}

.iletisim-page {
  margin-top: 150px;
  margin-left: auto;
  margin-right: auto;
}
.iletisim-page .card {
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(30, 41, 59, 0.13), 0 1.5px 8px 0 rgba(30, 41, 59, 0.07);
  background: #fff;
}
.iletisim-page .card-body {
  padding: 2.8rem 2.2rem;
}
@media (max-width: 600px) {
  .iletisim-page .card-body {
    padding: 1.2rem !important;
  }
}
.iletisim-page .minimalist-input {
  border-radius: 18px;
  border: 1.7px solid #e5e7eb;
  background: #f9fafb;
  font-size: 1rem;
  padding: 1.05rem 1.3rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.06);
}
.iletisim-page .minimalist-input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.13);
  outline: none;
}
.iletisim-page .minimalist-btn {
  border-radius: 18px;
  background: #222;
  border: none;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(30, 41, 59, 0.13);
}
.iletisim-page .minimalist-btn:hover, .iletisim-page .minimalist-btn:focus {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18);
}
.iletisim-page h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}
.iletisim-page .alert-success {
  text-align: center;
  border-radius: 16px;
  padding: 0.7rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(39, 174, 96, 0.1);
}
@media (max-width: 600px) {
  .iletisim-page {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Uye Sayfalari - iletisim-page ile ayni tasarim dili */
.member-page {
  margin-top: 150px;
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
  padding: 0 16px 40px;
}
.member-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 32px 0 rgba(30, 41, 59, 0.13), 0 1.5px 8px 0 rgba(30, 41, 59, 0.07);
  padding: 2.8rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.member-title {
  font-family: "Titillium Web", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.5px;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #2d3748;
}
.member-page .minimalist-input {
  border-radius: 18px;
  border: 1.7px solid #e5e7eb;
  background: #f9fafb;
  font-size: 1rem;
  padding: 1.05rem 1.3rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.06);
}
.member-page .minimalist-input:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.13);
  outline: none;
}
.member-page .minimalist-btn {
  border-radius: 18px;
  background: #222;
  border: none;
  color: #fff;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(30, 41, 59, 0.13);
}
.member-page .minimalist-btn:hover, .member-page .minimalist-btn:focus {
  background: #3b82f6;
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.18);
}
@media (max-width: 600px) {
  .member-page {
    margin-top: 120px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .member-card {
    padding: 1.5rem 1.2rem;
    border-radius: 24px;
  }
  .member-title {
    font-size: 1.6rem;
  }
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  background: #fafbfc;
}

/*# sourceMappingURL=main.css.map */
