/* OltaStore - Modern E-commerce Styles */

:root {
  --primary-color: #dc2626;
  --primary-dark: #b91c1c;
  --primary-light: #ef4444;
  
  /* DÜZELTİLEN KISIMLAR */
  --bg-color: #f9fafb; /* Sayfa arka planı artık çok açık bir gri, beyaz kartlar üzerinde belirgin durur */
  --secondary-color: #e6e7e8; /* Butonlar ve footer için koyu gri (siyah gibi durur ama arka planda kaybolmaz) */
  --text-color: #111827; /* Genel yazılar artık koyu renk (beyaz üstünde okunur) */
  --text-light: #6b7280;
  
  --white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bebas Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.8;
  letter-spacing: 0.5px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header & Navigation */
header {
  background-color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 0;
  gap: 3rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.logo span {
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  letter-spacing: 2px;
  font-size: 2.2rem;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

.nav-links {
  color: #ffffff;
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.nav-links-main {
  display: flex;
  gap: 2rem;
  flex: 1;
}

.nav-links-icons {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-links a {
  color: #ffffff;
  font-family: 'Bebas Neue', sans-serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Icon Links */
.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s;
  position: relative;
}

.icon-link:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.icon-link svg {
  stroke-width: 2;
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.nav-links .dropdown,
.nav-links .has-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
  user-select: none;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  list-style: none;
  display: none;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.has-dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeIn 0.2s ease-in;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color);
  transition: all 0.2s;
  font-size: 1.1rem;
}

.dropdown-menu a:hover {
  background-color: var(--bg-color);
  color: var(--primary-color);
  padding-left: 2rem;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(205, 87, 87, 0.85) 100%),
              url('/images/foto1.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  opacity: 95%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Products Hero Banner */
.products-hero {
  background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.8) 100%),
              url('/images/foto1.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  opacity: 95%;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.products-hero .container {
  position: relative;
  z-index: 1;
}

.products-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

.products-hero p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  font-style: italic;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #111827;
}

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

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

/* Categories */
.categories {
  padding: 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-style: italic;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.2);
}

.category-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-style: italic;
}

.category-card p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Products Grid */
.products {
  padding: 3rem 0;
  background-color: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1rem;
}

.product-category {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  font-style: italic;
}

.product-name {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  font-style: italic;
}

.product-description {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-color);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.stock-status {
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}

.in-stock {
  background-color: #d1fae5;
  color: var(--success-color);
}

.out-of-stock {
  background-color: #fee2e2;
  color: var(--danger-color);
}

/* Cart */
.cart-page {
  padding: 3rem 0;
}

.cart-table {
  width: 100%;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cart-table th {
  background-color: var(--bg-color);
  font-weight: 600;
  color: var(--secondary-color);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.quantity-input {
  width: 60px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  text-align: center;
}

.cart-summary {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: #d1d5db;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 6px rgb(247, 247, 247);
    transition: left 0.3s ease;
    z-index: 99;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links-main {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-links-icons {
    flex-direction: row;
    margin-left: 0;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
  }

  .hero h1 {
    font-size: 2rem;
  }

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

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

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

/* Campaign Popup */
.campaign-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-in;
}

.campaign-popup-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.4s ease-out;
}

.campaign-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  line-height: 1;
  padding: 0;
}

.campaign-popup-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.campaign-popup-inner {
  text-align: center;
  color: var(--white);
}

.campaign-popup-icon {
  margin: 0 auto 1.5rem;
  width: 100px;
  height: 100px;
}

.campaign-popup-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px;
}

.campaign-popup-icon-default {
  font-size: 5rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  margin: 0 auto 1.5rem;
}

.campaign-popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.2;
}

.campaign-popup-body {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  line-height: 1.7;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .campaign-popup-content {
    padding: 2rem;
    max-width: 90%;
  }

  .campaign-popup-title {
    font-size: 2rem;
  }

  .campaign-popup-body {
    font-size: 1.1rem;
  }

  .campaign-popup-icon,
  .campaign-popup-icon-default {
    width: 80px;
    height: 80px;
  }

  .campaign-popup-icon-default {
    font-size: 4rem;
  }
}

/* Profile Dropdown */
.profile-dropdown {
  position: relative;
}

.profile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 5px;
  padding-top: 5px;
  z-index: 1000;
}

/* Invisible bridge between icon and menu */
.profile-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

.profile-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-menu li {
  list-style: none;
}

.profile-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  transition: background 0.2s ease;
  font-size: 0.95rem;
}

.profile-menu li a:hover {
  background: var(--bg-color);
}

.profile-menu .user-info {
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  border-radius: 8px 8px 0 0;
}

.profile-menu .user-name {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.profile-menu .user-rank {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}

.profile-menu .divider {
  height: 1px;
  background: var(--border-color);
  margin: 8px 0;
}

.profile-menu .logout-link {
  color: var(--danger-color);
}

.profile-menu .logout-link:hover {
  background: #fee2e2;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-menu {
    left: 0;
    right: auto;
    min-width: 200px;
  }
}

/* Auth Pages (Login/Register) */
.auth-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
}

.auth-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
}

.auth-header p {
  color: var(--text-light);
  font-size: 1rem;
}

.auth-form {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
  cursor: pointer;
}

.link-text {
  color: var(--primary-color);
  font-size: 0.9rem;
  text-decoration: none;
}

.link-text:hover {
  text-decoration: underline;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
  border: none;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-block {
  width: 100%;
  display: block;
}

.btn-google {
  width: 100%;
  background: var(--white);
  color: var(--text-color);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-google:hover {
  background: var(--bg-color);
  border-color: var(--text-light);
}

.auth-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--border-color);
}

.auth-divider span {
  background: var(--white);
  padding: 0 15px;
  position: relative;
  color: var(--text-light);
  font-size: 0.9rem;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.95rem;
}

.auth-switch a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.auth-switch a:hover {
  text-decoration: underline;
}

/* Password Strength Indicator */
.password-strength {
  margin-top: 10px;
}

.strength-bar {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.strength-fill {
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.strength-fill.strength-çok-zayıf {
  width: 20%;
  background: #ef4444;
}

.strength-fill.strength-zayıf {
  width: 40%;
  background: #f59e0b;
}

.strength-fill.strength-orta {
  width: 60%;
  background: #eab308;
}

.strength-fill.strength-iyi {
  width: 80%;
  background: #22c55e;
}

.strength-fill.strength-çok-güçlü {
  width: 100%;
  background: #10b981;
}

.strength-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.strength-errors {
  list-style: none;
  font-size: 0.8rem;
  color: var(--danger-color);
}

.strength-errors li {
  margin-bottom: 3px;
}

.strength-errors li::before {
  content: '✗ ';
  margin-right: 5px;
}

.checkbox-group {
  margin: 15px 0;
}

.checkbox-group .checkbox-label {
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.alert {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.alert-danger {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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