/* 
* LezzetVer Ana CSS Dosyası
* Tüm stil kodları tek bir dosyada toplanmıştır
*/
:root {
  --primary: #E24E1B; /* Turuncu-kırmızı */
  --primary-light: #f18c69; /* Açık turuncu */
  --secondary: #1D3557; /* Koyu mavi */
  --light: #F8F9FA;
  --dark: #343a40;
  --accent: #FFA62B; /* Amber */
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.7;
  font-size: 16px;
}

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

.navbar {
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(226, 78, 27, 0.12);
  transition: all 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #C73F15;
  border-color: #C73F15;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(226, 78, 27, 0.18);
}

.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(226, 78, 27, 0.12);
}

.form-control:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 0.2rem rgba(226, 78, 27, 0.15);
}

.form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-control:hover {
  border-color: #c1c9d0;
}

.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 0.95rem;
}

.card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  overflow: hidden;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Özel toggle password butonu */
.password-toggle {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #adb5bd;
  cursor: pointer;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--primary);
}

.password-field {
  position: relative;
}

.register-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 4rem 0;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(226, 78, 27, 0.2);
}

.register-title {
  font-size: 2.5rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.register-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.register-form-container {
  margin-top: -40px;
  position: relative;
}

.form-section {
  padding: 1.5rem 0;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.form-section:last-child {
  border-bottom: none;
}



.form-section-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary);
  font-size: 1.2rem;
  position: relative;
  padding-left: 0;
}

.demo-btn {
  background-color: var(--light);
  border: 1px solid #dee2e6;
  color: var(--dark);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.demo-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
}

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

footer {
  background-color: var(--secondary);
}

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

.form-section {
  animation: fadeIn 0.5s ease-in-out;
}
/* ===== GENEL STILLER ===== */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f8f9fa;
}

.navbar-brand {
  font-weight: 700;
  color: #0d6efd;
}

/* Footer Stilleri */
.footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  margin-top: 2rem;
}

/* Toast Container */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1050;
}

/* ===== LOGIN SAYFASI STILLERI ===== */
.login-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.password-container {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

/* ===== PROVIDER STILLERI ===== */
/* Status badge stilleri */
.status-badge {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pending {
  background-color: #FFF3CD;
  color: #856404;
}

.status-offered {
  background-color: #e1f5fe;
  color: #0277bd;
}

.status-confirmed, .status-active {
  background-color: #D1E7DD;
  color: #0F5132;
}

.status-completed {
  background-color: #CCE5FF;
  color: #004085;
}

.status-cancelled {
  background-color: #F8D7DA;
  color: #721C24;
}

/* Card stilleri */
.card-hover {
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Customer avatars */
.customer-avatar {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #6c757d;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TALEPLER SAYFASI STILLERI ===== */
.requests-container {
  padding: 3rem 0;
  min-height: calc(100vh - 70px - 300px);
}

.requests-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.filter-button {
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}

.filter-button:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1);
}

.filter-button.active {
  background-color: var(--bs-primary);
  color: white;
  border-color: var(--bs-primary);
}

.filter-badge {
  cursor: pointer;
  transition: all 0.2s;
}

.filter-badge:hover {
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

.filter-badge.active {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

.request-card {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.request-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
  min-width: 100px;
}

.detail-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.detail-icon i {
  color: var(--bs-primary);
}

.no-requests {
  text-align: center;
  padding: 3rem 0;
}

.no-requests-icon {
  font-size: 4rem;
  color: var(--bs-secondary);
  margin-bottom: 1rem;
}

/* Timeline stilleri */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background-color: #e9ecef;
  z-index: 1;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-badge {
  position: absolute;
  top: 0;
  left: -28px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
}

.message-bubble {
  max-width: 80%;
}

.customer-message {
  background-color: #f8f9fa;
}

/* Diğer yardımcı stiller */
.progress {
  height: 5px;
}

.fa-2x {
  font-size: 2rem;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
  .request-header {
    flex-direction: column;
  }
  
  .request-status {
    margin-top: 1rem;
  }
}

/* ===== BOOTSTRAP STYLES BAŞLANGIÇ ===== */
/* Bootstrap 5.3 ile uyumlu özel stiller - Orijinal tasarıma benzer */

:root {
  --bs-primary: #e65300;
  --bs-primary-rgb: 230, 83, 0;
  --bs-primary-dark: #cc4a00;
  --bs-primary-light: #ff8533;
  --secondary-color: #ff8533;
  --accent-color: #ffbd59;
  --light-bg: #fff9f5;
  --dark-text: #333333;
  --grey-text: #666666;
  --light-border: #e0e0e0;
}

/* Genel düzenlemeler */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
}

.btn {
  border-radius: 8px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--bs-primary-dark);
  border-color: var(--bs-primary-dark);
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #222;
}

/* Navbar stili */
.navbar {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-brand i {
  color: var(--bs-primary);
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

/* Hero bölümü */
.hero {
  background-color: #f8f9fa;
  background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                   url('https://images.unsplash.com/photo-1555244162-803834f70033?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&q=80&w=1920&h=600');
  background-position: center;
  background-size: cover;
  padding: 5rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: #232323;
  font-weight: 700;
  font-size: 2.75rem;
}

.hero-text {
  max-width: 800px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 1.2rem;
}

.input-group {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.input-group .form-control {
  border: none;
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
}

.input-group .btn {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.input-group-text {
  border: none;
}

/* Kategori kartları */
.category-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  border: none;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--bs-primary);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.category-card p {
  color: #777;
  margin-bottom: 0;
}

/* Bölüm başlıkları */
section {
  padding: 5rem 0;
}

section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-description {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #666;
  font-size: 1.1rem;
}

/* Adım kartları */
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 270px;
  margin: 0 auto;
}

.step-icon-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 90px;
  height: 90px;
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--bs-primary);
}

.step-number {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step p {
  color: #777;
}

/* Service cards */
.service-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 220px;
  overflow: hidden;
}

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

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

.service-content {
  padding: 1.75rem;
}

.service-rating {
  margin-bottom: 0.75rem;
}

.service-rating i {
  color: #ffb100;
}

.service-provider {
  font-weight: 500;
  color: #555;
  font-size: 0.95rem;
}

/* Testimonial kartları */
.testimonial-card {
  background-color: #fff;
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin: 1rem 0.5rem;
  position: relative;
  border: none;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: serif;
  color: rgba(var(--bs-primary-rgb), 0.1);
  line-height: 1;
}

.testimonial-text {
  position: relative;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  font-size: 1.05rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.testimonial-stars {
  color: #ffb100;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-author-location {
  color: #777;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background-color: #222;
  color: #999;
  padding: 4rem 0 2rem;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer-logo {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo i {
  color: var(--bs-primary);
  margin-right: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--bs-primary);
  color: #fff;
}

.footer h3 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Authentication pages */
.auth-icon {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: rgba(var(--bs-primary-rgb), 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  font-size: 2.2rem;
  color: var(--bs-primary);
}

/* Toast container */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 3.5rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  section {
    padding: 3.5rem 0;
  }
  
  section h2 {
    font-size: 1.8rem;
  }
  
  .category-card {
    padding: 1.5rem;
  }
  
  .category-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .step {
    margin-bottom: 2.5rem;
  }
}

/* Styles from token-packages.html */
.packages-container {
  padding: 2rem 0;
  background-color: var(--background-light);
  min-height: calc(100vh - 70px - 300px);
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.page-description {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

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

.package-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
  border: 2px solid transparent;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-card.popular {
  border-color: var(--primary-color);
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.package-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.package-name {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.package-price small {
  font-size: 1rem;
  color: var(--text-light);
}

.package-features {
  list-style: none;
  margin-bottom: 2rem;
}

.package-features li {
  color: var(--text-color);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.package-features i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.premium-section {
  background: white;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.premium-title {
  font-size: 1.75rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.premium-description {
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.premium-feature {
  text-align: center;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: var(--primary-color);
  font-size: 1.25rem;
}

.feature-title {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-light);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .premium-features {
    grid-template-columns: 1fr;
  }
}

/* ===== ORDER SAYFASI STILLERI ===== */
.order-container {
  max-width: 650px; /* Biraz daha geniş container */
  margin: 2rem auto;
  background-color: #f9f7ff; /* Hafif mor tonda arka plan */
  border-radius: 20px; /* Daha yuvarlak köşeler */
  box-shadow: 0 10px 30px rgba(137, 43, 226, 0.08); /* Mor tonda gölge */
  padding: 0;
  overflow: hidden;
  border: 1px solid #f0ebff;
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #8a2be2, #5d3fd3); /* Mor gradient */
  color: white;
  border-bottom: none;
}

.order-header .btn-close,
.order-header .btn-back {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.order-header .btn-close:hover,
.order-header .btn-back:hover {
  opacity: 1;
}

.order-header .step-title {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  flex-grow: 1;
  letter-spacing: 0.5px;
}

.order-progress {
  padding: 1.5rem 2rem 1rem;
  background-color: white;
}

.price-range {
  font-size: 0.9rem;
  color: #6c6c6c;
  text-align: right;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background-color: #e9ecef;
  position: relative;
  overflow: visible;
}

.progress-bar {
  background: linear-gradient(90deg, #8a2be2, #5d3fd3);
  border-radius: 4px;
  position: relative;
  transition: width 0.5s ease;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #8a2be2;
  box-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.order-step {
  display: none;
  padding: 2rem;
  background-color: white;
}

.order-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.order-step h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: #333;
  position: relative;
  padding-bottom: 12px;
}

.order-step h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #8a2be2, #5d3fd3);
}

.order-footer {
  padding: 1.5rem 2rem;
  background-color: white;
  border-top: 1px solid #f4f4f4;
}

.btn-order-continue {
  background: linear-gradient(135deg, #8a2be2, #5d3fd3);
  border: none;
  color: white;
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(93, 63, 211, 0.2);
}

.btn-order-continue:hover {
  background: linear-gradient(135deg, #7a28cc, #4d33b0);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(93, 63, 211, 0.3);
}

/* Form elemanları için özel stiller */
.form-check {
  margin-bottom: 1rem;
  padding-left: 2.2em;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.8rem 1rem 0.8rem 3rem;
}

.form-check:hover {
  background-color: #f9f7ff;
}

.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  margin-left: -2em;
  margin-top: 0.25em;
  height: 1.3em;
  width: 1.3em;
  cursor: pointer;
  border: 2px solid #ccc;
  transition: all 0.2s;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:checked {
  background-color: #8a2be2;
  border-color: #8a2be2;
  box-shadow: 0 0 0 2px rgba(138, 43, 226, 0.2);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
}

.form-check-label {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #444;
}

.form-control, .form-select {
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s;
}

.form-control:focus, 
.form-select:focus {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238a2be2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Tarih/Saat alanları için özel stiller */
.date-time-inputs {
  background-color: #f9f7ff;
  padding: 1.2rem;
  border-radius: 10px;
  margin-top: 0.75rem;
  border: 1px solid #e9e1ff;
}

/* Form için inline grup stili */
.form-check-inline-group {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}

.form-check-inline-group .form-check {
  margin-bottom: 0;
  margin-right: 1rem;
}

/* Kategori bilgi kutusu */
.category-info {
  background: linear-gradient(90deg, #f9f7ff, #f0ebff);
  padding: 0.8rem 1.2rem;
  margin: 1rem 1.5rem 0;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #8a2be2;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(138, 43, 226, 0.1);
  border-left: 3px solid #8a2be2;
}

.search-term {
  font-weight: 700;
  color: #8a2be2;
}

/* Step dots navigation */
.step-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e0e0e0;
  margin: 0 5px;
  transition: all 0.3s;
}

.step-dot.active {
  background-color: #8a2be2;
  transform: scale(1.2);
}

/* Card stili */
.card.bg-light {
  background-color: #f9f7ff !important;
  border: 1px solid #e9e1ff;
  border-radius: 12px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .order-container {
    margin: 1rem;
    border-radius: 15px;
  }
  
  .order-step {
    padding: 1.5rem;
  }
  
  .order-header,
  .order-footer {
    padding: 1rem 1.5rem;
  }
  
  .form-check {
    padding: 0.6rem 0.8rem 0.6rem 2.8rem;
  }
}

/* ===== SIPARIŞ SAYFASI TURUNCU TEMA ===== */
/* Mor renkleri kaldırmak için gerekli override'lar */
h5::after {
  background-color: var(--bs-primary) !important;
  height: 3px !important;
}

.order-step h5 {
  color: var(--dark-text) !important;
  border-color: var(--bs-primary) !important;
}

.order-step h5::after {
  background-color: var(--bs-primary) !important;
}

/* Mor tema renklerini tamamen kaldır */
.text-primary {
  color: var(--bs-primary) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.border-primary {
  border-color: var(--bs-primary) !important;
}

/* Ana Bootstrap renklerini geçersiz kıl */
.btn-primary {
  background-color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-outline-primary {
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

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

/* Odaklanmış elementlerin mor renk ring'ini kaldır */
*:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25) !important;
}

/* Progress barlarındaki mor renklerin üzerine yaz */
.progress-stacked .progress-bar {
  background-color: var(--bs-primary) !important;
}

/* Form kontrolleri için stiller */
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.form-check-input:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

.form-control:focus, 
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Adım noktaları */
.step-dot {
  background-color: #e0e0e0;
  border: 2px solid #e0e0e0;
}

.step-dot.active {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* Sipariş başlığı */
.order-header {
  background: linear-gradient(135deg, var(--bs-primary), var(--secondary-color));
  color: white;
  border-bottom: none;
}

/* İlerleme çubuğu */
.progress-bar {
  background: linear-gradient(90deg, var(--bs-primary), var(--secondary-color));
  border-radius: 4px;
  position: relative;
  transition: width 0.5s ease;
}

.progress-bar::after {
  content: '';
  position: absolute;
  right: -8px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bs-primary);
  box-shadow: 0 0 10px rgba(230, 83, 0, 0.5);
}

/* Kategori bilgi alanı */
.category-info {
  color: var(--bs-primary);
  border-left: 3px solid var(--bs-primary);
  background: linear-gradient(90deg, var(--light-bg), #fff);
}

.search-term {
  color: var(--bs-primary);
  font-weight: 600;
}

/* Butonlar */
.btn-order-continue {
  background: linear-gradient(135deg, var(--bs-primary), var(--secondary-color));
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(230, 83, 0, 0.2);
}

.btn-order-continue:hover {
  background: linear-gradient(135deg, #d64e00, #e67728);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(230, 83, 0, 0.3);
}

/* Link butonları */
.btn-link {
  color: var(--bs-primary);
}

.btn-link:hover {
  color: #d64e00;
}

/* Toastlar */
.bg-warning {
  background-color: var(--accent-color) !important;
}

.bg-success {
  background-color: #4CAF50 !important;
}

.bg-info {
  background-color: var(--secondary-color) !important;
} 

/* Custom styles for profile page */
.profile-avatar {
      width: 100px;
      height: 100px;
      overflow: hidden;
  }
  .profile-avatar i {
      font-size: 3rem; /* Larger default icon */
  }
  .avatar-upload-btn {
      width: 32px;
      height: 32px;
      padding: 0;
  }
   .nav-tabs .nav-link {
      color: var(--bs-secondary-color);
      border-bottom-width: 3px; /* Thicker bottom border */
  }
   .nav-tabs .nav-link.active {
      color: var(--bs-primary);
      border-color: var(--bs-primary) var(--bs-primary) #fff; /* Active tab border */
  }
   .list-group-item h6 {
      font-weight: 500;
  }

  .timeline {
    position: relative;
    padding-left: 2rem;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
  }
  
  .timeline-icon {
    position: absolute;
    left: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 2px solid #fd7e14;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 0.7rem;
  }
  
  .timeline-icon i {
    color: #fd7e14;
  }
  
  .badge-status {
    padding: 0.5em 1em;
    font-weight: 500;
    border-radius: 4px;
  }
  
  .badge-waiting {
    background-color: #fff3cd;
    color: #856404;
  }
  
  .request-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
  }
  
  .request-card .card-header {
    background-color: #fff;
    border-bottom: 1px solid #f1f1f1;
    padding: 1rem 1.25rem;
  }
  
  .request-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .request-info-icon {
    width: 20px;
    margin-right: 0.75rem;
    color: #fd7e14;
  }
  
  .request-info-content h6 {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
  }
  
  .request-info-content p {
    margin-bottom: 0;
    font-weight: 500;
  }
  
  .special-requests {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    font-style: italic;
    color: #495057;
  }
  
  .offer-card {
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
    background-color: #fff;
  }
  
  .offer-card:hover {
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  }
  
  .provider-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .provider-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .star-rating {
    color: #ffc107;
    font-size: 0.8rem;
  }
  
  .rating-text {
    font-size: 0.8rem;
    color: #6c757d;
    }
    
    .offer-price {
    font-weight: 700;
    color: #fd7e14;
    font-size: 1.1rem;
  }
  
  .offer-date {
    font-size: 0.75rem;
    color: #6c757d;
  }
  
  .offer-message {
    font-size: 0.9rem;
    color: #495057;
    margin-top: 0.75rem;
  }
  
  .btn-view-profile {
    font-size: 0.8rem;
  }
  
  .btn-accept-offer {
    font-size: 0.8rem;
    background-color: #fd7e14;
    border-color: #fd7e14;
  }
  
  .btn-accept-offer:hover {
    background-color: #e66a0e;
    border-color: #e66a0e;
  }

  .rd-request-details {
    padding: 0;
}

.rd-detail-item {
    margin-bottom: 1.25rem;
}

.rd-detail-item:last-child {
    margin-bottom: 0;
}

.rd-detail-question {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rd-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6b00;
    margin-right: 0.75rem;
}

.rd-question-text {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}



.rd-answer-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #495057;
    font-size: 13px;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.rd-answer-badge i {
    font-size: 12px;
    color: #6c757d;
}

.rd-answer-badge:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}



.static-suggestions {
  position: absolute;
  top: 100%; /* Position below the input group */
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem; /* Match bootstrap input radius */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-align: left;
  max-height: 300px; /* Optional: limit height and add scroll if needed */
  overflow-y: auto; /* Optional: enable scroll if content exceeds max-height */
}

.suggestion-item {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.suggestion-item.no-result {
  cursor: default;
  color: #666;
}

.suggestion-tip {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
  padding-left: 0.5rem;
  position: relative;
}

.suggestion-tip:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #999;
}

.suggestion-item.no-result:hover {
  background-color: transparent;
}

.suggestion-item.no-result h3 {
  color: #666;
  margin-bottom: 0.5rem;
}


.suggestion-item p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
}

.hero .search-container {
  position: relative; /* Allows absolute positioning for suggestions */
  max-width: 600px; /* Or match the width you prefer */
  margin-left: auto;
  margin-right: auto;
}

.static-suggestions {
  position: absolute;
  top: 100%; /* Position below the input group */
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem; /* Match bootstrap input radius */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-align: left;
  max-height: 300px; /* Optional: limit height and add scroll if needed */
  overflow-y: auto; /* Optional: enable scroll if content exceeds max-height */
}

.suggestion-item {
  display: block;
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s ease;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

.suggestion-item p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
}

/* Remove styling for the old popular search tags if they are no longer used */
.popular-searches .search-tag {
  /* display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.3rem 0.8rem;
  margin: 0.25rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  text-decoration: none; /* Added for anchor tags */
  /* transition: background-color 0.2s ease; */
}

.popular-searches .search-tag:hover {
  /* background-color: rgba(255, 255, 255, 0.4); */
}