/* Yapım: ÖZGÜVEN BİLİŞİM TEKNOLOJİLERİ */
/* R10: OZGUVEN */
/* TÜM HAKLARI SAKLIDIR, KOPYALANMASI VE DAĞITILMASI DURUMUNDA YASAL HAKLARIMIZ DEVREYE GİRECEKTİR! */

body {
  background: #f3f4f7;
  padding-bottom: 60px;
  font-family: "Segoe UI", sans-serif;
}

.hero {
  background: url('https://qr.powershine.com.tr/images/back.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 70px 20px;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(5px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero img {
  width: 100px;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero h1 {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  margin: 0 auto;
  border-radius: 2px;
}

.categories {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 10px;
  scrollbar-width: none;
}

.categories::-webkit-scrollbar { display: none; }

.category-card {
  flex: 0 0 auto;
  background: white;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.3s;
  min-width: 100px;
  font-weight: 500;
}

.category-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
}

.category-card.active {
  border: 2px solid #ff7e5f;
  font-weight: bold;
  color: #ff7e5f;
}

.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  height: 230px;
  object-fit: cover;
  width: 100%;
}

.product-info {
  padding: 15px;
}

.product-footer {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-footer span {
  font-size: 1.1rem;
  font-weight: bold;
}

.modal-content {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
}

.modal-body h4 {
  font-weight: bold;
  color: #333;
}

.modal-body p {
  color: #555;
  font-size: 0.95rem;
}

.modal-body .price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff7e5f;
  margin-top: 15px;
}
