/**
 * Luminie - Main CSS
 * Sitenin tüm stillerini içeren merkezi dosya
 */

/* Import CSS Variables */
@import url("variables.css");

/* Blur efektlerini devre dışı bırak */
img,
.card-image,
.card-image img,
.modern-card img {
  filter: none !important;
  backdrop-filter: none !important;
}

/* Temel Reset ve Base Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== MODERN CARDS - COMPONENTS.CSS'E TAŞINDI ===== */

/* Card image stilleri components.css'e taşındı */

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.card-category {
  background: var(--gradient-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.8rem;
}

.card-date {
  font-weight: 400;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: translateY(-5px) scale(1.05);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.pricing-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Pricing Discount Styles */
.pricing-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 10;
}

.pricing-badge .badge {
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

.price-comparison {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.original-price {
  font-size: 1.5rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.discounted-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  color: var(--success-green);
  font-size: 1.1rem;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-btn.btn-primary {
  background: var(--gradient-primary);
  color: white;
}

.pricing-btn.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HERO SECTION - MODERN GRADIENT DESIGN ===== */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-content-wrapper {
  gap: 3rem;
}

.hero-text-content {
  flex: 1;
  max-width: 60%;
}

.hero-visual-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  padding: 1.5rem 0;
  flex-shrink: 0;
}

.hero-logo-wrapper {
  animation: logoFloat 6s ease-in-out infinite;
  z-index: 2;
  position: relative;
  flex: 0 0 auto;
}

.hero-image-wrapper {
  animation: logoFloat 6s ease-in-out infinite 1s;
  z-index: 1;
  position: relative;
  flex: 0 0 auto;
}

.hero-logo {
  max-width: 180px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.35));
}

.hero-image {
  max-width: 140px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-image:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.35));
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--gradient-primary);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MODERN BADGES ===== */
.modern-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}

.modern-badge {
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.modern-badge.premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.modern-badge.free {
  background: linear-gradient(135deg, #10b981, #059669);
}

.modern-badge.featured {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* ===== FAVORITE BUTTON - Enhanced Modern Design ===== */
.content-card-wrapper {
  position: relative;
}

/* Prevent content card link from interfering with favorite button */
.content-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.favorite-btn {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 44px !important;
  height: 44px !important;
  border: none !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: #64748b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 999 !important;
  backdrop-filter: blur(12px) !important;
  cursor: pointer !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06) !important;
  font-size: 20px !important;
  visibility: visible !important;
  opacity: 1 !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  pointer-events: auto !important;
}

.favorite-btn:hover {
  background: rgba(255, 255, 255, 1) !important;
  color: #dc2626 !important;
  transform: scale(1.15) !important;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.favorite-btn.favorited {
  color: #ffffff !important;
  border-color: rgba(220, 38, 38, 0.3) !important;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}
.favorite-btn .heart-icon {
    transition: color 0.2s ease;
    font-size: 18px;
    color: #64748b; /* default - gri */
}
.favorite-btn.favorited .heart-icon {
    color: #DB0E30FF; /* kırmızı */
}

.favorite-btn.favorited:hover {
  background: linear-gradient(135deg, #ffffff, #dc2626) !important;
  color: #ffffff !important;
  transform: scale(1.15) !important;
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4), 0 4px 16px rgba(0, 0, 0, 0.2) !important;
}






@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Loading state for favorite button */
.favorite-btn.loading {
  pointer-events: none !important;
  opacity: 0.8 !important;
  transform: scale(0.95) !important;
}

@keyframes heartBeat {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.2); }
    50%  { transform: scale(0.95); }
    100% { transform: scale(1); }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

/* Content card hover effect for favorite button visibility */
.content-card-wrapper:hover .favorite-btn {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1.05) !important;
}

.content-card-wrapper .favorite-btn {
  opacity: 0.9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Enhanced visibility on mobile */
@media (max-width: 768px) {
  .favorite-btn {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0aec0;
  font-size: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  /* modern-card stilleri components.css'e taşındı */

  .card-body {
    padding: 1.25rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .modern-badges {
    top: 0.75rem;
    left: 0.75rem;
  }

  .favorite-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
  }

  .pricing-card {
    margin-bottom: 1.5rem;
  }

  .pricing-card h3 {
    font-size: 1.25rem;
  }

  .pricing-card .pricing-price {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  /* modern-card stilleri components.css'e taşındı */

  .card-body {
    padding: 1rem;
  }

  .card-title {
    font-size: 1rem;
  }

  .modern-badges {
    top: 0.5rem;
    left: 0.5rem;
  }

  .favorite-btn {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
  }

  .modern-badge {
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
  }

  .pricing-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .pricing-card .pricing-price {
    font-size: 1.75rem;
  }
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.btn-primary-hero:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-hero {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
}

.btn-outline-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content Sections */
.content-section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-blue);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  border-radius: 2px;
}

/* Modern Cards - COMPONENTS.CSS'E TAŞINDI */

/* Favorite Button - Moved to main definition above */

/* Category Cards */
.category-card {
  background: white;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-card:hover::before {
  opacity: 0.05;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.category-icon {
  font-size: 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d3748;
  position: relative;
  z-index: 1;
}

.category-count {
  color: #718096;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* Pricing Section */
.pricing-section {
  background: #f8fafc;
  padding: 5rem 0;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: #718096;
  font-size: 0.9rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check-icon {
  color: #10b981;
  font-weight: 600;
}

.pricing-features .cross-icon {
  color: #ef4444;
  font-weight: 600;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-btn.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  );
  color: white;
}

.pricing-btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.pricing-btn.btn-outline {
  background: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.pricing-btn.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Current Plan Badge */
.current-plan-badge {
  background: #10b981;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column !important;
    gap: 2rem;
    text-align: center;
  }

  .hero-text-content {
    max-width: 100%;
  }

  .hero-visual-container {
    flex-direction: row;
    gap: 1.5rem;
    padding: 1.5rem 0;
    justify-content: center;
  }

  .hero-logo {
    max-width: 140px;
  }

  .hero-image {
    max-width: 110px;
    width: 110px;
    height: 110px;
  }

  .hero-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero-visual-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
  }

  .hero-logo {
    max-width: 120px;
  }

  .hero-image {
    max-width: 90px;
    width: 90px;
    height: 90px;
  }

  .hero-section {
    padding: 2rem 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .content-section {
    padding: 3rem 0;
  }

  /* modern-card stilleri components.css'e taşındı */

  .card-image-wrapper {
    height: 180px;
  }

  .category-card {
    padding: 1.5rem 1rem;
  }

  .category-icon {
    font-size: 2.5rem;
  }

  .pricing-card {
    margin-bottom: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .card-content {
    padding: 1.25rem;
  }

  .favorite-btn {
    width: 40px !important;
    height: 40px !important;
    font-size: 18px !important;
    top: 10px !important;
    right: 10px !important;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .hero-logo,
  .hero-section::before,
  .category-card,
  .pricing-card,
  .btn-hero,
  .favorite-btn {
    animation: none !important;
    transition: none !important;
  }

  .category-card:hover,
  .pricing-card:hover {
    transform: none;
  }
}

/* Loading States */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Focus States for Accessibility */
.category-card:focus,
.favorite-btn:focus,
.btn-hero:focus,
.pricing-btn:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
  .category-card,
  .pricing-card {
    border: 2px solid #000;
  }

  .card-overlay {
    background: rgba(0, 0, 0, 0.8);
  }
}

/* Lazy Loading Styles */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Performance Optimizations */
.category-card,
.pricing-card {
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Optimize animations for better performance */
@media (prefers-reduced-motion: no-preference) {
  .category-card,
  .pricing-card {
    transform: translateZ(0);
  }
}

/* Print styles */
@media print {
  .hero-section,
  .social-media-section,
  .navbar,
  .footer {
    display: none !important;
  }

  .category-card,
  .pricing-card {
    break-inside: avoid;
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* Dark mode support (if implemented) */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --border-light: #404040;
  }

  .category-card,
  .pricing-card {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-light);
  }
}

/* =================================================================== */
/* BAŞLANGIÇ: EKSİK STİLLER (KOPYALAYIP homepage.css SONUNA EKLEYİN) */
/* =================================================================== */

/* === EKSİK SOSYAL MEDYA BÖLÜMÜ STİLLERİ === */
.social-media-section {
  background-color: #ffffff; /* Açık gri bir arkaplan */
}

.social-content {
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .social-content {
    text-align: left;
    margin-bottom: 0;
  }
}

.social-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.social-description {
  font-size: 1.1rem;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media (min-width: 992px) {
  .social-stats {
    justify-content: flex-start;
  }
}

/* ===== GLASSMORPHISM STATISTICS SECTION ===== */
.stats-section {
  margin: 3rem 0;
  padding: 0 1rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.stats-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(59, 130, 246, 0.1) 100%
  );
  z-index: -1;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

/* Responsive adjustments for stats */
@media (max-width: 768px) {
  .stats-container {
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-item {
    min-width: auto;
    width: 100%;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .stats-section {
    margin: 2rem 0;
    padding: 0 0.5rem;
  }

  .stats-container {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.social-link .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.25rem;
}

.social-link .social-info {
  flex-grow: 1;
}

.social-link .social-info h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.social-link .social-info p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.social-link .social-arrow {
  font-size: 1rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.social-link:hover .social-arrow {
  color: var(--primary-blue);
}

/* Sosyal Medya Renkleri */
.social-link.facebook .social-icon {
  background: #1877f2;
}
.social-link.instagram .social-icon {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}
.social-link.twitter .social-icon {
  background: #1da1f2;
}
.social-link.youtube .social-icon {
  background: #ff0000;
}

/* === KATEGORİ VE KART ROZETLERİ İÇİN GARANTİ STİLLER === */

/* Kategori Kartları Düzeltmesi (Başlık ve sayacın görünür olması için) */
.category-card {
  padding: 2rem 1.5rem !important;
  text-align: center !important;
  background: white !important;
  border-radius: 15px !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

.category-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.category-card .category-icon {
  font-size: 3rem !important;
  margin-bottom: 1rem !important;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--primary-purple)
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.category-card .category-title {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
  color: var(--text-primary) !important; /* Rengi garantili olarak belirle */
  position: relative;
  z-index: 1;
}

.category-card .category-count {
  color: var(--text-secondary) !important; /* Rengi garantili olarak belirle */
  font-size: 0.9rem !important;
  position: relative;
  z-index: 1;
}

/* İçerik Kartı Rozetleri (Badges) İçin Eksik Stiller */
.modern-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2;
}

.modern-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
}

.modern-badge.premium {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.9),
    rgba(245, 158, 11, 0.9)
  );
}

.modern-badge.free {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.9),
    rgba(5, 150, 105, 0.9)
  );
}

.modern-badge.featured {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.9),
    rgba(124, 58, 237, 0.9)
  );
}

/* Placeholder için ek stil */
.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #adb5bd;
  font-size: 3rem;
}
/* ================================================================= */
/* BİTİŞ: EKSİK STİLLER                                              */
/* ================================================================= */

/* ============================================= */
/* NİHAİ ÇÖZÜM: MERKEZİ GRID YERLEŞİM SİSTEMİ   */
/* ============================================= */

.component-grid {
  display: grid;
  /* Bu kural sihirlidir: Ekran genişliğine göre,
       her biri en az 320px olan kaç tane kart sığarsa o kadar sütun oluşturur.
    */
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem; /* Kartlar arasındaki boşluk */
}

/* Bootstrap'in .row class'ı ile çakışmayı önlemek için
   doğrudan .row'a grid uyguluyoruz.
*/
.row.component-grid {
  display: grid;
}

/* Bootstrap .col-* sınıflarının grid yapımızı bozmamasını sağlar.
    Bu kodlar, her bir kartın grid hücresine tam oturmasını garantiler.
*/
.component-grid > [class*="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ============================================= */
/* YENİ HERO BÖLÜMÜ STİLLERİ                    */
/* ============================================= */

/* Yeni Hero Bölümü Stilleri */
.hero-section-new {
  background: #f8fafc;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.hero-text-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: #deecff;
  margin-bottom: 2.5rem;
}
.btn-hero.btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.hero-visuals {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Mobilde daha az dikkat dağıtıcı */
}
.hero-logo-new {
  position: absolute;
  top: 10%;
  left: 20%;
  max-width: 150px;
  animation: float 6s ease-in-out infinite;
}
.hero-avatar-new {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 400px;
}
@media (min-width: 992px) {
  .hero-visuals {
    opacity: 1;
  } /* Geniş ekranda net göster */
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ============================================= */
/* YENİ SOSYAL MEDYA KARTI STİLLERİ             */
/* ============================================= */

/* Compact Social Proof Card */
.social-proof-card {
  background: #82c7f5;
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 30px -10px rgba(30, 41, 59, 0.3);
}

.social-proof-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-icon-wrapper {
  font-size: 3rem;
}
.social-title {
  font-weight: 700;
  margin: 0 0 0.5rem 0;
}
.social-description {
  margin: 0;
  opacity: 0.9;
}

.btn-social-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
.btn-social-follow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.btn-social-follow i {
  margin-left: auto;
  transition: transform 0.3s ease;
}
.btn-social-follow:hover i {
  transform: translateX(5px);
}

/* ======================================================= */
/* BAŞLANGIÇ: NİHAİ main.css STİLLERİ                      */
/* ======================================================= */

/* CSS Değişkenleri */
:root {
  --primary-blue: #3b82f6;
  --primary-purple: #8b5cf6;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border-light: #e2e8f0;
}

/* Genel Sayfa ve Bölüm Stilleri */
.section-padding {
  padding: 5rem 0;
}
.section-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.btn-hero-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-hero-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.hero-visual-column {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  padding: 0;
  flex-shrink: 0;
  min-height: 150px;
}

.hero-logo,
.hero-logo-final {
  max-width: 150px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: logoFloat 6s ease-in-out infinite;
  z-index: 2;
  position: relative;
}

.hero-logo:hover,
.hero-logo-final:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.35));
}

.hero-avatar,
.hero-avatar-final {
  max-width: 120px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  animation: logoFloat 6s ease-in-out infinite 1s;
  z-index: 1;
  position: relative;
}

.hero-avatar:hover,
.hero-avatar-final:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.35));
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(-1deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.social-proof-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-icon-wrapper {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.social-title {
  font-weight: 700;
  margin: 0;
  font-size: 1.5rem;
}

.social-description {
  margin: 0.5rem 0 0 0;
  opacity: 0.8;
  max-width: 400px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.social-action {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 250px;
}

.btn-social-follow {
  background: #6366f1;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-social-follow:hover {
  background: #4f46e5;
  transform: translateY(-2px);
  color: #fff;
}

.btn-social-follow i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.btn-social-follow:hover i {
  transform: translateX(3px);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column !important;
    gap: 1.5rem;
    text-align: center;
  }

  .hero-text-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-visual-column {
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    justify-content: center;
    min-height: 120px;
  }

  .hero-logo,
  .hero-logo-final {
    max-width: 120px;
  }

  .hero-avatar,
  .hero-avatar-final {
    max-width: 100px;
  }

  .hero-section,
  .hero-section-final {
    padding: 1.5rem 0;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
  }
}

@media (max-width: 576px) {
  .hero-visual-column {
    flex-direction: row;
    gap: 0.75rem;
    padding: 0;
    min-height: 100px;
  }

  .hero-logo,
  .hero-logo-final {
    max-width: 100px;
  }

  .hero-avatar,
  .hero-avatar-final {
    max-width: 80px;
  }

  .hero-section,
  .hero-section-final {
    padding: 1rem 0;
  }

  .hero-title-final {
    font-size: 2.2rem;
  }

  .hero-subtitle-final {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Geniş Ekran Ayarları */
@media (min-width: 992px) {
  .hero-text-content {
    text-align: left;
  }
  .hero-subtitle-final {
    margin-left: 0;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-title-final {
    font-size: 3.8rem;
  }
  .social-proof-card {
    flex-direction: row;
    text-align: left;
    padding: 2rem 2.5rem;
    max-width: 700px;
  }

  .social-proof-content {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .social-action {
    margin-top: 0;
    margin-left: auto;
    width: auto;
    max-width: 200px;
  }
}

/* ======================================================= */
/* BİTİŞ: NİHAİ main.css STİLLERİ                        */
/* ======================================================= */

/* ===== SEARCH SECTIONS - Updated for consistency ===== */
/* Resources page specific styles are now in resources.css */
/* This section is kept for other pages that might use these classes */

.modern-search-section .search-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search-section .search-input-group input {
  border-radius: 12px 0 0 12px;
  border-right: none;
  padding: 0.875rem 1rem;
  font-size: 0.95rem;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.modern-search-section .search-input-group input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-search-section .search-btn {
  background: var(--primary-blue);
  color: white;
  border: 2px solid var(--primary-blue);
  border-radius: 0 12px 12px 0;
  padding: 0.875rem 1.25rem;
  transition: all 0.3s ease;
  border-left: none;
}

.modern-search-section .search-btn:hover {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
}

.modern-search-section {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 100;
}

.search-filter-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.modern-search-input {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 300px;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-secondary);
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 2.5rem;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-clear {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

/* Z-index hierarchy to fix layering issues */
.filters-section,
.modern-search-section {
  z-index: 100;
}

.content-card-wrapper,
.category-card-wrapper {
  z-index: 1;
}

.content-card-badges,
.modern-badges {
  z-index: 2;
}

.favorite-btn {
  z-index: 3;
}

/* Geniş ekran ayarları (LG ve üstü) */
@media (min-width: 992px) {
  .hero-section,
  .hero-section-final {
    padding: 4rem 0;
    min-height: 400px;
  }
  .hero-text-content {
    text-align: left; /* Geniş ekranda sola hizalı */
  }
  .hero-subtitle-final {
    margin-left: 0;
    margin-right: 0;
  }
  .hero-buttons {
    justify-content: flex-start;
  }
  .hero-title-final {
    font-size: 3.2rem;
  }
}

/* Mobil ayarları */
@media (max-width: 991px) {
  .hero-visual-column {
    display: none !important;
  }
  .hero-section,
  .hero-section-final {
    min-height: 300px;
    padding: 2.5rem 0;
  }
  .hero-title,
  .hero-title-final {
    font-size: 2.2rem;
  }
}

/* Animasyonlar */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ===== KİŞİSELLEŞTİRİLMİŞ ÖNERİLER (PERSONALIZED RECOMMENDATIONS) ===== */
.personalized-recommendations {
  background: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.07);
  margin-bottom: 2.5rem;
  padding: 2.5rem 0;
}
.recommendation-card-mini {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
  padding: 1.25rem 1rem;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  align-items: stretch;
  min-height: 120px;
}
.recommendation-card-mini:hover {
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.recommendation-image-mini {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.recommendation-image-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.placeholder-mini {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b6c3;
  font-size: 2.2rem;
  background: #f1f3f7;
  border-radius: 12px;
  border: 1.5px dashed #d1d5db;
}
.placeholder-mini i {
  font-size: 2.2rem;
  opacity: 0.7;
}
.recommendation-content-mini {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recommendation-title-mini {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.recommendation-content-mini small {
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.recommendation-content-mini .btn {
  margin-top: 0.5rem;
  font-size: 0.92rem;
  padding: 0.35rem 1.1rem;
  border-radius: 20px;
}
@media (max-width: 991px) {
  .recommendation-card-mini {
    min-height: 100px;
    padding: 1rem 0.75rem;
  }
  .recommendation-image-mini {
    width: 56px;
    height: 56px;
    margin-right: 0.75rem;
  }
}
@media (max-width: 767px) {
  .personalized-recommendations {
    border-radius: 12px;
    padding: 1.2rem 0.2rem;
  }
  .recommendation-card-mini {
    flex-direction: row;
    min-height: 90px;
    padding: 0.75rem 0.5rem;
  }
  .recommendation-image-mini {
    width: 48px;
    height: 48px;
    margin-right: 0.5rem;
  }
  .recommendation-title-mini {
    font-size: 0.98rem;
  }
}
