body.no-scroll {
  overflow: hidden !important;
}

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */
:root {
  /* Primary Colors */
  --primary-purple: #7844E4;
  --primary-dark: #1E2130;
  --primary-light: #F0F1F9;
  
  /* Background Colors */
  --bg-dark: #171A26;
  --bg-dark-secondary: #1A1D2A;
  --bg-dark-tertiary: #282D40;
  --bg-card: #282C3C;
  --bg-light: #FFFFFF;
  --bg-light-alt: #f0f1f9;
  
  /* Text Colors */
  --text-primary: #33353E;
  --text-secondary: #4A4A4A;
  --text-light: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dark-muted: #666F94;
  --text-gray: #7C8499;
  --text-tab-inactive: #BEBEBE;
  --text-tab-active: #545464;
  
  /* Status Colors */
  --status-success: #34D399;
  --status-success-dark: #065F46;
  
  /* UI Colors */
  --ui-indicator: #7A2CC7;
  
  /* Social Media Brand Colors */
  --instagram: #E1306C;
  --tiktok: #3F3357;
  --twitter: #1DA1F2;
  --youtube: #E90004;
  --facebook: #4267B2;
  --spotify: #29D266;
  --whatsapp: #25D366;
  --linkedin: #0077B5;
  
  /* Dynamic Platform Color - Changes based on selected social media */
  --dynamic-platform-color: #E1306C;
  
  /* Typography */
  --font-gilroy: 'Gilroy', sans-serif;
  
  /* Font Sizes */
  --fs-hero: 42px;
  --fs-section-title: 30px;
  --fs-card-title: 18px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-xs: 12px;
  
  /* Font Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  /* Line Heights */
  --lh-tight: 1.2em;
  --lh-normal: 1.4em;
  --lh-relaxed: 1.6em;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 10px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 60px;
  --spacing-4xl: 80px;
  
  /* Section Padding */
  --section-padding: 60px;
  --section-padding-lg: 80px;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;
  
  /* Transitions */
  --transition-default: 0.3s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0px 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-button: 0px 4px 12px rgba(120, 68, 228, 0.2);
  --shadow-input-focus: 0px 0px 0px 3px rgba(120, 68, 228, 0.1);
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Dark Theme Variables */
[data-theme="dark"] {
  --bg-primary: var(--bg-dark);
  --bg-secondary: var(--bg-dark-secondary);
  --text-body: var(--text-light);
  --text-heading: var(--text-light);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-gilroy);
  background-color: var(--bg-light-alt);
  margin: 0;
  padding: 0;
}

main{
  margin-bottom: -60px;
}

/* Hide Bootstrap's default modal backdrop */
.modal-backdrop {
  display: none !important;
}

/* Custom Modal Overlay */
.modal-custom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.modal-custom-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Disable body scroll when overlay is active */
body:has(.modal-custom-overlay.active) {
  overflow: hidden !important;
  padding-right: 0 !important;
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

/* Lists */
ul, ol {
  list-style: none;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--primary-purple);
}

.top-bar-section a:hover {
  color: var(--text-light);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Buttons Reset */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}

/* Form Elements Reset */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ========================================
   TYPOGRAPHY STYLES
   ======================================== */
h1, .h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

h2, .h2 {
  font-size: var(--fs-section-title);
  font-weight: var(--fw-bold);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  margin-bottom: var(--spacing-lg);
}

h3, .h3 {
  font-size: 24px;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h4, .h4 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

h5, .h5 {
  font-size: var(--fs-card-title);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

h6, .h6 {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

p {
  margin-bottom: var(--spacing-md);
}

.lead {
  font-size: 18px;
  font-weight: var(--fw-regular);
}

.text-small {
  font-size: var(--fs-small);
}

.text-xs {
  font-size: var(--fs-xs);
}

/* Heading Utilities */
.heading-section {
  font-size: 30px;
  font-weight: 700;
  line-height: var(--lh-tight);
  text-align: center;
  max-width: 820px;
  margin: 0;
  margin-bottom: 10px;
}

/* Text Body */
.text-body {
  font-size: 16px;
  font-weight: 400;
  line-height: var(--lh-tight);
  text-align: center;
  max-width: 820px;
  margin: 0;
}

.text-body-narrow {
  max-width: 765px;
}

/* Text Colors */
.text-primary-purple {
  color: var(--primary-purple) !important;
}

.text-semibold {
  font-weight: 600;
}

.text-muted-custom {
  color: var(--text-muted) !important;
}

.text-dark-muted {
  color: var(--text-dark-muted) !important;
}

.text-light {
  color: #FFFFFF !important;
}

.text-muted {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Content Typography Utilities - Reusable across all pages */
.content-title {
  font-size: 42.5px;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.85px;
  color: #33353E;
  margin: 0;
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.content-text p {
  font-size: 18px;
  font-weight: 500;
  line-height: var(--lh-normal);
  color: #666F94;
  margin: 0;
}

/* Responsive Typography - Content Utilities */
@media (max-width: 1440px) {
  .content-title {
    font-size: 38px;
  }

  .content-text p {
    font-size: 17px;
  }
}

@media (max-width: 1024px) {
  .content-title {
    font-size: 34px;
  }

}

@media (max-width: 991px) {
  .content-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .content-title {
    font-size: 28px;
  }

  .content-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .content-title {
    font-size: 24px;
    line-height: var(--lh-tight);
  }

  .content-text p {
    font-size: 14px;
  }
}

/* ========================================
   BUTTON STYLES
   ======================================== */
.btn {
  font-weight: var(--fw-semibold);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-default);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  border: 2px solid transparent;
  cursor: pointer;
}

/* Primary Button */
.btn-primary {
  background-color: var(--primary-purple);
  color: var(--text-light);
  border-color: var(--primary-purple);
}

.btn-primary:hover {
  background-color: #6835d3;
  border-color: #6835d3;
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Outline Primary */
.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.btn-outline-primary:hover {
  background-color: var(--primary-purple);
  color: var(--text-light);
}

/* Light Button */
.btn-light {
  background-color: var(--bg-light);
  color: var(--text-primary);
  border-color: #e4e7eb;
}

.btn-light:hover {
  background-color: var(--bg-light-alt);
  border-color: #d1d5db;
}

/* Dark Button */
.btn-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background-color: var(--bg-dark-secondary);
  border-color: var(--bg-dark-secondary);
}

/* Button Sizes */
.btn-sm {
  padding: 8px 16px;
  font-size: var(--fs-small);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 18px;
}

/* Button with Icon */
.btn-icon {
  padding: 12px;
  width: 44px;
  height: 44px;
}

/* Social Media Buttons */
.btn-instagram,
.btn-tiktok,
.btn-twitter,
.btn-youtube,
.btn-facebook {
  color: var(--text-light);
}

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

.btn-instagram:hover {
  background-color: #c91e53;
  border-color: #c91e53;
}

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

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

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

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

/* Show More Button - Reusable Component */
.btn-show-more {
  width: 100%;
  background: #282D40;
  border: none;
  border-radius: 16px;
  padding: 16px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Glass shimmer effect */
.btn-show-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
  z-index: 1;
}

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

.btn-show-more:hover {
  background: #323852;
  transform: translateY(-2px);
}

.btn-show-more:active {
  transform: translateY(0);
}

.btn-show-more:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.btn-show-more.loading {
  color: transparent;
}

.btn-show-more.loading::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 2;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========================================
   RATING & BADGE COMPONENTS
   ======================================== */

/* Rating Stars Component - Reusable (for comments/reviews with background) */
.comment-card .rating-stars,
.review-card .rating-stars,
.testimonial-card .rating-stars {
  display: flex;
  align-items: center;
  gap: 1.07px;
  background: #FE500B;
  border-radius: 6.583px;
  padding: 5.27px;
  flex-shrink: 0;
  height: fit-content;
}

.comment-card .rating-stars svg,
.review-card .rating-stars svg,
.testimonial-card .rating-stars svg {
  width: 12.84px;
  height: 12.84px;
}

/* ========================================
   SPACING UTILITIES
   ======================================== */
.mb-10 {
  margin-bottom: 10px;
}

.mb-16 {
  margin-bottom: 16px;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
/* Responsive Typography */
@media (max-width: 768px) {
  .heading-section {
    font-size: 24px;
    padding: 0 16px;
  }

  .text-body {
    font-size: 14px;
    padding: 0 16px;
  }

  .text-body-narrow {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .heading-section {
    font-size: 20px;
  }

  .text-body {
    font-size: 13px;
  }
}

/* ========================================
   BADGE COMPONENTS
   ======================================== */
/* Badge Components - Reusable across all pages */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: var(--transition-default);
}

/* Badge Variants */
.badge-light {
  width: 163px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.badge-light span {
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

.badge-floating {
  animation: floatingImage 4s ease-in-out infinite;
}

/* Content Badge Components - Specific for content areas */
.content-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.content-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: #E1E9FF;
  border-radius: var(--radius-pill);
  width: fit-content;
  height: 28px;
}

.content-badge svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.content-badge span {
  font-size: 13px;
  font-weight: 500;
  line-height: var(--lh-tight);
  letter-spacing: -0.48px;
  color: rgba(51, 53, 62, 0.98);
}

.content-badge-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #E1E9FF;
  flex-shrink: 0;
}

/* Responsive Badge Components */
@media (max-width: 768px) {
  .content-badge span {
    font-size: 12px;
  }

  .content-badge-circle {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .badge-light {
    width: 140px;
    height: 34px;
  }

  .badge-light span {
    font-size: 12px;
  }

  /* Wider badge for more text */
  .ucretsiz-araclar-content .hero-badge {
    width: 150px;
  }

  .ucretsiz-araclar-content .hero-badge span {
    font-size: 13px;
  }

  .content-badge {
    padding: 5px 8px;
    height: 24px;
  }

  .content-badge svg {
    width: 12px;
    height: 12px;
  }

  .content-badge span {
    font-size: 11px;
  }

  .content-badge-circle {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   CARD STYLES
   ======================================== */
.card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition-default);
}

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

/* Dark Card */
.card-dark {
  background-color: var(--bg-card);
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-dark .card-title {
  color: var(--text-light);
}

.card-dark .card-text {
  color: var(--text-muted);
}

/* Card with Border Accent */
.card-accent {
  border-left: 4px solid var(--primary-purple);
}

.card-accent-top {
  border-top: 4px solid var(--primary-purple);
  border-left: none;
}

/* ========================================
   MÜŞTERI PANEL SECTION UTILITIES (Reusable)
   ======================================== */

.justify-between {
  justify-content: space-between;
}

/* Base Müşteri Section Wrapper - Use for any boxed section in customer panel */
.musteri-section-container {
  display: flex;
  flex-direction: column;
  padding: 0;
}

/* Müşteri Section Header - Divider style header with bottom border */
.musteri-section-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 18px 18px 0px 0px;
}

/* Müşteri Section Header Title */
.musteri-section-header-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.19em;
  color: #33353E;
  margin: 0;
}

/* Müşteri Section Content - Body area with bottom rounded corners */
.musteri-section-content {
  padding: 20px;
  background: #FFFFFF;
  border-radius: 0px 0px 18px 18px;
}

/* Müşteri Section with Full Border - Alternative style with complete border */
.musteri-section-container-bordered {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 18px;
}

.musteri-section-container-bordered .musteri-section-header {
  border-bottom: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 18px 18px 0px 0px;
}

.musteri-section-container-bordered .musteri-section-content {
  border-radius: 0px 0px 18px 18px;
}

/* Responsive Müşteri Section Utilities */
@media (max-width: 991px) {
  .musteri-section-header,
  .musteri-section-content {
    padding: 16px;
  }

  .musteri-section-header-title {
    font-size: 15px;
  }
}

/* ========================================
   FORM STYLES
   ======================================== */
.form-control,
.form-select {
  padding: 12px 16px;
  border: 1px solid #e4e7eb;
  border-radius: var(--radius-sm);
  background-color: var(--bg-light);
  color: var(--text-primary);
  transition: var(--transition-default);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-input-focus);
  outline: none;
}

/* Dark Theme Forms */
.form-control-dark {
  background-color: var(--bg-dark-tertiary);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

.form-control-dark:focus {
  background-color: var(--bg-dark-secondary);
  border-color: var(--primary-purple);
}

.form-control-dark::placeholder {
  color: var(--text-muted);
}

/* Form Labels */
.form-label {
  font-weight: var(--fw-medium);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

/* ========================================
   TAB COMPONENTS
   ======================================== */
.tabs-container {
  max-width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tabs-container-wide {
  width: 817px;
}

.tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  white-space: nowrap;
  flex-shrink: 0;
}

.tab:hover {
  background: rgba(255, 255, 255, 0.05);
}

.tab-active {
  background: #FFFFFF !important;
  color: #1E2130;
}

/* Responsive Tab Components */
@media (max-width: 768px) {
  .tabs-container {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }

  .tabs-container-wide {
    padding: 8px;
    gap: 6px;
  }

  .tab {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .tab {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */
.top-bar-section {
  background: var(--primary-purple);
  color: var(--text-light);
  font-size: var(--fs-small);
  padding: 8px 0;
}

@media (max-width: 768px) {
  .top-bar-section {
    display: none;
  }
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-light);
  font-weight: var(--fw-medium);
  opacity: 0.9;
  padding: 8px 16px;
  margin: -8px -12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-default);
}

.top-bar-link:hover {
  opacity: 1;
  transform: translateY(-1px);
  background-color: #6A33DD;
}

.top-bar-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.top-bar-icon svg {
  color: white; /* currentColor için */
}

.top-bar-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
}

/* ===========================================
   Navbar (Segmentli Menü + Sağ Butonlar)
   =========================================== */

.main-navbar-section {
  background-color: #fff;
  border-bottom: 1px solid rgba(22, 24, 35, 0.08);
  padding: 20px 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-logo {
  width: 160px;
}

/* ===========================================
   SEGMENTLİ MENÜ
   =========================================== */

.navbar-nav.menu-segmented {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(22, 24, 35, 0.08);
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.navbar-nav.menu-segmented .nav-item {
  border-right: 1px solid rgba(22, 24, 35, 0.08);
}

.navbar-nav.menu-segmented .nav-item:last-child {
  border-right: none;
}

.navbar-nav.menu-segmented .nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: 0;
  background: #fff;
  transition: all 0.25s ease;
}

.navbar-nav.menu-segmented .nav-link i {
  font-size: 18px;
  color: var(--primary-purple);
  transition: color 0.25s ease;
}

.navbar-nav.menu-segmented .nav-link:hover {
  background-color: rgba(120, 68, 228, 0.06);
  color: var(--primary-purple);
}

.navbar-nav.menu-segmented .nav-link:hover i {
  color: var(--primary-purple);
}

/* ===========================================
   SAĞ TARAFTAKİ AKSİYONLAR (Bildirim / Sepet / Giriş)
   =========================================== */

.nav-item.nav-icon-pill {
  position: relative;
}

.nav-item.nav-icon-pill .nav-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: rgba(120, 68, 228, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-purple);
  transition: background-color 0.25s ease;
}

.nav-item.nav-icon-pill .nav-link:hover {
  background-color: rgba(120, 68, 228, 0.16);
}

.nav-pill-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary-purple);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================================
   GİRİŞ YAP Butonu
   =========================================== */

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-purple);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background-color: #6835d3;
}

/* ===========================================
   RESPONSIVE
   =========================================== */

@media (max-width: 991px) {
  .navbar-nav.menu-segmented {
    flex-direction: column;
    border-radius: 8px;
  }

  .navbar-nav.menu-segmented .nav-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(22, 24, 35, 0.08);
  }

  .navbar-nav.menu-segmented .nav-link {
    padding: 10px 16px;
  }

  .nav-item.nav-icon-pill .nav-link {
    width: 38px;
    height: 38px;
  }
}


/* ========================================
   NOTIFICATIONS DROPDOWN
   ======================================== */
.notifications-wrapper {
  position: relative;
}

.notifications-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 371px;
  background: var(--bg-light);
  border: 1px solid var(--bg-light-alt);
  border-radius: 15px;
  box-shadow: 0px 5px 20px 0px rgba(47, 57, 82, 0.15);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.notifications-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 1001;
}

.notification-item {
  display: flex;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-default);
}

.notification-item:hover {
  transform: translateY(-2px);
}

.notification-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-purple);
  border-radius: 10.67px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notification-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary-purple);
  border-radius: 10.67px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1em;
  color: var(--text-primary);
  margin: 0 0 5px 0;
}

.notification-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43em;
  color: var(--text-dark-muted);
  margin: 0;
}

.notification-divider {
  height: 1px;
  background: var(--bg-light-alt);
  margin: 16px 0;
}

/* Arrow pointing up */
.notifications-dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--bg-light-alt);
}

.notifications-dropdown::after {
  content: '';
  position: absolute;
  top: -7px;
  right: 21px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid var(--bg-light);
}

/* Responsive styles */
@media (max-width: 991px) {
  .notifications-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
  }
  
  .notifications-dropdown.active {
    transform: translateY(0);
  }
  
  .notifications-dropdown::before,
  .notifications-dropdown::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .notifications-dropdown {
    padding: 20px 16px;
  }
  
  .notification-title {
    font-size: 14px;
  }
  
  .notification-text {
    font-size: 13px;
  }
}

.nav-cta {
  padding: 12px 28px;
  font-size: var(--fs-small);
  box-shadow: var(--shadow-button);
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(51, 53, 62, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Mobile Actions Container (Notification + Hamburger) */
.navbar-mobile-actions {
  display: none;
}

@media (max-width: 991px) {
  .navbar-mobile-actions {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .navbar-mobile-actions .notifications-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F5F7FD;
    border-radius: 9.6px;
    padding: 0 !important;
  }
  
  .navbar-mobile-actions .notifications-trigger .nav-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 9.6px;
  }
  
  .navbar-mobile-actions .notifications-trigger .nav-pill-icon img {
    width: 20px;
    height: 20px;
  }
  
  .navbar-mobile-actions .notifications-trigger .nav-pill-badge {
    position: absolute;
    top: 2.4px;
    right: 3.2px;
    min-width: 16px;
    height: 16px;
    padding: 0 5.6px;
    background: var(--primary-purple);
    border: 1.6px solid #F7F8FD;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gilroy);
    font-weight: 600;
    font-size: 8px;
    line-height: 1.5em;
    color: white;
  }
  
  .navbar-mobile-actions .navbar-toggler {
    width: 40px;
    height: 40px;
    background: #F5F7FD;
    border-radius: 9.6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .desktop-only {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .navbar-nav {
    gap: var(--spacing-sm);
  }
}

@media (max-width: 991px) {
  .main-navbar-section {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    padding: 10px;
  }

  .navbar-brand-text {
    display: none;
  }

  .navbar-logo {
    width: 140px;
  }

  .nav-link {
    padding: 10px 12px !important;
  }

  .nav-icon {
    background: none;
  }

  .nav-icon img {
    width: 20px;
    height: 20px;
  }

  .nav-pill-icon {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: stretch;
  }

  .top-bar-left,
  .top-bar-right {
    gap: var(--spacing-sm);
  }

  .top-bar-right {
    justify-content: space-between;
  }

  .navbar-nav {
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .nav-pill-icon {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    width: 100%;
  }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
  padding: var(--section-padding) 0;
}

.filler-section {
  height: 90vh;
  background: url('../images/paket-adimlar/filler-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-lg {
  padding: var(--section-padding-lg) 0;
}

.section-sm {
  padding: calc(var(--section-padding) / 2) 0;
}

/* Section Background Variants */
.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-muted);
}

.section-light-alt {
  background-color: var(--bg-light-alt);
}

.section-padding {
  padding: 60px 0 90px;
}

/* Responsive Section Padding */
@media (max-width: 991px) {
  .section-padding {
    padding: 48px 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 32px 0;
  }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 74px;
  background-image: url('../images/mobile-navbar.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-item svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.mobile-nav-item:active svg path {
  fill: var(--primary-purple);
}

/* Center button with raised icon */
.mobile-nav-center {
  position: relative;
  flex: 0 0 auto;
  width: 86px;
  height: 74px;
}

.mobile-nav-center-icon {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  background-color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(30, 33, 48, 0.15);
}

.mobile-nav-center-icon svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-center:active .mobile-nav-center-icon {
  transform: translateX(-50%) scale(0.95);
  background-color: var(--primary-purple);
}

/* Show on mobile only */
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }

  /* Add padding to body to prevent content from being hidden behind navbar */
  body {
    padding-bottom: 74px;
  }
}

/* Gradient Sections */
.section-gradient {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
  color: var(--text-light);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 30px; /* Exact Figma value */
  font-weight: 700; /* Exact Figma value */
  line-height: var(--lh-tight); /* Exact Figma value */
  color: #FFFFFF; /* Default for light sections */
  text-align: center;
  margin-bottom: 5px; /* Exact Figma gap */
}

.section-title-purple {
  color: var(--dynamic-platform-color);
  transition: color var(--transition-default);
}

.section-title-dark {
  color: #4C5473;
}

.section-description {
  font-size: 16px; /* Exact Figma value */
  font-weight: 400; /* Exact Figma value */
  line-height: var(--lh-tight); /* Exact Figma value */
  color: #666F94; /* Default for light sections */
  text-align: center;
  margin: 0; /* Reset default paragraph margins */
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.6);
}

.section-description-dark {
  color: #666F94;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Section Headers */
@media (max-width: 991px) {
  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-description {
    font-size: 13px;
  }
}

/* ========================================
   TOUCH DEVICE OPTIMIZATIONS
   ======================================== */
@media (hover: none) {
  .btn {
    min-height: 44px;
  }
  
  .form-control,
  .form-select {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .hover-lift:active {
    transform: translateY(-2px);
  }
  
  .hover-scale:active {
    transform: scale(1.02);
  }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

/* Hide on mobile */
@media (max-width: 767px) {
  .mobile-hidden {
    display: none !important;
  }
}

/* Hide on desktop */
@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

/* Text alignment responsive */
@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .text-left-mobile {
    text-align: left !important;
  }
}

/* Screen Reader Only - Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

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

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

/* Animation Classes */
.animate-fadeIn {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInDown {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease forwards;
}

.animate-pulse {
  animation: pulse 2s ease infinite;
}

/* ========================================
   LOADING STATES
   ======================================== */
.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;
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--bg-light-alt);
  border-top-color: var(--primary-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   HERO SECTIONS - REUSABLE UTILITIES
   ======================================== */

/* Hero Container Base */
.hero-container-base {
  background: transparent;
  padding: 20px 0;
}

/* Hero Card - Dark Style (Shared Background & Border) */
.hero-card-dark {
  background-color: #1E2130;
  background-image: url('../images/tum-hizmetler/hizmet-ara-bg.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 24px;
  border-right: 7px solid #7844E4;
  border-bottom: 7px solid #7844E4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

/* Hero Badge (Shared) */
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  animation: floatingImage 4s ease-in-out infinite;
}

.hero-badge span {
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

/* Hero Text Container (Shared) */
.hero-text-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Hero Title - Dark (Shared) */
.hero-title-dark {
  font-size: 30px;
  font-weight: 700;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* Hero Description - Dark (Shared) */
.hero-description-dark {
  font-weight: 400;
  line-height: var(--lh-tight);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin: 0;
  width: 100%;
}

/* Hero Icon Container (Shared) */
.hero-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
}

/* Hero Responsive Utilities */
@media (max-width: 1440px) {
  .hero-card-dark {
    padding-left: 100px;
    padding-right: 100px;
  }
}

@media (max-width: 1024px) {
  .hero-card-dark {
    padding-left: 60px;
    padding-right: 60px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .hero-card-dark {
    padding: 40px 20px;
    border-right: 4px solid #7844E4;
    border-bottom: 4px solid #7844E4;
    border-radius: 16px;
  }

  .hero-title-dark {
    font-size: 24px;
  }

  .hero-description-dark {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-card-dark {
    padding: 32px 16px;
    gap: 12px;
  }

  .hero-badge {
    padding: 8px 16px;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .hero-title-dark {
    font-size: 20px;
  }

  .hero-description-dark {
    font-size: 14px;
  }
}

/* ========================================
   HIZMET ARA SECTION STYLES
   ======================================== */
/* Specific padding override */
.hizmet-ara-content {
  padding: 62px 0;
}

/* Text Section specific max-width (reuse hero-text-container) */
.hizmet-ara-content .hero-text-container {
  max-width: 820px;
  padding: 0 24px;
}

/* Search Box */
.hizmet-ara-search {
  width: 689px;
  max-width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 19px;
  position: relative;
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 19px;
  flex: 1;
  height: 100%;
}

.search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.search-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  padding: 0;
  width: 100%;
  min-height: 30px;
}

.search-input::placeholder {
  color: #FFFFFF;
  opacity: 1;
}

.search-button {
  width: 80px;
  height: 38px;
  background: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #1E2130;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-button:hover {
  background: #F0F1F9;
  transform: translateY(-1px);
}

.search-button:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hizmet-ara-content {
    padding: 40px 0;
  }
  .hizmet-ara-content .hero-text-container {
    padding: 0 16px;
  }

  .hizmet-ara-search {
    width: 92%;
  }

  .search-input-wrapper {
    width: 100%;
  }

  .search-button {
    height: 44px;
  }
}

/* ========================================
   FIYAT LISTESI SECTION STYLES
   ======================================== */
/* Specific padding override */
.fiyat-listesi-content {
  padding: 62px 0;
  overflow: visible;
}

/* Text Section specific max-width (reuse hero-text-container) */
.fiyat-listesi-content .hero-text-container {
  max-width: 820px;
  padding: 0 24px;
}

/* Filter Dropdowns Container */
.fiyat-listesi-filters {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 1232px;
}

/* Dropdown Wrapper */
.fiyat-listesi-filter-dropdown {
  position: relative;
  flex: 1;
}

/* Filter Item */
.fiyat-listesi-filter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  background-blend-mode: normal, normal;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-default);
  flex: 1;
  height: 62px;
}

.fiyat-listesi-filter-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}
/* Icon */
.fiyat-listesi-filter-item svg:first-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Separator */
.fiyat-listesi-filter-separator {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  flex-shrink: 0;
}

/* Text */
.fiyat-listesi-filter-item span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--text-light);
}

/* Arrow Icon */
.fiyat-listesi-filter-arrow {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px;
  flex-shrink: 0;
  transition: var(--transition-default);
}

.fiyat-listesi-filter-item:hover .fiyat-listesi-filter-arrow {
  background: rgba(255, 255, 255, 0.15);
}

/* Dropdown Menu */
.fiyat-listesi-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fiyat-listesi-filter-dropdown.active .fiyat-listesi-dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.fiyat-listesi-filter-dropdown.active .fiyat-listesi-filter-arrow {
  transform: rotate(180deg);
}

/* Dropdown Options */
.fiyat-listesi-dropdown-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  padding: 10px 15px;
  background: #3F4154;
  border: 1px solid rgba(240, 241, 249, 0.05);
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
}

.fiyat-listesi-dropdown-option:first-child {
  border-radius: 10px 10px 0 0;
}

.fiyat-listesi-dropdown-option:last-child {
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid rgba(240, 241, 249, 0.05);
}

.fiyat-listesi-dropdown-option:not(:last-child) {
  border-bottom: 0;
}

.fiyat-listesi-dropdown-option:hover {
  background: #474A5B;
}

.fiyat-listesi-dropdown-option svg:first-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fiyat-listesi-dropdown-option span {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--text-light);
}

/* Check Icon */
.fiyat-listesi-option-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity var(--transition-default);
}

.fiyat-listesi-dropdown-option.selected .fiyat-listesi-option-check {
  opacity: 1;
}

/* Search Input */
.fiyat-listesi-filter-search {
  gap: 19px;
  flex: 1;
}

.fiyat-listesi-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--text-light);
  padding: 0;
}

.fiyat-listesi-search-input::placeholder {
  color: var(--text-light);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .fiyat-listesi-filters {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .fiyat-listesi-filters {
    flex-wrap: wrap;
  }
  
  .fiyat-listesi-filter-dropdown,
  .fiyat-listesi-filter-search {
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .fiyat-listesi-content {
    padding: 40px 0;
  }

  .fiyat-listesi-filters {
    flex-direction: column;
    gap: 12px;
  }
  
  .fiyat-listesi-filter-dropdown,
  .fiyat-listesi-filter-search {
    width: 100%;
    min-width: 100%;
  }

  .fiyat-listesi-dropdown-menu {
    top: 62px;
  }
}

@media (max-width: 480px) {
  .fiyat-listesi-content {
    padding: 32px 0;
  }

  .fiyat-listesi-filter-item {
    padding: 12px;
    gap: 12px;
  }

  .fiyat-listesi-filter-item span,
  .fiyat-listesi-search-input {
    font-size: 13px;
  }

  .fiyat-listesi-dropdown-option {
    padding: 8px 12px;
  }

  .fiyat-listesi-dropdown-option span {
    font-size: 13px;
  }
}


/* ========================================
   SEO HERO SECTION STYLES
   ======================================== */
/* Specific size and spacing */
.seo-hero-content {
  max-width: 1370px;
  margin: 0 auto;
  height: 192px;
  justify-content: center;
  padding: 36px 92px;
}

/* Icon specific size */
.seo-hero-icon {
  width: 30.77px;
  height: 35px;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .seo-hero-content {
    padding: 36px 100px;
  }
}

@media (max-width: 1024px) {
  .seo-hero-content {
    padding: 36px 60px;
    min-height: 192px;
  }
}

@media (max-width: 480px) {
  .seo-hero-icon {
    width: 24px;
    height: 28px;
  }
}

/* ========================================
   HIZMET DETAYLARI SECTION STYLES
   ======================================== */
.hizmet-detaylari-section {
  padding: 10px 0;
  padding-bottom: 80px;
}

.hizmet-contact-form-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.hizmet-form-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hizmet-form-title {
  font-size: 18px;
  font-weight: 700;
  line-height: var(--lh-tight);
  color: #33353E;
  margin: 0;
}

.hizmet-form-subtitle {
  font-size: 15px;
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #7A7F99;
  margin: 0;
}

.hizmet-contact-form {
  gap: 16px;
}

.hizmet-services-title {
  margin-top: 4px;
}

.hizmet-services-title h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: var(--lh-tight);
  color: #33353E;
  margin: 0;
}

.hizmet-services-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.hizmet-service-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 14px;
  background: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #666F94;
  cursor: pointer;
  transition: var(--transition-default);
  text-align: left;
}

.hizmet-service-pill span { flex: 1; }

.hizmet-service-pill svg {
  flex-shrink: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.hizmet-service-pill:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  transform: translateY(-1px);
}

.hizmet-service-pill.active {
  background: rgba(120, 68, 228, 0.1);
  border-color: #7844E4;
  color: #7844E4;
}

.hizmet-service-pill.active svg { opacity: 1; visibility: visible; }

.hizmet-submit-btn {
  width: 100%;
  height: 50px;
  background: #7844E4;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
}

.hizmet-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.hizmet-submit-btn:hover::before { left: 100%; }
.hizmet-submit-btn span { position: relative; z-index: 2; }
.hizmet-submit-btn:hover { background: #6835d3; transform: translateY(-2px); box-shadow: var(--shadow-button); }
.hizmet-submit-btn:active { transform: translateY(0); }

/* İletişim Form Specific Styles */
.iletisim-form-row {
  display: flex;
  gap: 16px;
}

.iletisim-form-row .auth-form-group {
  flex: 1;
}

.iletisim-textarea-wrapper {
  align-items: flex-start !important;
  min-height: 110px;
  padding: 15px !important;
}

.iletisim-textarea-wrapper .auth-input-divider {
  height: 100%;
  min-height: 20px;
}

.iletisim-textarea {
  min-height: 80px;
  resize: vertical;
}

.iletisim-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.iletisim-social-icons {
  display: flex;
  gap: 4px;
}

.iletisim-social-link {
  width: 50px;
  height: 50px;
  background: #F9FAFB;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  text-decoration: none;
}

.iletisim-social-link:hover {
  background: #FFFFFF;
  border-color: var(--primary-purple);
  transform: translateY(-2px);
}

.iletisim-social-link svg {
  width: 18px;
  height: 18px;
}

.iletisim-submit-btn {
  width: 218px;
  height: 50px;
  background: #17B976;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  flex-shrink: 0;
}

.iletisim-submit-btn:hover {
  background: #14a066;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(23, 185, 118, 0.2);
}

.iletisim-submit-btn:active {
  transform: translateY(0);
}

.iletisim-submit-btn svg {
  flex-shrink: 0;
}

.hizmet-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hizmet-content-first {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hizmet-content-second {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.hizmet-side-image-wrapper {
  flex-shrink: 0;
  width: 272.41px;
  height: 372px;
}

.hizmet-side-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hizmet-content-block-2 {
  display: flex;
  flex-direction: column;
  gap: 21px;
  flex: 1;
}

@media (max-width: 991px) {
  .hizmet-detaylari-section { padding: 40px 0; }
  .hizmet-content-second { flex-direction: column; gap: 24px; }
  .hizmet-side-image-wrapper { width: 100%; max-width: 272.41px; height: auto; }
}

@media (max-width: 768px) {
  .hizmet-contact-form-card { padding: 24px; position: relative; top: auto; }
  .auth-country-selector { justify-content: space-between; }
  .auth-input-container { width: 100%; }
  .iletisim-form-row { flex-direction: column; }
  .iletisim-form-footer { flex-direction: column-reverse; align-items: stretch; }
  .iletisim-submit-btn { width: 100%; }
  .iletisim-social-icons { justify-content: center; }
}

@media (max-width: 480px) {
  .hizmet-contact-form-card { padding: 20px; }
  .hizmet-form-title { font-size: 16px; }
  .hizmet-form-subtitle { font-size: 14px; }
  .hizmet-service-pill { font-size: 13px; padding: 12px; }
  .hizmet-services-pills { grid-template-columns: 1fr; }
  .iletisim-social-link { width: 45px; height: 45px; }
}

/* ========================================
   CLIENT LOGO CARDS - REUSABLE COMPONENT
   ======================================== */
.clients-section {
  background: transparent;
  padding: 60px 0;
}

.clients-section .section-header {
  margin-bottom: 30px;
}

/* Clients Grid - Flexbox Layout */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Client Logo Card - Reusable Component */
.client-logo-card {
  width: 300px;
  height: 110px;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  overflow: hidden;
}

.client-logo {
  width: 140px;
  height: auto;
  max-height: 53px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition-default);
}

.client-logo-card:hover {
  border-color: rgba(120, 68, 228, 0.3);
  box-shadow: 0px 4px 16px rgba(120, 68, 228, 0.1);
  transform: translateY(-2px);
}

.client-logo-card:hover .client-logo {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1440px) {


  .client-logo-card {
    width: 280px;
    height: 102px;
  }

  .client-logo {
    width: 130px;
  }
}

@media (max-width: 1200px) {
  .clients-grid {
    justify-content: center;
  }

  .client-logo-card {
    width: 280px;
  }
}

@media (max-width: 991px) {
  .clients-section {
    padding: 50px 0;
  }

  .clients-section .section-header {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 40px 0;
  }

  .clients-grid {
    gap: 12px;
  }

  .client-logo-card {
    width: calc(50% - 6px);
    height: 90px;
  }

  .client-logo {
    width: 110px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 10px;
    flex-direction: column;
  }

  .client-logo-card {
    width: 100%;
    height: 80px;
  }

  .client-logo {
    width: 100px;
  }
}

/* ========================================
   KATEGORI HEADER SECTION STYLES
   ======================================== */
.kategori-header-section {
  background: transparent;
  padding: 40px 0;
  padding-bottom: 0;
}

.kategori-header-content {
  background-color: #1E2130;
  background-image: url('../images/tum-hizmetler/hizmet-ara-bg.png');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 24px;
  border-right: 7px solid #7844E4;
  border-bottom: 7px solid #7844E4;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.kategori-tabs-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.kategori-tabs-container {
  max-width: 100%;
  height: 62px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kategori-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2857142857142858em;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.kategori-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.kategori-tab-active {
  background: #FFFFFF !important;
  color: #1E2130;
}

.kategori-tab-active:hover {
  color: #1E2130;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .kategori-header-content {
    padding: 40px 20px;
    border-right: 4px solid #7844E4;
    border-bottom: 4px solid #7844E4;
  }

  .kategori-tabs-container {
    width: 100%;
    height: auto;
    flex-wrap: wrap;
    padding: 12px;
    gap: 8px;
  }

  .kategori-tab {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 480px) {
  .kategori-tab {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* ========================================
   PAKETLER SECTION STYLES
   ======================================== */
.paketler-section {
  background: transparent;
  padding: 30px 0;
}

.paketler-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

/* Left Sidebar (Sticky) */
.paketler-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.paket-info-card {
  width: 320px;
  background: #FFFFFF;
  border: 1px solid #EAEAED;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paket-info-image {
  width: 280px;
  height: 325px;
  border-radius: 20px;
  object-fit: cover;
}

.paket-info-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paket-info-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22em;
  color: #33353E;
  margin: 0;
}

.paket-info-description {
  font-weight: 500;
  line-height: 1.375em;
  color: #666F94;
  margin: 0;
}

.paket-users-card {
  background: #F6F7FB;
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.paket-users-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2em;
  color: #666F94;
  text-align: center;
  margin: 0;
}

.paket-users-avatars {
  display: flex;
  align-items: center;
  gap: -12px;
  margin-left: -12px;
}

.paket-users-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  margin-left: -12px;
}

/* Right Content Area */
.paketler-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Package Type Tabs (Standart/Premium) */
.paket-type-tabs {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 390px;
  height: 64px;
}

.paket-type-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #EAEAED;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.19em;
  cursor: pointer;
  transition: var(--transition-default);
  padding: 20px;
}

.paket-type-tab svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-default);
}

.paket-type-tab:hover {
  opacity: 0.9;
}

/* Tab content wrapper */
.paket-type-tab-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Selected icon - hidden by default */
.paket-type-tab-selected-icon {
  opacity: 0;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: opacity var(--transition-default);
}

/* Show selected icon when tab is active */
.paket-type-tab-active .paket-type-tab-selected-icon {
  opacity: 1;
}

/* Standart tab - always white */
.paket-type-tab[data-type="standart"] {
  background: #FFFFFF;
  color: #666F94;
}

.paket-type-tab[data-type="standart"] svg {
  color: #666F94;
}

/* Premium tab - always blue gradient */
.paket-type-tab[data-type="premium"] {
  background: linear-gradient(103.16deg, #296FF9 0%, #59CEFC 100%);
  border: none;
  border-bottom: 0;
  color: #FFFFFF;
}

.paket-type-tab[data-type="premium"] svg {
  color: #FFFFFF;
}

/* Premium tab active state - add shimmer border effect */
.paket-type-tab[data-type="premium"].paket-type-tab-active {
  background: linear-gradient(103.16deg, #296FF9 0%, #59CEFC 100%);
  border: 1px solid #3D96FA;
  border-bottom: 0;
  box-shadow: 0px 0px 10px rgba(69, 166, 251, 0.5);
}

/* Selection Card */
.paket-selection-card {
  background: #FFFFFF;
  border: 2px solid #EAEAED;
  border-top: none;
  border-radius: 0 20px 20px 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Selection Header */
.paket-selection-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.paket-selection-title-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 257.61px;
}

.paket-selection-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.21em;
  color: #33353E;
  margin: 0;
}

.paket-selection-subtitle {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18em;
  color: #7A7F99;
  margin: 0;
}

/* Feature Badges */
.paket-features {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.paket-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.paket-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.paket-feature span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.29em;
  color: #666F94;
  white-space: nowrap;
}

.paket-feature-divider {
  width: 1px;
  height: 10px;
  background: rgba(102, 111, 148, 0.3);
}

/* Package Options Grid */
.paket-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paket-options-row {
  display: flex;
  gap: 10px;
}

.paket-option {
  flex: 1;
  height: 84px;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
}

/* Hover - default (Standart - Purple) */
.paket-option:hover {
  border-color: #7844E4;
  background: rgba(120, 68, 228, 0.02);
}

/* Hover - Premium (Blue) */
.paket-type-premium .paket-option:hover {
  border-color: #296FF9;
  background: rgba(41, 111, 249, 0.02);
}

/* Active package - default (Standart - Purple) */
.paket-option-active {
  background: rgba(120, 68, 228, 0.2);
  border: 2px solid #7844E4;
}

.paket-option-active .paket-option-amount,
.paket-option-active .paket-option-type {
  color: #7844E4;
}

.paket-option-active::after {
  content: '';
  position: absolute;
  top: 31px;
  right: 22px;
  width: 22px;
  height: 22px;
  background-image: url("../vectors/icon-selected.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Active package - Premium (Blue) */
.paket-type-premium .paket-option-active {
  background: rgba(41, 111, 249, 0.2);
  border: 2px solid #296FF9;
}

.paket-type-premium .paket-option-active .paket-option-amount,
.paket-type-premium .paket-option-active .paket-option-type {
  color: #296FF9;
}

.paket-type-premium .paket-option-active::after {
  background-image: url("../vectors/icon-selected-blue.svg");
}

.paket-option-featured {
  display: none;
}

.paket-option-custom {
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInScale 0.3s ease forwards;
  background: linear-gradient(135deg, rgba(120, 68, 228, 0.1) 0%, rgba(120, 68, 228, 0.05) 100%);
  border: 2px solid #7844E4;
}

.paket-option-custom .paket-option-amount::after {
  content: ' (Özel)';
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-left: 4px;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.paket-option-amount {
  font-size: 20px;
  font-weight: 700;
  line-height: 1em;
  color: #33353E;
  margin: 0;
}

.paket-option-type {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.33em;
  color: #666F94;
  opacity: 0.8;
  margin: 0;
}

/* Bottom Bar */
.paket-bottom-bar {
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.paket-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paket-icon-wrapper {
  width: 54px;
  height: 54px;
  background: #7844E4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-default);
}

.paket-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Premium type - blue icon wrapper */
.paket-type-premium .paket-icon-wrapper {
  background: #296FF9;
}

.paket-quantity-control {
  background: #FFFFFF;
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.paket-qty-btn {
  width: 34px;
  height: 34px;
  background: #EFF1F4;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  flex-shrink: 0;
}

.paket-qty-btn:hover {
  background: #E0E2E9;
}

.paket-qty-btn:active {
  transform: scale(0.95);
}

.paket-qty-btn svg {
  width: 16px;
  height: 16px;
}

.paket-qty-input {
  width: 68px;
  height: 18px;
  background: transparent;
  border: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1em;
  color: #33353E;
  text-align: center;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.paket-qty-input::-webkit-outer-spin-button,
.paket-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.paket-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paket-selected-price {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.725em;
  color: #666F94;
  text-align: right;
  width: 80px;
}

.paket-add-to-cart {
  width: 164px;
  height: 50px;
  background: #FF5601;
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-default);
}

.paket-add-to-cart:hover {
  background: #E64D01;
  transform: translateY(-2px);
}

.paket-add-to-cart svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.paket-add-to-cart span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.19em;
  color: #FFFFFF;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .paketler-grid {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }

  .paketler-sidebar,
  .paket-info-card,
  .paket-users-card {
    width: 280px;
  }

  .paket-info-image {
    width: 240px;
    height: 280px;
  }
}

@media (max-width: 991px) {
  .paketler-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .paketler-sidebar {
    position: relative;
    top: 0;
    flex-direction: row;
    width: 100%;
  }

  .paketler-sidebar,
  .paket-info-card,
  .paket-users-card {
    width: 100%;
  }

  .paket-info-image {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .paketler-section {
    padding: 20px 0 60px 0;
  }

  .paketler-sidebar {
    flex-direction: column;
  }

  .paket-selection-card {
    padding: 20px;
  }

  .paket-type-tabs {
    width: 100%;
  }

  .paket-features {
    gap: 12px;
  }

  .paket-feature span {
    font-size: 13px;
  }

  .paket-options-row {
    flex-wrap: wrap;
  }

  .paket-option {
    min-width: calc(50% - 5px);
  }

  .paket-bottom-bar {
    flex-direction: column;
    gap: 16px;
  }

  .paket-bottom-left {
    width: 100%;
  }

  .paket-quantity-control {
    flex: 1;
  }

  .paket-bottom-right {
    width: 100%;
    justify-content: space-between;
  }

  .paket-add-to-cart {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .paket-type-tab {
    padding: 16px;
  }

  .paket-type-tab svg {
    width: 20px;
    height: 20px;
  }

  .paket-selection-card {
    padding: 16px;
  }

  .paket-option {
    min-width: 100%;
  }

  .paket-users-avatars img {
    width: 32px;
    height: 32px;
  }
}

/* ========================================
   ÜCRETSİZ ARAÇLAR HEADER SECTION STYLES
   ======================================== */
/* Specific padding override for ucretsiz-araclar-content */
.ucretsiz-araclar-content {
  padding: 60px 0;
}

/* ========================================
   PLATFORM SERVICES SECTION STYLES
   ======================================== */
.platform-services-section {
  background: transparent;
  padding: 0 0 90px 0;
}

.platform-services-grid {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: 10px;
  justify-content: center;
}

/* Platform Card Base Styles */
.platform-card {
  width: 208px;
  height: 90px;
  text-decoration: none;
  display: block;
}

.platform-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s;
  z-index: 1;
  pointer-events: none;
}

.platform-card:hover .platform-card-inner::before {
  left: 100%;
}

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

.platform-card-text {
  position: absolute;
  left: 20px;
  top: 27px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 2;
}

.platform-name {
  font-size: 18px;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

.platform-service {
  font-weight: 400;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

.platform-card-icon-wrapper {
  position: absolute;
  right: 17px;
  top: 17px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 26px;
  z-index: 2;
}

.threads-icon {
  font-size: 26px;
  font-weight: 900;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

/* Platform-Specific Background Colors */
.platform-card-instagram {
  background-color: #e1306c;
}

.platform-card-facebook {
  background-color: #1873eb;
}

.platform-card-twitter {
  background-color: #1da1f2;
}

.platform-card-tiktok {
  background-color: #101626;
}

.platform-card-youtube {
  background-color: #ff0000;
}

.platform-card-clubhouse {
  background-color: #6515dd;
}

.platform-card-soundcloud {
  background-color: #f97637;
}

.platform-card-tumblr {
  background-color: #1b3561;
}

.platform-card-pinterest {
  background-color: #c11f26;
}

.platform-card-spotify {
  background-color: #22974c;
}

.platform-card-vimeo {
  background-color: #00a9e9;
}

.platform-card-twitch {
  background-color: #8d45f8;
}

.platform-card-periscope {
  background-color: #3fa1c0;
}

.platform-card-linkedin {
  background-color: #026fac;
}

.platform-card-telegram {
  background-color: #34a6d8;
}

.platform-card-reddit {
  background-color: #ff4500;
}

.platform-card-dailymotion {
  background-color: #2A62AA;
}

.platform-card-dlive {
  background-color: #d3af03;
}

.platform-card-google {
  background-color: #4285F4;
}

.platform-card-netflix {
  background-color: #E50914;
}

.platform-card-nonolive {
  background-color: #ee2929;
}

.platform-card-pubg {
  background-color: #DE8D00;
}

.platform-card-seo {
  background-color: #3e6acd;
}

.platform-card-tinder {
  background-color: #fe3c72;
}

.platform-card-trovo {
  background-color: #1bab78;
}

.platform-card-app-store {
  background-color: #1c6ee9;
}

.platform-card-onlyfans {
  background-color: #00aff0;
}

.platform-card-likee-app {
  background-color: #ff2474;
}

.platform-card-snapchat {
  background-color: #bfad14;
}

.platform-card-discord {
  background-color: #5865F2;
}

.platform-card-kwai {
  background-color: #ff6100;
}

.platform-card-shazam {
  background-color: #0088ff;
}

.platform-card-opensea {
  background-color: #2081E2;
}

.platform-card-trendyol {
  background-color: #ff7f00;
}

.platform-card-dolap {
  background-color: #25d6a2;
}

.platform-card-gardrops {
  background-color: #ff0073;
}

.platform-card-quora {
  background-color: #a82400;
}

.platform-card-threads {
  background-color: #000000;
}

.platform-card-tripadvisor {
  background-color: #00AF87;
}

.platform-card-trustpilot {
  background-color: #72b043;
}

.platform-card-kick {
  background-color: #20ca21;
}

.platform-card-x {
  background-color: #000;
}

.platform-card-whatsapp {
  background-color: #4dc247;
}
/* Responsive Design */
@media (max-width: 1440px) {
  .platform-services-grid {
    grid-template-columns: repeat(5, 208px);
  }
}

@media (max-width: 1200px) {
  .platform-services-grid {
    grid-template-columns: repeat(4, 208px);
  }
}

@media (max-width: 992px) {
  .platform-services-grid {
    grid-template-columns: repeat(3, 208px);
  }
}

@media (max-width: 768px) {
  .platform-services-section {
    padding: 0 0 40px 0;
  }

  .platform-services-grid {
    grid-template-columns: repeat(2, 208px);
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .platform-services-grid {
    grid-template-columns: repeat(2, minmax(160px, 208px));
    gap: 10px;
  }

  .platform-card {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .platform-services-grid {
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
  }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

/* Footer Main Container */
.footer-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  position: relative;
}

/* Contact Bar (Purple Background) - Positioned Above Footer */
.footer-contact-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 1320px;
  max-width: calc(100vw - 70px);
  height: 102px;
  background-color: var(--primary-purple);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
}

.footer-contact-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact-content .footer-contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .footer-contact-content .footer-contact-icon {
    display: none;
  }
}

.footer-contact-content .footer-contact-icon img {
  width: 24px;
  height: 24px;
  filter: none;
}

.footer-contact-title {
  font-size: 22px;
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--text-light);
  margin: 0;
}

.footer-contact-subtitle {
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: 25px;
  letter-spacing: 0%;
  vertical-align: middle;
}

.footer-contact-title-span{
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
}

.footer-contact-buttons {
  display: flex;
  gap: 7px;
}

.footer-contact-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 46px;
  padding: 0 26px;
  background-color: rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: var(--fw-regular);
  line-height: var(--lh-tight);
  transition: var(--transition-default);
}

.footer-contact-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.footer-contact-icon {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-icon img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
}

/* Main Footer Content */
.footer-main {
  background-color: #1A1D2A;
  border-top: 4px solid var(--primary-purple);
  padding: 102px 0 0 0;
  margin-top: 56px;
}

/* Navigation Tabs */
.footer-nav-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
  padding: 10px;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 630px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav-tab {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-card);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-nav-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s;
}

.footer-nav-tab:hover::before {
  left: 100%;
}

.footer-nav-tab-active {
  background-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(120, 68, 228, 0.3);
  transform: translateY(-1px);
}

.footer-nav-tab-active::before {
  display: none;
}

.footer-nav-tab span {
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--text-light);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer-nav-tab:hover:not(.footer-nav-tab-active) {
  background-color: #363B4F;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-nav-tab:active {
  transform: translateY(0);
}

/* Links Section */
.footer-links-section {
  margin-bottom: 40px;
  position: relative;
  min-height: 180px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 10px 10px;
  max-width: 1370px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  position: absolute;
  width: 100%;
  left: 0;
  height: 0;
  overflow: hidden;
}

.footer-links-grid.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
  height: auto;
  overflow: visible;
}

.footer-link-item {
  height: 49px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: #282D40;
  border-left: 5px solid var(--primary-purple);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateX(0);
}

.footer-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5px;
  width: 0;
  height: 100%;
  background-color: var(--primary-purple);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.footer-link-item:hover::before {
  width: calc(100% + 5px);
}

.footer-link-item:hover {
  background-color: #363B4F;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(120, 68, 228, 0.2);
}

.footer-link-item:active {
  transform: translateX(1px);
}

.footer-link-item .footer-link-icon {
  color: var(--text-light);
  margin-right: 10px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.footer-link-item span {
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  color: #E8E8F3;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.footer-link-item:hover .footer-link-icon {
  transform: translateX(2px);
}

.footer-link-item:hover span {
  color: var(--text-light);
  transform: translateX(2px);
}

/* Footer Link Animation States */
.footer-links-grid.active .footer-link-item {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.footer-links-grid.active.animating .footer-link-item {
  opacity: 0;
  transform: translateY(20px) translateX(-10px);
}

.footer-links-grid.active.animating .footer-link-item.footer-link-animating {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

/* Bottom Section - Payment & App Store */
.footer-bottom-section {
  margin-bottom: 40px;
}

.footer-payment-methods {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1370px;
  margin: 0 auto;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 7.848px;
}

.payment-logo {
  height: 22.94px;
  display: flex;
  align-items: center;
}

.payment-logo svg {
  height: 100%;
  width: auto;
}

.app-store-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-badge {
  width: 135px;
  height: 43px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  background-color: #282D40;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-default);
}

.app-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-badge-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.app-badge-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 8px;
  font-weight: 500;
  color: #333333;
  margin: 0;
}

.app-badge-title {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #333333;
  margin: 0;
}

/* Footer Copyright */
.footer-copyright {
  background-color: var(--bg-dark);
  padding: 20px 0;
  border-top: 2px solid var(--bg-card);
}

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

.footer-copyright-text p {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--text-light);
  margin: 0;
  max-width: 567px;
}

@media screen and (max-width: 768px) {
  .footer-copyright-text p {
    text-align: left;
    font-size: 10px;
    line-height: 16px;
  }
}

.footer-social-icons {
  display: flex;
  gap: 14px;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3F3F50;
  border-radius: 5px;
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-default);
}

.footer-social-icon:hover {
  background-color: #4A4A62;
  color: var(--text-light);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1439px) {
  .footer-contact-bar {
    width: 95%;
    max-width: 1200px;
  }
}

@media (max-width: 1199px) {
  .footer-nav-tabs {
    max-width: 90%;
  }
  
  .footer-payment-methods {
    flex-direction: row;
    gap: 30px;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  
  .footer-links-section {
    min-height: 240px;
  }
}

@media (max-width: 991px) {
  .footer-contact-bar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    height: auto;
    padding: 20px;
    border-radius: 12px;
    flex-direction: row;
    gap: 20px;
    text-align: center;
  }
  .footer-payment-methods {
    flex-direction: column;
    gap: 30px;
  }
  .footer-main {
    margin-top: 90px;
    padding-top: 90px;
  }
  
  .footer-contact-title {
    font-size: 20px;
    text-align: start;
  }
  
  .footer-nav-tabs {
    max-width: 100%;
    margin-bottom: 15px;
  }
  
  .footer-nav-tab {
    flex: 1;
  }
  
  .footer-nav-tab:nth-child(2) {
    flex: 1.5;
  }
  
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  
  .footer-links-section {
    min-height: 360px;
  }
  
  .footer-payment-methods {
    gap: 25px;
  }
  
  .app-store-badges {
    gap: 8px;
  }
  
  .footer-copyright-wrapper {
    gap: 5px;
  }
  
  .footer-copyright-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-contact-bar {
    width: calc(100% - 30px);
    max-width: calc(100% - 30px);
    padding: 20px;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  
  .footer-contact-btn {
    padding: 0 20px;
    font-size: 14px;
  }
  
  .footer-nav-tab span {
    font-size: 14px;
  }
  
  .footer-link-item {
    padding: 0 15px;
  }
  
  .footer-link-item span {
    font-size: 14px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(12, 1fr);
  }
  
  .payment-logos {
    gap: 5px;
    justify-content: center;
  }
  
  .app-badge {
    width: 120px;
    height: 38px;
    padding: 0 12px;
  }
  
  .footer-social-icons {
    gap: 10px;
  }
  
  .footer-social-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    margin-top: 120px;
  }
  .footer-contact-title {
    font-size: 18px;
  }
  
  .footer-contact-buttons {
    width: 100%;
    gap: 10px;
  }
  
  .footer-contact-btn {
    width: 100%;
    justify-content: center;
  }
  
  .app-badge {
    width: 140px;
  }
}


/*===================================
   AUTH MODAL STYLES (CONSOLIDATED SIGN IN / SIGN UP)
   ======================================== */

/* Modal Dialog */
.auth-modal-dialog {
  max-width: 1108px;
}

/* Modal Content */
.auth-modal-content {
  border: none;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: transparent;
}

/* Modal Close Button */
.auth-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  opacity: 1;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.auth-modal-close:hover {
  opacity: 0.7;
}

.auth-modal-close svg {
  display: block;
}

/* Modal Body */
.auth-modal-body {
  padding: 0;
}

.auth-modal-body .row {
  gap: 20px;
}

/* Left Side - Image */
.auth-modal-left {
  position: relative;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

.auth-image-container {
  position: relative;
  width: 100%;
  height: 677px;
  border-radius: 30px;
  overflow: hidden;
}

/* Different heights for signin vs signup */
.auth-modal-wrapper[data-auth-mode="signin"] .auth-image-container {
  height: 544px;
}

.auth-modal-wrapper[data-auth-mode="signup"] .auth-image-container {
  height: 755px;
}

.auth-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

/* Toggle image visibility based on modal mode */
.auth-modal-wrapper[data-auth-mode="signin"] .auth-image-signin {
  opacity: 1;
  display: block;
}

.auth-modal-wrapper[data-auth-mode="signin"] .auth-image-signup {
  opacity: 0;
  display: none;
}

.auth-modal-wrapper[data-auth-mode="signup"] .auth-image-signin {
  opacity: 0;
  display: none;
}

.auth-modal-wrapper[data-auth-mode="signup"] .auth-image-signup {
  opacity: 1;
  display: block;
}
.auth-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 85px;
  padding-bottom: 30px;
}
/* Different gradients for signin vs signup */
.auth-modal-wrapper[data-auth-mode="signin"] .auth-image-overlay {
  background: linear-gradient(180deg, rgba(255, 86, 1, 0) 42%, rgba(255, 86, 1, 1) 88%);
}
.auth-modal-wrapper[data-auth-mode="signup"] .auth-image-overlay {
  background: linear-gradient(180deg, rgba(120, 68, 228, 0) 42%, rgba(120, 68, 228, 1) 88%);
}

.auth-image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.auth-logo {
  width: 30.77px;
  height: 35px;
}

.auth-logo svg {
  width: 100%;
  height: 100%;
}

.auth-image-title {
  font-weight: 700;
  font-size: 30px;
  line-height: var(--lh-normal);
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.auth-image-description {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--lh-normal);
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

.auth-video-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-default);
}

.auth-video-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.auth-video-btn span {
  font-weight: 500;
  font-size: 17px;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

/* Right Side - Form */
.auth-modal-right {
  background: #FFFFFF;
  border-radius: 30px;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}

/* Form Containers */
.auth-form-container {
  display: flex;
  flex-direction: column;
}

.signin-form-container {
  padding: 40px;
  gap: 16px;
}

.signup-form-container {
  padding: 32px 40px;
  gap: 12px;
}

/* Auth Header */
.auth-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.auth-title {
  font-weight: 700;
  font-size: 24px;
  line-height: var(--lh-normal);
  margin: 0;
}

/* Different colors for signin vs signup */
.signin-form-container .auth-title {
  color: #FF5601;
}

.signup-form-container .auth-title {
  color: #7844E4;
}

.auth-description {
  font-weight: 500;
  font-size: 18px;
  line-height: var(--lh-tight);
  color: #7A7F99;
  margin: 0;
}

/* Social Login Buttons */
.auth-social-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  margin-top: 16px;
}

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #F9FAFB;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
}

.auth-social-btn:hover {
  background: #F0F1F9;
  border-color: rgba(120, 68, 228, 0.2);
}

.auth-social-btn svg {
  width: 30px;
  height: 30px;
}

/* Auth Form - Unified */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
}

.auth-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #F9FAFB;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
  transition: var(--transition-default);
  cursor: text;
}

/* Unified input wrapper height */
.auth-form .auth-input-wrapper {
  min-height: 70px;
}

.auth-input-wrapper:focus-within {
  border-color: #7844E4;
  background: #FFFFFF;
}

.auth-input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.8;
}

.auth-input-divider {
  width: 1px;
  height: 20px;
  background: rgba(102, 111, 148, 0.1);
  flex-shrink: 0;
}

/* Input Container for Floating Label */
.auth-input-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  position: relative;
  cursor: text;
}

.auth-input-label {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--lh-tight);
  color: #666F94;
  opacity: 0.8;
  transition: all 0.2s ease;
  position: absolute;
  top: 4px;
  left: 0;
  pointer-events: auto;
  transform-origin: left top;
  cursor: text;
}

/* Float label up when input has focus or value */
.auth-input-wrapper:focus-within .auth-input-label,
.auth-input-wrapper.has-value .auth-input-label {
  font-size: 14px;
  line-height: var(--lh-tight);
  transform: translateY(-8px);
  opacity: 0.8;
}

/* Auth Input - Unified */
.auth-input {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 16px;
  line-height: var(--lh-tight);
  color: #33353E;
  outline: none;
  padding: 0;
  transform: translateY(10px);
  resize: none;
  /* Expand input to cover full container for better clickability */
  width: 100%;
  min-height: 30px;
}

.auth-input::placeholder {
  color: transparent;
}

/* Password Toggle - Unified */
.auth-password-toggle {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-default);
}

.auth-password-toggle:hover {
  opacity: 0.7;
}

/* Phone Input Styling (Auth Modal) */
.auth-phone-wrapper {
  position: relative;
}

.auth-country-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #EAEAED80;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-default);
  flex-shrink: 0;
}

.auth-country-selector:hover {
  opacity: 0.8;
}

.auth-country-selector svg:first-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
}

.country-code-text {
  font-weight: 600;
  line-height: var(--lh-tight);
}

.auth-phone-input {
  font-weight: 600;
  line-height: var(--lh-tight);
}

/* Country Dropdown Menu */
.country-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 240px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 8px;
  width: fit-content;
}

.country-dropdown-menu.active {
  display: block;
}

.country-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-default);
}

.country-dropdown-item:hover {
  background: rgba(120, 68, 228, 0.05);
}

.country-dropdown-item.selected {
  background: rgba(120, 68, 228, 0.1);
}

.country-dropdown-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.country-name {
  flex: 1;
  font-weight: 500;
  font-size: 14px;
  color: #33353E;
}

.country-dropdown-item .country-code {
  font-weight: 600;
  font-size: 14px;
  color: #666F94;
}

/* Forgot Password (Signin Only) - Unified */
.auth-forgot-password {
  text-align: right;
}

.auth-forgot-link {
  font-weight: 500;
  font-size: 16px;
  line-height: var(--lh-tight);
  color: #7A7F99;
  text-decoration: none;
  transition: var(--transition-default);
}

.auth-forgot-link:hover {
  color: #FF5601;
}

/* Submit Buttons */
.auth-submit-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
}

.signin-submit-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FF5601;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
}

.signin-submit-btn:hover {
  background: #E64E01;
  box-shadow: 0px 4px 12px rgba(255, 86, 1, 0.25);
}

.signup-submit-btn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #7844E4;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
  margin-top: 4px;
}

.signup-submit-btn:hover {
  background: #6A3DD1;
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.25);
}

/* Submit button inner elements - Unified */
.auth-submit-btn svg {
  width: 22px;
  height: 22px;
}

.auth-submit-btn span {
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #FFFFFF;
}

/* Toggle Links (Register/Signin Links) - Unified */
.auth-toggle-link-wrapper {
  text-align: center;
}

.auth-toggle-link-wrapper p {
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #7A7F99;
  margin: 0;
}

.auth-toggle-link {
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-default);
  cursor: pointer;
}

/* Signin mode toggle link */
.signin-form-container .auth-toggle-link,
.signin-register-link a {
  color: #FF5601;
}

.signin-form-container .auth-toggle-link:hover,
.signin-register-link a:hover {
  color: #E64E01;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .signin-register-link {
    text-align: center;
  }
  .signup-signin-link {
    text-align: center;
  }
}

/* Signup mode toggle link */
.signup-form-container .auth-toggle-link,
.signup-signin-link a {
  color: #7844E4;
}

.signup-form-container .auth-toggle-link:hover,
.signup-signin-link a:hover {
  color: #6A3DD1;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
  .auth-modal-dialog {
    max-width: 90%;
  }

  .auth-modal-body .row {
    gap: 0;
  }

  .auth-modal-left {
    display: none;
  }

  .auth-modal-right {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 30px;
  }

  .signin-form-container,
  .signup-form-container {
    padding: 30px;
  }

  .auth-image-container {
    height: 506px;
  }
}

@media (max-width: 768px) {
  .auth-modal-dialog {
    max-width: 95%;
  }

  .signin-form-container,
  .signup-form-container {
    padding: 24px;
  }

  .auth-title {
    font-size: 20px;
    line-height: var(--lh-tight);
  }

  .auth-description {
    line-height: var(--lh-tight);
  }

  .auth-modal-close {
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .auth-modal-dialog {
    max-width: 100%;
    margin: 10px;
  }

  .signin-form-container,
  .signup-form-container {
    padding: 20px;
  }

  .auth-social-buttons {
    gap: 10px;
  }

  .auth-input-wrapper {
    padding: 12px;
    gap: 12px;
  }
}



/* ========================================
   SİPARİŞ SORGULA MODAL STYLES (Combined Modal Content)
   ======================================== */
/* Note: Container, image, and form wrapper styles are shared with Telafi Talebi modal.
   Only content-specific styles (header, inputs, button) are defined here. */

/* Header */
.siparis-sorgula-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 380px;
}

.siparis-sorgula-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.siparis-sorgula-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 380px;
}

.siparis-sorgula-title {
  width: 380px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #33353E;
  margin: 0;
}

.siparis-sorgula-description {
  width: 380px;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #7A7F99;
  margin: 0;
}

/* Inputs Wrapper - Container for input and button */
.siparis-sorgula-inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 640px;
}

/* Input Wrapper */
.siparis-sorgula-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 15px;
  width: 100%;
  height: 68px;
  background: #F9FAFB;
  border: 1px solid rgba(234, 234, 237, 0.7);
  border-radius: 16px;
  transition: var(--transition-default);
  cursor: text;
}

.siparis-sorgula-input-wrapper:focus-within {
  border-color: #FE500B;
  background: #FFFFFF;
}

.siparis-sorgula-input-wrapper > svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  border-radius: 5px;
  flex-shrink: 0;
}

.siparis-sorgula-divider {
  width: 1px;
  height: 34px;
  background: rgba(102, 111, 148, 0.1);
  border-radius: 27px;
  flex-shrink: 0;
}

.siparis-sorgula-input-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  position: relative;
}

.siparis-sorgula-label {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #666F94;
  opacity: 0.8;
  margin: 0;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: left top;
}

/* Float label up when input has focus or value */
.siparis-sorgula-input-wrapper:focus-within .siparis-sorgula-label,
.siparis-sorgula-input-wrapper.has-value .siparis-sorgula-label {
  font-size: 12px;
  line-height: 20px;
  transform: translateY(-8px);
  opacity: 0.8;
}

.siparis-sorgula-input {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #33353E;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  padding-right: 130px;
  margin: 0;
  width: 100%;
  flex: 1;
  min-height: 30px;
  transform: translateY(10px);
}

.siparis-sorgula-input::placeholder {
  color: transparent;
}

/* Sorgula Button - Desktop (inside input) */
.siparis-sorgula-btn.desktop-only {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 110px;
  height: 39px;
  background: #FE500B;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #FFFFFF;
  transition: var(--transition-default);
  cursor: pointer;
}

.siparis-sorgula-btn.desktop-only:hover {
  background: #E5470A;
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0px 6px 16px rgba(254, 80, 11, 0.3);
}
/* Sorgula Button - Mobile (independent below input) */
.siparis-sorgula-btn.mobile-only {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 16px;
  width: 100%;
  height: 52px;
  background: #FE500B;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  transition: var(--transition-default);
  cursor: pointer;
}
.siparis-sorgula-btn.mobile-only:hover {
  background: #E5470A;
  transform: translateY(-1px);
  box-shadow: 0px 6px 16px rgba(254, 80, 11, 0.3);
}
/* Responsive - Content specific only */
@media (max-width: 991px) {
  .siparis-sorgula-header,
  .siparis-sorgula-text {
    width: 100%;
  }

  .siparis-sorgula-title,
  .siparis-sorgula-description {
    width: 100%;
  }

  .siparis-sorgula-inputs-wrapper {
    width: 100%;
  }

  .siparis-sorgula-input-wrapper {
    width: 100%;
    height: 68px;
    padding: 16px;
  }

  .siparis-sorgula-input-field {
    width: 100%;
  }

  .siparis-sorgula-input {
    padding-right: 0;
  }

  /* Hide desktop button (inside input) */
  .siparis-sorgula-btn.desktop-only {
    display: none;
  }

  /* Show mobile button (below input) */
  .siparis-sorgula-btn.mobile-only {
    display: flex;
  }
}

@media (max-width: 768px) {
  .siparis-sorgula-title {
    font-size: 20px;
    line-height: 24px;
  }

  .siparis-sorgula-description {
    line-height: 19px;
    font-size: 15px;
    justify-content: center;
  }
}

/* ========================================
   TELAFİ TALEBİ MODAL STYLES (Combined Modal Base)
   ======================================== */
/* Note: This section contains the base styles for the combined order modal.
   Both Sipariş Sorgula and Telafi Talebi share these container/wrapper styles.
   Modal type switching is handled via [data-modal-type] attribute selectors. */

/* Modal Wrapper */
.telafi-talebi-modal-wrapper .modal-dialog {
  max-width: 1023px;
}

.telafi-talebi-modal-content {
  background: transparent;
  border: none;
  border-radius: 30px;
  overflow: visible;
}

.telafi-talebi-modal-body {
  padding: 0;
  position: relative;
}

/* Close Button */
.telafi-talebi-modal-close {
  position: absolute;
  right: -18px;
  top: -18px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: var(--transition-default);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

.telafi-talebi-modal-close:hover {
  background: #F9FAFB;
  transform: rotate(90deg);
}

/* Container */
.telafi-talebi-container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* Left Side - Image */
.telafi-talebi-image {
  width: 283px;
  height: 501px;
  flex-shrink: 0;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

/* Combined Modal Image Height Adjustments */
[data-modal-type="siparis"] .telafi-talebi-image {
  width: 318px;
  height: 318px;
}

[data-modal-type="telafi"] .telafi-talebi-image {
  width: 283px;
  height: 501px;
}

.telafi-talebi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.telafi-talebi-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(120, 68, 228, 0) 35.71%, rgba(120, 68, 228, 0.8) 100%);
  pointer-events: none;
}

/* Combined Modal Gradient Adjustments */
[data-modal-type="siparis"] .telafi-talebi-image::after {
  background: linear-gradient(180deg, rgba(254, 80, 11, 0) 0%, rgba(254, 80, 11, 0.6) 100%);
}

[data-modal-type="telafi"] .telafi-talebi-image::after {
  background: linear-gradient(180deg, rgba(120, 68, 228, 0) 35.71%, rgba(120, 68, 228, 0.8) 100%);
}

.telafi-talebi-logo {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Right Side - Form */
.telafi-talebi-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  gap: 30px;
  width: 720px;
  height: 501px;
  background: #FFFFFF;
  border-radius: 30px;
}

/* Combined Modal Height Adjustments */
[data-modal-type="siparis"] .telafi-talebi-form {
  height: 318px;
}

[data-modal-type="telafi"] .telafi-talebi-form {
  height: 501px;
}

@media screen and (max-width: 768px) {
  [data-modal-type="telafi"] .telafi-talebi-form {
    height: 415px;
  }
}

/* Header */
.telafi-talebi-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 640px;
}

.telafi-talebi-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.telafi-talebi-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 640px;
}

.telafi-talebi-title {
  width: 640px;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #33353E;
  margin: 0;
}

.telafi-talebi-description {
  width: 640px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #7A7F99;
  margin: 0;
}

/* Form Inputs Container */
.telafi-talebi-inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 640px;
}

/* Input Wrapper */
.telafi-talebi-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px;
  width: 640px;
  height: 68px;
  background: #F9FAFB;
  border: 1px solid rgba(234, 234, 237, 0.7);
  border-radius: 16px;
  transition: var(--transition-default);
  cursor: text;
}

.telafi-talebi-input-wrapper:focus-within {
  border-color: #7844E4;
  background: #FFFFFF;
}

.telafi-talebi-input-wrapper > svg {
  width: 24px;
  height: 24px;
  opacity: 0.8;
  border-radius: 5px;
  flex-shrink: 0;
}

.telafi-talebi-divider {
  width: 1px;
  height: 34px;
  background: rgba(102, 111, 148, 0.1);
  border-radius: 27px;
  flex-shrink: 0;
}

.telafi-talebi-input-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
  min-width: 0;
  position: relative;
}

.telafi-talebi-label {
  font-weight: 500;
  line-height: 20px;
  color: #666F94;
  opacity: 0.8;
  margin: 0;
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: left top;
}

/* Float label up when input has focus or value */
.telafi-talebi-input-wrapper:focus-within .telafi-talebi-label,
.telafi-talebi-input-wrapper.has-value .telafi-talebi-label {
  font-size: 12px;
  line-height: 20px;
  transform: translateY(-8px);
  opacity: 0.8;
}

.telafi-talebi-input {
  font-weight: 600;
  line-height: 20px;
  color: #33353E;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  width: 100%;
  flex: 1;
  transform: translateY(10px);
}

.telafi-talebi-input::placeholder {
  color: transparent;
}

/* Submit Button */
.telafi-talebi-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 640px;
  height: 60px;
  background: #7844E4;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  line-height: 19px;
  color: #FFFFFF;
  transition: var(--transition-default);
  cursor: pointer;
}

.telafi-talebi-btn:hover {
  background: #6B3BD4;
  transform: translateY(-1px);
  box-shadow: 0px 6px 16px rgba(120, 68, 228, 0.3);
}

/* Responsive */
@media (max-width: 991px) {

  .telafi-talebi-container {
    flex-direction: column;
    gap: 20px;
  }

  /* Hide image on mobile - like other modals */
  .telafi-talebi-image {
    display: none;
  }

  .telafi-talebi-form {
    width: 100%;
    height: auto;
    padding: 40px 30px;
    gap: 24px;
  }

  .telafi-talebi-header,
  .telafi-talebi-text {
    width: 100%;
  }

  .telafi-talebi-title,
  .telafi-talebi-description {
    width: 100%;
  }

  .telafi-talebi-inputs {
    width: 100%;
    gap: 16px;
  }

  .telafi-talebi-input-wrapper {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .telafi-talebi-input-field {
    width: 100%;
  }

  .telafi-talebi-input {
    padding-right: 0;
  }

  .telafi-talebi-btn {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    top: auto;
    transform: none;
    width: calc(100% - 32px);
    height: 60px;
  }

  .telafi-talebi-btn:hover {
    transform: translateY(-1px);
  }
}

@media (max-width: 768px) {
  .telafi-talebi-modal-close {
    right: 10px;
    top: 10px;
    width: 36px;
    height: 36px;
  }

  .telafi-talebi-form {
    padding: 30px 20px;
    gap: 20px;
  }

  .telafi-talebi-title {
    font-size: 20px;
    line-height: 24px;
  }

  .telafi-talebi-description {
    line-height: 19px;
    font-size: 15px;
  }
}

/* ========================================
   KATEGORI HIZMETLER STYLES
   ======================================== */

.kategori-hizmetler-section {
  padding: 80px 0;
  padding-top: 20px;
}

.kategori-hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.kategori-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 320px;
  height: 277px;
  background: var(--bg-light);
  border-radius: 12px;
  overflow: visible;
  margin: 0 auto;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.kategori-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 32px rgba(120, 68, 228, 0.15);
}

.kategori-card-header {
  flex-shrink: 0;
  width: 100%;
  height: 90px;
  background-image: url('../images/kategoriler/kategori-card-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 5px 20px 0px rgba(141, 72, 189, 0.15);
  padding: 20px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.kategori-card-icon-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.kategori-card-icon-circle {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border: 1px solid var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kategori-card-icon-circle svg {
  width: 24px;
  height: 24px;
}

.kategori-card-title {
  font-weight: var(--fw-semibold);
  font-size: 17px;
  line-height: var(--lh-normal);
  color: var(--text-light);
  margin: 0;
  white-space: nowrap;
}

.kategori-card-description {
  flex: 1;
  padding: 20px;
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 1.6;
  color: #7C8499;
  margin: 0;
  max-height: 120px;
  overflow: hidden;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
}

.kategori-card-description::after {
  content: '...';
  position: absolute;
  bottom: 0;
  right: 20px;
  padding-left: 10px;
  color: #7C8499;
  background: linear-gradient(to right, transparent, var(--bg-light) 50%);
}

.kategori-card-button {
  flex-shrink: 0;
  margin: 0 20px 20px 20px;
  height: 55px;
  background: radial-gradient(circle at 91% 54%, rgba(255, 85, 0, 0.65) 0%, rgba(191, 0, 203, 1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-default);
}

.kategori-card-button:hover {
  transform: scale(1.02);
  box-shadow: 0px 6px 16px rgba(191, 0, 203, 0.3);
}

.kategori-card-button span {
  font-weight: var(--fw-medium);
  font-size: 15px;
  line-height: var(--lh-tight);
  color: var(--text-light);
  text-align: center;
}

.kategori-card-button svg {
  width: 12.86px;
  height: 12px;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .kategori-hizmetler-grid {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .kategori-hizmetler-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .kategori-hizmetler-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .kategori-hizmetler-section {
    padding: 60px 0;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .kategori-hizmetler-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .kategori-hizmetler-section {
    padding: 40px 0;
    padding-top: 20px;
  }

  .kategori-card {
    max-width: 100%;
  }

  .kategori-card-title {
    font-size: 15px;
  }

  .kategori-card-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .kategori-hizmetler-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kategori-card {
    max-width: 100%;
  }
}

/* ========================================
   ÜCRETSIZ DENEME SECTION STYLES
   ======================================== */

.ucretsiz-deneme-section {
  padding: 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding-bottom: 85px;
}

.ucretsiz-deneme-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
}

/* Header */
.ucretsiz-deneme-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 257.61px;
}

.ucretsiz-deneme-title {
  font-weight: 700;
  font-size: 18px;
  line-height: var(--lh-tight);
  color: #33353E;
  margin: 0;
}

.ucretsiz-deneme-description {
  font-weight: 500;
  font-size: 15px;
  line-height: var(--lh-tight);
  color: #7A7F99;
  margin: 0;
}

/* Features Pills */
.ucretsiz-deneme-features {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.ucretsiz-deneme-feature {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ucretsiz-deneme-feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.ucretsiz-deneme-feature span {
  font-weight: 600;
  font-size: 14px;
  line-height: var(--lh-tight);
  color: #666F94;
  white-space: nowrap;
}

.ucretsiz-deneme-divider {
  width: 1px;
  height: 10px;
  background: rgba(102, 111, 148, 0.3);
  flex-shrink: 0;
}

/* Input Fields */
.ucretsiz-deneme-inputs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ucretsiz-deneme-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: transparent;
  border: 2px solid #EAEAED;
  border-radius: 15px;
  transition: var(--transition-default);
  height: 66px;
  flex: 1;
  min-width: 280px;
  cursor: text;
}

.ucretsiz-deneme-input-wrapper:focus-within {
  border-color: #7844E4;
  background: #FFFFFF;
}

.ucretsiz-deneme-input-wrapper svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  opacity: 0.8;
}
.ucretsiz-deneme-input-divider {
  width: 1px;
  height: 20px;
  background: rgba(102, 111, 148, 0.1);
  flex-shrink: 0;
}

/* Input Container for Floating Label */
.ucretsiz-deneme-input-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  position: relative;
  justify-content: center;
  min-height: 36px;
}
.ucretsiz-deneme-input-label {
  font-weight: 500;
  line-height: var(--lh-tight);
  color: #666F94;
  opacity: 0.8;
  transition: all 0.2s ease;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Floating label effect - move up when input has focus or value */
.ucretsiz-deneme-input:focus ~ .ucretsiz-deneme-input-label,
.ucretsiz-deneme-input:not(:placeholder-shown) ~ .ucretsiz-deneme-input-label {
  font-size: 12px;
  top: 0;
  transform: translateY(0);
  opacity: 0.8;
}

/* Also handle with wrapper class for JS support */
.ucretsiz-deneme-input-wrapper:focus-within .ucretsiz-deneme-input-label,
.ucretsiz-deneme-input-wrapper.has-value .ucretsiz-deneme-input-label {
  font-size: 14px;
  top: -3px;
  transform: translateY(0);
  opacity: 0.8;
}

.ucretsiz-deneme-input {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #33353E;
  outline: none;
  padding: 0;
  padding-top: 12px;
  transform: translateY(3px);
  width: 100%;
  min-height: 30px;
}

.ucretsiz-deneme-input::placeholder {
  color: transparent;
  opacity: 0;
}

/* Make sure input works with placeholder trick */
.ucretsiz-deneme-input:placeholder-shown:not(:focus) ~ .ucretsiz-deneme-input-label {
  font-size: 16px;
  line-height: var(--lh-tight);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

/* Warning Message */
.ucretsiz-deneme-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  justify-content: center;
}

.ucretsiz-deneme-warning svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ucretsiz-deneme-warning p {
  font-weight: 600;
  font-size: 15px;
  line-height: var(--lh-tight);
  color: #666F94;
  margin: 0;
}

/* Submit Button */
.ucretsiz-deneme-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 50px;
  background: #7844E4;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* Glass shimmer effect */
.ucretsiz-deneme-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
  z-index: 1;
}

.ucretsiz-deneme-submit-btn:hover::before {
  left: 100%;
}

.ucretsiz-deneme-submit-btn svg,
.ucretsiz-deneme-submit-btn span {
  position: relative;
  z-index: 2;
}

.ucretsiz-deneme-submit-btn:hover {
  background: #6A35D0;
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(120, 68, 228, 0.3);
}

.ucretsiz-deneme-submit-btn:active {
  transform: translateY(0);
}

.ucretsiz-deneme-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.ucretsiz-deneme-submit-btn.loading {
  position: relative;
}

.ucretsiz-deneme-submit-btn.loading svg {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ucretsiz-deneme-submit-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ucretsiz-deneme-section {
    padding: 40px 0;
  }

  .ucretsiz-deneme-card {
    padding: 20px;
    gap: 12px;
  }

  .ucretsiz-deneme-header {
    width: 100%;
  }

  .ucretsiz-deneme-features {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ucretsiz-deneme-divider {
    display: none;
  }

  .ucretsiz-deneme-inputs {
    flex-direction: column;
    gap: 12px;
  }

  .ucretsiz-deneme-input-wrapper {
    min-width: 100%;
    width: 100%;
  }

  .ucretsiz-deneme-warning {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .ucretsiz-deneme-card {
    padding: 16px;
  }

  .ucretsiz-deneme-description {
    font-size: 14px;
  }

  .ucretsiz-deneme-feature span {
    font-size: 13px;
  }

  .ucretsiz-deneme-warning p {
    font-size: 14px;
  }

  .ucretsiz-deneme-submit-btn {
    height: 48px;
    font-size: 15px;
  }
}

/* Step 2: Profile Display */
.ucretsiz-deneme-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  height: 84px;
}

.ucretsiz-deneme-profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #E4E7EB;
  flex-shrink: 0;
}

.ucretsiz-deneme-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ucretsiz-deneme-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ucretsiz-deneme-profile-name {
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #33353E;
  margin: 0;
}

.ucretsiz-deneme-profile-username {
  font-weight: 500;
  font-size: 14px;
  line-height: var(--lh-normal);
  color: #666F94;
  margin: 0;
}

/* Package Selection */
.ucretsiz-deneme-packages {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.ucretsiz-deneme-package {
  flex: 1;
  height: 84px;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 16px;
  padding: 13px 20px;
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
  background: #FFFFFF;
}

.ucretsiz-deneme-package:hover {
  border-color: #7844E4;
}

.ucretsiz-deneme-package-active {
  border-color: #7844E4;
  border-width: 2px;
}

.ucretsiz-deneme-package-overlay {
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(120, 68, 228, 0.1);
  border-radius: 10px;
  opacity: 0;
  transition: var(--transition-default);
}

.ucretsiz-deneme-package-active .ucretsiz-deneme-package-overlay {
  opacity: 1;
}

.ucretsiz-deneme-package-icon {
  position: absolute;
  top: 31px;
  right: 22px;
  width: 22px;
  height: 22px;
  opacity: 0;
  transition: var(--transition-default);
}

.ucretsiz-deneme-package-active .ucretsiz-deneme-package-icon {
  opacity: 1;
}

.ucretsiz-deneme-package-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  z-index: 1;
}

.ucretsiz-deneme-package-info {
  display: flex;
  flex-direction: column;
}

.ucretsiz-deneme-package-quantity {
  font-weight: 700;
  font-size: 18px;
  line-height: var(--lh-tight);
  color: #7844E4;
}

.ucretsiz-deneme-package:not(.ucretsiz-deneme-package-active) .ucretsiz-deneme-package-quantity {
  color: #33353E;
}

.ucretsiz-deneme-package-label {  
  font-weight: 500;
  font-size: 14px;
  line-height: var(--lh-normal);
  color: #666F94;
  opacity: 0.8;
}

.ucretsiz-deneme-package-type {
  font-weight: 600;
  font-size: 14px;
  line-height: var(--lh-tight);
  color: #7844E4;
  margin-top: auto;
}

.ucretsiz-deneme-package:not(.ucretsiz-deneme-package-active) .ucretsiz-deneme-package-type {
  color: #33353E;
}

.ucretsiz-deneme-package-type-fast {
  color: #28A745 !important;
}

/* Tasks Header */
.ucretsiz-deneme-tasks-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 795px;
  max-width: 100%;
}

/* Task Items */
.ucretsiz-deneme-tasks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ucretsiz-deneme-task {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  padding: 17px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  min-height: 84px;
}

.ucretsiz-deneme-task-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.ucretsiz-deneme-task-icon {
  width: 50px;
  height: 50px;
  background: #7844E4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ucretsiz-deneme-task-icon svg {
  width: 24px;
  height: 24px;
}

.ucretsiz-deneme-task-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.ucretsiz-deneme-task-title {
  font-weight: 700;
  font-size: 18px;
  line-height: var(--lh-tight);
  color: #7844E4;
  margin: 0;
}

.ucretsiz-deneme-task-description {
  font-weight: 500;
  font-size: 15px;
  line-height: var(--lh-tight);
  color: #666F94;
  margin: 0;
}

.ucretsiz-deneme-task-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ucretsiz-deneme-task-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 14px;
  font-weight: 600;
  line-height: var(--lh-tight);
  cursor: pointer;
  transition: var(--transition-default);
  border: none;
  white-space: nowrap;
}

.ucretsiz-deneme-task-btn-go {
  background: #858CA9;
  color: #FFFFFF;
  width: 130px;
  height: 42px;
}

.ucretsiz-deneme-task-btn-go:hover {
  background: #6D7490;
}

.ucretsiz-deneme-task-btn-go svg {
  width: 12.86px;
  height: 12px;
}

.ucretsiz-deneme-task-btn-complete {
  background: transparent;
  color: #17B976;
  border: 1px solid #17B976;
  width: 141px;
  height: 42px;
}

.ucretsiz-deneme-task-btn-complete:hover {
  background: rgba(23, 185, 118, 0.05);
}

.ucretsiz-deneme-task-btn-complete-active {
  background: #17B976;
  color: #FFFFFF;
}

.ucretsiz-deneme-task-btn-complete-active:hover {
  background: #12A066;
}

/* Bottom Actions */
.ucretsiz-deneme-bottom-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ucretsiz-deneme-timer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ucretsiz-deneme-timer-icon {
  width: 50px;
  height: 50px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ucretsiz-deneme-timer-icon svg {
  width: 20px;
  height: 20.5px;
}

.ucretsiz-deneme-timer-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ucretsiz-deneme-timer-label {
  font-weight: 500;
  font-size: 14px;
  line-height: var(--lh-tight);
  color: #92A3B8;
}

.ucretsiz-deneme-timer-time {
  font-weight: 600;
  line-height: var(--lh-tight);
  color: #33353E;
}

.ucretsiz-deneme-action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ucretsiz-deneme-back-btn {
  width: 100px;
  height: 50px;
  background: rgba(249, 250, 251, 0.8);
  border: 1px solid #E4E7EB;
  border-radius: 12px;
  font-weight: 500;
  color: #92A3B8;
  cursor: pointer;
  transition: var(--transition-default);
}

.ucretsiz-deneme-back-btn:hover {
  background: rgba(249, 250, 251, 1);
  border-color: #D1D5DB;
}

.ucretsiz-deneme-waiting-btn {
  width: 180px;
  height: 50px;
  background: #7844E4;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ucretsiz-deneme-cart-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: none; /* Hidden by default, shown only for paid packages */
}

.ucretsiz-deneme-waiting-btn:hover {
  background: #6A35D0;
}

.ucretsiz-deneme-waiting-btn:disabled {
  background: #858CA9;
  cursor: not-allowed;
  opacity: 0.6;
}

.ucretsiz-deneme-waiting-btn:disabled:hover {
  background: #858CA9;
}

/* Step Indicator (Stepper) */
.ucretsiz-deneme-stepper {
  display: flex;
  align-self: stretch;
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  overflow: hidden;
}

.ucretsiz-deneme-step-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 16px 24px;
  position: relative;
}

.ucretsiz-deneme-step-wrapper.ucretsiz-deneme-step-active {
  position: relative;
}

.ucretsiz-deneme-step-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #7844E4;
  border-radius: 16px;
  z-index: 0;
}

.ucretsiz-deneme-step-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.ucretsiz-deneme-step-number {
  width: 40px;
  height: 40px;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ucretsiz-deneme-step-number span {
  font-weight: 600;
  line-height: 1.193em;
  color: #7844E4;
}

.ucretsiz-deneme-step-wrapper.ucretsiz-deneme-step-active .ucretsiz-deneme-step-number span {
  color: #FFFFFF;
}

.ucretsiz-deneme-step-number-inactive {
  background: transparent;
  border: 2px solid #666F94;
}

.ucretsiz-deneme-step-number-inactive span {
  color: #666F94;
}

.ucretsiz-deneme-step-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ucretsiz-deneme-step-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 0;
}

.ucretsiz-deneme-step-title-inactive {
  color: #666F94;
}

.ucretsiz-deneme-step-description {
  font-family: Gilroy;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714em;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 0;
}

.ucretsiz-deneme-step-description-inactive {
  color: #666F94;
}

.ucretsiz-deneme-step-completed .ucretsiz-deneme-step-number {
  background: #7844E4;
  border-color: #7844E4;
}

.ucretsiz-deneme-step-number-completed {
  background: #7844E4;
  border-color: #7844E4;
}

.ucretsiz-deneme-step-title-completed {
  color: #33353E;
}

/* Profile + Process Info Wrapper (Step 3) */
.ucretsiz-deneme-profile-process-wrapper {
  display: flex;
  align-self: stretch;
  gap: 16px;
}

.ucretsiz-deneme-profile-card {
  width: 558px;
  height: 90px;
  padding: 20px;
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ucretsiz-deneme-profile-card .ucretsiz-deneme-profile-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #E4E7EB;
}

.ucretsiz-deneme-profile-card .ucretsiz-deneme-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ucretsiz-deneme-profile-card .ucretsiz-deneme-profile-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ucretsiz-deneme-profile-card .ucretsiz-deneme-profile-name {
  font-weight: 600;
  line-height: 1.25em;
  color: #33353E;
  margin: 0;
  text-align: left;
  font-size: 16px;
}
.ucretsiz-deneme-profile-username {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714em;
  color: #666F94;
  margin: 0;
  text-align: left;
}

.ucretsiz-deneme-process-info-step3 {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  position: relative;
}

.ucretsiz-deneme-process-card-step3 {
  width: 175px;
  height: 90px;
  padding: 6px 12px;
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ucretsiz-deneme-process-card-step3.ucretsiz-deneme-process-card-active {
  border: 2px solid #7844E4;
  background: linear-gradient(135deg, rgba(120, 68, 228, 0.03) 0%, rgba(120, 68, 228, 0.08) 100%);
  box-shadow: 0px 0px 0px 4px rgba(120, 68, 228, 0.12);
  animation: pulseCard 2.5s ease-in-out infinite;
  position: relative;
  transition: all 0.3s ease;
}

.ucretsiz-deneme-process-card-step3.ucretsiz-deneme-process-card-active::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, #7844E4, #9966FF);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  opacity: 0.6;
}

.ucretsiz-deneme-process-card-step3.ucretsiz-deneme-process-card-active:hover {
  transform: translateY(-4px);
  box-shadow: 0px 4px 24px rgba(120, 68, 228, 0.25);
}

@keyframes pulseCard {
  0%, 100% {
    box-shadow: 0px 0px 0px 4px rgba(120, 68, 228, 0.12);
  }
  50% {
    box-shadow: 0px 0px 0px 8px rgba(120, 68, 228, 0.18), 0px 0px 20px rgba(120, 68, 228, 0.3);
  }
}

.ucretsiz-deneme-process-content-step3 {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 5px;
}

.ucretsiz-deneme-step-3 .ucretsiz-deneme-bottom-actions {
  justify-content: flex-end;
}

.ucretsiz-deneme-process-label-step3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714em;
  color: #666F94;
  text-align: center;
  margin: 0;
}

.ucretsiz-deneme-process-value-step3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  color: #7844E4;
  text-align: center;
  margin: 0;
}

.ucretsiz-deneme-process-card-active .ucretsiz-deneme-process-value-step3 {
  font-size: 18px;
  font-weight: 700;
  animation: scaleText 2.5s ease-in-out infinite;
  text-shadow: 0px 2px 8px rgba(120, 68, 228, 0.3);
}

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

.ucretsiz-deneme-process-card-step3 svg {
  transition: transform 0.3s ease;
  filter: drop-shadow(0px 2px 4px rgba(120, 68, 228, 0.2));
}

.ucretsiz-deneme-process-card-active svg {
  animation: bounceIcon 2.5s ease-in-out infinite;
  filter: drop-shadow(0px 4px 8px rgba(120, 68, 228, 0.4));
}

@keyframes bounceIcon {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-2px);
  }
}

.ucretsiz-deneme-process-arrow-step3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #7844E4;
  border-radius: 54px;
  animation: slideLeftRight 2s ease-in-out infinite;
}

@keyframes slideLeftRight {
  0%, 100% {
    transform: translate(-60%, -50%);
  }
  50% {
    transform: translate(-40%, -50%);
  }
}

/* Process Info (Before -> After) */
.ucretsiz-deneme-process-info {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  position: relative;
}

.ucretsiz-deneme-process-card {
  flex: 1;
  padding: 12px 20px 13px;
  border: 1px solid #E4E7EB;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ucretsiz-deneme-process-card-after {
  border: 1px solid #7844E4;
}

.ucretsiz-deneme-process-content {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 5px;
}

.ucretsiz-deneme-process-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4em;
  color: #666F94;
  text-align: left;
}

.ucretsiz-deneme-process-value {
  font-weight: 600;
  line-height: 1.25em;
  color: #7844E4;
  text-align: left;
}

.ucretsiz-deneme-process-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: #7844E4;
  border-radius: 54px;
}

/* Banner */
.ucretsiz-deneme-banner {
  align-self: stretch;
  position: relative;
  background: #282D40;
  border-radius: 16px;
  overflow: visible;
  min-height: 208px;
  display: flex;
  margin-top: 30px;
}

.ucretsiz-deneme-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/ucretsiz-araclar/ucretsiz-banner-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

.ucretsiz-deneme-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 259px 30px 30px;
  flex: 1;
  z-index: 1;
}

.ucretsiz-deneme-banner-text {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 11px;
}

.ucretsiz-deneme-banner-subtitle {
  font-weight: 500;
  color: #7A7F99;
  margin-bottom: 0;
  color: #FFFFFF;
}

.ucretsiz-deneme-banner-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.209em;
  color: #FFFFFF;
}

.ucretsiz-deneme-banner-actions {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 10px;
}

.ucretsiz-deneme-coupon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 12px 16px;
  background: #FFFFFF;
  border-radius: 12px;
  height: 49px;
}

.ucretsiz-deneme-coupon-text {
  font-weight: 500;
  line-height: 1.177em;
  color: #7A7F99;
}

.ucretsiz-deneme-coupon-btn {
  width: 31px;
  height: 31px;
  background: rgba(23, 185, 118, 0.1);
  border: none;
  border-radius: 7.44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-default);
}

.ucretsiz-deneme-coupon-btn:hover {
  background: rgba(23, 185, 118, 0.2);
}

.ucretsiz-deneme-packages-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding: 12px 16px;
  background: #17B976;
  border: none;
  border-radius: 12px;
  width: 252px;
  height: 49px;
  cursor: pointer;
  transition: var(--transition-default);
}

.ucretsiz-deneme-packages-btn span {
  font-weight: 600;
  line-height: 1.193em;
  color: #FFFFFF;
}

.ucretsiz-deneme-packages-btn:hover {
  background: #15A868;
}

.ucretsiz-deneme-banner-image {
  position: absolute;
  right: 4px;
  top: -59px;
  width: 290px;
  height: 284px;
  object-fit: contain;
  z-index: 2;
}

/* Continue Button */
.ucretsiz-deneme-continue-btn {
  width: 180px;
  height: 50px;
  background: #7844E4;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.5em;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ucretsiz-deneme-continue-btn:hover:not(:disabled) {
  background: #6A35D0;
}

.ucretsiz-deneme-continue-btn:disabled {
  background: #858CA9;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Step Number Group (for checkmark overlay) */
.ucretsiz-deneme-step-number-group {
  position: relative;
  width: 40px;
  height: 40px;
}

.ucretsiz-deneme-step-checkmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  z-index: 2;
}

/* Success Message */
.ucretsiz-deneme-success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(23, 185, 118, 0.1);
  border: 1px solid #17B976;
  border-radius: 12px;
  width: 100%;
}

.ucretsiz-deneme-success-message svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ucretsiz-deneme-success-message span {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2em;
  color: #17B976;
  text-align: left;
}

/* Complete Actions */
.ucretsiz-deneme-complete-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  width: 100%;
}

/* Complete Button */
.ucretsiz-deneme-complete-btn {
  width: 180px;
  height: 50px;
  background: #7844E4;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.5em;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ucretsiz-deneme-complete-btn:hover {
  background: #6A35D0;
}

.ucretsiz-deneme-complete-btn:active {
  transform: translateY(1px);
}

/* Responsive for Step 2 */
@media (max-width: 1024px) {
  .ucretsiz-deneme-banner-content {
    padding-right: 180px;
  }

  .ucretsiz-deneme-banner-image {
    width: 200px;
    height: 200px;
    top: -30px;
  }
}

@media (max-width: 991px) {
  .ucretsiz-deneme-stepper {
    flex-direction: column;
  }

  .ucretsiz-deneme-process-info {
    flex-direction: column;
    gap: 40px;
  }

  .ucretsiz-deneme-process-arrow {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .ucretsiz-deneme-banner-content {
    padding: 24px 140px 24px 24px;
  }

  .ucretsiz-deneme-banner-image {
    width: 150px;
    height: 150px;
    top: -20px;
  }

  .ucretsiz-deneme-packages {
    flex-wrap: wrap;
  }

  .ucretsiz-deneme-package {
    min-width: calc(50% - 5px);
  }

  .ucretsiz-deneme-task {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .ucretsiz-deneme-task-actions {
    width: 100%;
    flex-direction: column;
  }

  .ucretsiz-deneme-task-btn {
    width: 100% !important;
  }

  .ucretsiz-deneme-bottom-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ucretsiz-deneme-action-buttons {
    width: 100%;
  }

  .ucretsiz-deneme-back-btn,
  .ucretsiz-deneme-waiting-btn,
  .ucretsiz-deneme-continue-btn {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .ucretsiz-deneme-banner-actions {
    flex-direction: column;
  }

  .ucretsiz-deneme-coupon-wrapper,
  .ucretsiz-deneme-packages-btn {
    width: 100%;
  }

  .ucretsiz-deneme-banner-content {
    padding: 20px;
  }

  .ucretsiz-deneme-banner-image {
    display: none;
  }

  .ucretsiz-deneme-packages {
    flex-direction: column;
  }

  .ucretsiz-deneme-package {
    width: 100%;
    min-width: 100%;
  }

  .ucretsiz-deneme-task-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Step 4 responsive */
  .ucretsiz-deneme-success-message {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }

  .ucretsiz-deneme-success-message span {
    font-size: 14px;
  }

  .ucretsiz-deneme-complete-actions {
    justify-content: center;
  }

  .ucretsiz-deneme-complete-btn {
    width: 100%;
  }
}

/* ========================================
   ÜCRETSIZ ARAÇLAR PARAGRAPH SECTIONS STYLES
   ======================================== */

.araclar-paragraph-wrapper-section {
  padding: 60px 0;
}

.araclar-paragraph-section {
  display: flex;
  align-items: center;
  gap: 255px;
  max-width: 1084px;
  margin: 0 auto 45px;
}

.araclar-paragraph-section:last-child {
  margin-bottom: 0;
}

.araclar-paragraph-section-reverse {
  flex-direction: row-reverse;
  gap: 89px;
}

.araclar-paragraph-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 449px;
  flex-shrink: 0;
}

.araclar-paragraph-text {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.araclar-paragraph-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.araclar-paragraph-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 508px;
  animation: floatingImage 3s ease-in-out infinite;
}

.araclar-paragraph-section:nth-child(1) .araclar-paragraph-image { animation-delay: 0s; }
.araclar-paragraph-section:nth-child(2) .araclar-paragraph-image { animation-delay: 1s; }
.araclar-paragraph-section:nth-child(3) .araclar-paragraph-image { animation-delay: 2s; }

@media (max-width: 1440px) {
  .araclar-paragraph-section { gap: 160px; }
  .araclar-paragraph-section-reverse { gap: 80px; }
}

@media (max-width: 1024px) {
  .araclar-paragraph-section { gap: 80px; margin-bottom: 60px; }
  .araclar-paragraph-section-reverse { gap: 60px; }
  .araclar-paragraph-content { width: 380px; }
}

@media (max-width: 991px) {
  .araclar-paragraph-section,
  .araclar-paragraph-section-reverse { flex-direction: column; gap: 40px; margin-bottom: 50px; }
  .araclar-paragraph-content { width: 100%; max-width: 600px; }
}

@media (max-width: 768px) {
  .araclar-paragraph-section { gap: 32px; margin-bottom: 40px; }
  .araclar-paragraph-content { max-width: 100%; }
}

@media (max-width: 480px) {
  .araclar-paragraph-section { gap: 24px; margin-bottom: 32px; }
  .araclar-paragraph-text { gap: 16px; }
}

/* ========================================
   SLIDER SECTION STYLES
   ======================================== */

.slider-section {
  padding: 60px 0;
  overflow: hidden;
}

/* Swiper Container */
.araclar-slider {
  position: relative;
  width: 100%;
}

/* Slide Content */
.araclar-slide-content {
  background: #E1E9FF;
  border-radius: 24px;
  padding: 60px 120px;
  padding-right: 80px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 140px;
  min-height: 610px;
  position: relative;
  transition: background-color 0.6s ease;
}

/* Slide Background Colors */
.araclar-slider[data-active-slide="0"] .swiper-slide-active .araclar-slide-content {
  background: #E1E9FF;
}

.araclar-slider[data-active-slide="1"] .swiper-slide-active .araclar-slide-content {
  background: #FFBDDC;
}

.araclar-slider[data-active-slide="2"] .swiper-slide-active .araclar-slide-content {
  background: #FDE1C3;
}

.araclar-slider[data-active-slide="3"] .swiper-slide-active .araclar-slide-content {
  background: #C3ECFD;
}

/* Text Section */
.araclar-slide-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 449px;
  flex-shrink: 0;
}

/* Slider Badge - Transparent Background */
.slider-section .araclar-badge {
  background-color: transparent;
  padding: 0;
}

.araclar-slide-text-content {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.araclar-slide-title {
  
  font-size: 42.5px;
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: #33353E;
  margin: 0;
  max-width: 440px;
}

.araclar-slide-description {
  
  font-size: 18px;
  font-weight: 500;
  line-height: var(--lh-normal);
  color: #666F94;
  margin: 0;
  max-width: 440px;
}

/* Image Wrapper */
.araclar-slide-image-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.araclar-slide-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
/* Custom Pagination */
.araclar-slider-pagination {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 86px;
  z-index: 10;
}

.araclar-slider-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #A3BCFF;
  opacity: 1;
  border-radius: 5000px;
  margin: 0 !important;
  transition: width 0.3s ease, background 0.3s ease;
}

.araclar-slider-pagination .swiper-pagination-bullet-active {
  width: 60px;
  background: #A3BCFF;
}
/* Pagination Colors Based on Active Slide */
.araclar-slider[data-active-slide="0"] .swiper-pagination-bullet {
  background: #A3BCFF;
}

.araclar-slider[data-active-slide="0"] .swiper-pagination-bullet-active {
  background: #A3BCFF;
}

.araclar-slider[data-active-slide="1"] .swiper-pagination-bullet {
  background: #FFB8D9;
}

.araclar-slider[data-active-slide="1"] .swiper-pagination-bullet-active {
  background: #FFB8D9;
}

.araclar-slider[data-active-slide="2"] .swiper-pagination-bullet {
  background: #F5CDA3;
}

.araclar-slider[data-active-slide="2"] .swiper-pagination-bullet-active {
  background: #F5CDA3;
}

.araclar-slider[data-active-slide="3"] .swiper-pagination-bullet {
  background: #A8E4FC;
}

.araclar-slider[data-active-slide="3"] .swiper-pagination-bullet-active {
  background: #A8E4FC;
}

/* Dot Fix */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  left: 50%;
  width: fit-content;
  bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .araclar-slide-content {
    padding: 100px 80px;
    gap: 60px;
    min-height: 550px;
  }

  .araclar-slide-text {
    max-width: 400px;
  }

  .araclar-slide-title {
    font-size: 38px;
    max-width: 400px;
  }

  .araclar-slide-description {
    font-size: 17px;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .araclar-slide-content {
    padding: 80px 60px;
    gap: 40px;
    min-height: 500px;
  }

  .araclar-slide-text {
    max-width: 350px;
  }

  .araclar-slide-title {
    font-size: 34px;
    max-width: 350px;
  }

  .araclar-slide-description {
    max-width: 350px;
  }

  .araclar-slider-pagination {
    bottom: 36px;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .araclar-slide-content {
    flex-direction: column;
    padding: 60px 40px;
    gap: 40px;
    min-height: auto;
  }

  .araclar-slide-text {
    max-width: 100%;
  }

  .araclar-slide-title {
    font-size: 32px;
    max-width: 100%;
  }

  .araclar-slide-description {
    max-width: 100%;
  }

  .araclar-slider-pagination {
    bottom: 24px;
    padding: 16px;
    gap: 12px;
  }

  .araclar-slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  .araclar-slider-pagination .swiper-pagination-bullet-active {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .slider-section {
    padding: 40px 0;
  }

  .araclar-slide-content {
    padding: 40px 32px;
    gap: 32px;
  }

  .araclar-slide-title {
    font-size: 28px;
  }

  .araclar-slide-description {
    font-size: 15px;
  }

  .araclar-slide-text-content {
    gap: 16px;
  }

  .araclar-slider-pagination {
    bottom: 20px;
    padding: 12px 16px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .araclar-slide-content {
    padding: 32px 24px;
    gap: 24px;
    border-radius: 16px;
  }

  .araclar-slide-text {
    gap: 16px;
  }

  .araclar-slide-text-content {
    gap: 12px;
  }

  .araclar-slide-title {
    font-size: 24px;
    line-height: var(--lh-tight);
  }

  .araclar-slide-description {
    font-size: 14px;
  }

  .araclar-slider-pagination {
    bottom: 16px;
    padding: 10px 14px;
    gap: 8px;
  }

  .araclar-slider-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .araclar-slider-pagination .swiper-pagination-bullet-active {
    width: 30px;
  }
}

/* ========================================
   SCROLL ANIMATIONS STYLES
   ======================================== */

/* Animation initial state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animation active state */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for child elements */
.animate-on-scroll.delay-100 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-200 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-300 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-400 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-500 {
  transition-delay: 0.5s;
}

.animate-on-scroll.delay-600 {
  transition-delay: 0.6s;
}

.animate-on-scroll.delay-700 {
  transition-delay: 0.7s;
}

.animate-on-scroll.delay-800 {
  transition-delay: 0.8s;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  
  .animate-on-scroll.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ========================================
   KURUMSAL MENU CARD (HAKKIMIZDA PAGE)
   ======================================== */

.kurumsal-menu-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.kurumsal-menu-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.kurumsal-menu-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: #33353e;
  margin: 0;
}

.kurumsal-menu-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7a7f99;
  margin: 0;
}

.kurumsal-menu-image {
  width: 100%;
  height: 401.61px;
  border-radius: 37.07px;
  overflow: hidden;
}

.kurumsal-menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kurumsal-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kurumsal-menu-item {
  width: 100%;
  height: 45px;
  border-radius: 14px;
  border: 1px solid rgba(234, 234, 237, 0.5);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.19;
  color: #666f94;
  cursor: pointer;
  transition: all 0.3s ease;
}

.kurumsal-menu-item:hover {
  border-color: #7844e4;
  background-color: rgba(120, 68, 228, 0.05);
}

.kurumsal-menu-item.active {
  background-color: rgba(120, 68, 228, 0.1);
  border-color: #7844e4;
  color: #7844e4;
}

.kurumsal-menu-item svg {
  width: 14px;
  height: 14px;
  display: none;
}

.kurumsal-menu-item.active svg {
  display: block;
}

@media (max-width: 991px) {
  .kurumsal-menu-card {
    padding: 24px;
    position: static;
  }

  .kurumsal-menu-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .kurumsal-menu-card {
    padding: 20px;
  }

  .kurumsal-menu-subtitle {
    font-size: 14px;
  }

  .kurumsal-menu-image {
    height: 250px;
    border-radius: 20px;
  }

  .kurumsal-menu-item {
    height: 40px;
    font-size: 13px;
  }
}

/* ========================================
   HAKKIMIZDA CONTENT CARD (HAKKIMIZDA PAGE)
   ======================================== */

.hakkimizda-content-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hakkimizda-text-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hakkimizda-block-title {
  font-weight: 700;
  font-size: 24px;
  line-height: var(--lh-tight);
  color: #33353E;
  margin: 0;
}

.hakkimizda-block-text {
  font-weight: 400;
  line-height: 1.375;
  color: #7a7f99;
  margin: 0;
}

@media (max-width: 991px) {
  .hakkimizda-content-card {
    padding: 24px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hakkimizda-content-card {
    padding: 20px;
    gap: 20px;
  }

  .hakkimizda-block-title,
  .hakkimizda-block-text {
    font-size: 15px;
  }
}

/* ========================================
   SINIRSIZ SERVIS HIZMETLERIMIZ SECTION
   ======================================== */

#section_unlimited_services {
  padding: 60px 0;
}

.sinirsiz-servis-wrapper {
  max-width: 1122px;
  margin: 0 auto;
}

#section_unlimited_services .section-header {
  margin-bottom: 30px;
}

/* Purple text utility */
.text-primary-purple {
  color: var(--primary-purple);
}

/* Cards Grid */
.sinirsiz-servis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

/* Individual Card */
.sinirsiz-servis-card {
  position: relative;
  background-color: #FBFDFF;
  border: 2px solid #E9EBF5;
  border-radius: 20px;
  padding: 35px 25px 25px;
  height: 478px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sinirsiz-servis-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: auto;
}

.sinirsiz-servis-card .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2em;
  color: #2F3352;
  margin: 0;
}

.sinirsiz-servis-card .description {
  font-weight: 500;
  line-height: 1.375em;
  color: #7A7F99;
  margin: 0;
}

/* Card Animation Area */
.sinirsiz-servis-card .card-animation {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Link Button */
.sinirsiz-servis-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  background-color: var(--bg-light);
  border: 1px solid #E9EBF5;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.5em;
  color: #4B5565;
  text-decoration: none;
  margin-top: auto;
  transition: var(--transition-default);
  position: relative;
  z-index: 2;
}

.sinirsiz-servis-card-link:hover {
  background-color: #f8f9fb;
  color: #4B5565;
  text-decoration: none;
}

/* Vertical Cards - No blur effect (cleaner design) */

/* Card 1 - Tags */
.sinirsiz-servis-tags {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.sinirsiz-servis-tag-row {
  display: flex;
  gap: 35px;
  justify-content: center;
}

.sinirsiz-servis-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-light);
  border: 1px solid rgba(75, 85, 101, 0.1);
  border-radius: 80px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6em;
  color: #4B5565;
  white-space: nowrap;
  animation: floatingImage 4s ease-in-out infinite;
}

/* Staggered animation delays for tags */
.sinirsiz-servis-tag-row:nth-child(1) .sinirsiz-servis-tag:nth-child(1) { animation-delay: 0s; }
.sinirsiz-servis-tag-row:nth-child(1) .sinirsiz-servis-tag:nth-child(2) { animation-delay: 0.5s; }
.sinirsiz-servis-tag-row:nth-child(2) .sinirsiz-servis-tag:nth-child(1) { animation-delay: 1s; }
.sinirsiz-servis-tag-row:nth-child(2) .sinirsiz-servis-tag:nth-child(2) { animation-delay: 1.5s; }
.sinirsiz-servis-tag-row:nth-child(3) .sinirsiz-servis-tag:nth-child(1) { animation-delay: 2s; }
.sinirsiz-servis-tag-row:nth-child(3) .sinirsiz-servis-tag:nth-child(2) { animation-delay: 2.5s; }
.sinirsiz-servis-tag-row:nth-child(4) .sinirsiz-servis-tag:nth-child(1) { animation-delay: 3s; }
.sinirsiz-servis-tag-row:nth-child(4) .sinirsiz-servis-tag:nth-child(2) { animation-delay: 3.5s; }

/* Card 2 - Wave */
.sinirsiz-servis-wave {
  position: absolute;
  left: -6px;
  top: 202px;
  width: 395px;
  height: 112px;
  z-index: 1;
}

.sinirsiz-servis-wave svg {
  width: 110%;
  height: 130%;
}

/* Electric Current Animation Styles - Moving Spark Effect */
.electric-spark-main {
  animation: electricSparkPulse 0.6s ease-in-out infinite;
}

/* Pulsing effect for the moving spark */
@keyframes electricSparkPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .electric-spark-main {
    animation: electricSparkPulse 1.5s ease-in-out infinite;
  }
}

.sinirsiz-servis-email-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: var(--bg-light);
  border: 2px solid rgba(75, 85, 101, 0.1);
  border-radius: 80px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.19em;
  color: #4B5565;
  width: fit-content;
  height: 52px;
  margin-left: 60px;
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
  z-index: 2;
}

.sinirsiz-servis-email-btn:hover {
  background-color: #f8f9fb;
}

.sinirsiz-servis-email-btn svg {
  width: 18.5px;
  height: 18.5px;
  flex-shrink: 0;
}

/* Card 3 - Segmented Tags */
.sinirsiz-servis-segmented-tags {
  position: absolute;
  left: -173px;
  top: 172px;
  width: 665.9px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 1;
  overflow: hidden;
}

.sinirsiz-servis-segment-row {
  display: flex;
  gap: 13px;
  margin-bottom: 20px;
  width: max-content;
}

/* Animasyonlar - 1. ve 3. satır sola, 2. ve 4. satır sağa */
.sinirsiz-servis-segment-row:first-child {
  animation: scrollLeft 25s linear infinite;
}

.sinirsiz-servis-segment-row:nth-child(2) {
  animation: scrollRight 25s linear infinite;
}

.sinirsiz-servis-segment-row:nth-child(3) {
  animation: scrollLeft 25s linear infinite;
}

.sinirsiz-servis-segment-row:nth-child(4) {
  animation: scrollRight 25s linear infinite;
}

/* Keyframes - Sola kaydırma */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 6.5px));
  }
}

/* Keyframes - Sağa kaydırma */
@keyframes scrollRight {
  0% {
    transform: translateX(calc(-50% - 6.5px));
  }
  100% {
    transform: translateX(0);
  }
}

.sinirsiz-servis-segment-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  height: 34.5px;
  background-color: var(--bg-light);
  border: 1px solid rgba(75, 85, 101, 0.1);
  border-radius: 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12.33px;
  line-height: 1.21em;
  color: #4B5565;
  white-space: nowrap;
}

.sinirsiz-servis-segment-tag svg {
  width: 18.45px;
  height: auto;
  flex-shrink: 0;
}

/* Full Width Card */
.sinirsiz-servis-full-card {
  position: relative;
  background-color: #FBFDFF;
  border: 2px solid #E9EBF5;
  border-radius: 20px;
  padding: 61px 25px;
  height: 287.36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sinirsiz-servis-full-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 312.2px;
  position: relative;
  z-index: 2;
}

.sinirsiz-servis-full-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Horizontal Card - Blur effect with ::before pseudo-element */
.sinirsiz-servis-full-card::before {
  content: '';
  position: absolute;
  width: 452.12px;
  height: 323.33px;
  background: rgb(83 0 255);
  filter: blur(105.244px);
  opacity: 0.1;
  pointer-events: none;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
}
/* Icon Slider Section - 3D Carousel */
.sinirsiz-servis-slider {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.sinirsiz-servis-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  width: 400px;
  height: 180px;
  perspective: 1000px;
}
.sinirsiz-servis-slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
/* Pozisyon durumları */
.sinirsiz-servis-slider-item[data-position="0"] {
  transform: translate(-50%, -50%) translateZ(0) scale(1);
  z-index: 3;
  opacity: 1;
}

.sinirsiz-servis-slider-item[data-position="-1"] {
  transform: translate(-180%, -50%) translateZ(-100px) scale(0.75) rotateY(25deg);
  z-index: 1;
  opacity: 0.6;
}

.sinirsiz-servis-slider-item[data-position="1"] {
  transform: translate(80%, -50%) translateZ(-100px) scale(0.75) rotateY(-25deg);
  z-index: 1;
  opacity: 0.6;
}

.sinirsiz-servis-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid rgba(75, 85, 101, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(4px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 130px;
  height: 130px;
}

/* Aktif durumdaki ikon büyük */
.sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon {
  width: 160px;
  height: 160px;
}

/* Font Awesome ikonları */
.sinirsiz-servis-icon i {
  font-size: 50px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  color: #4B556533;
}

/* Aktif durumdaki ikon daha büyük */
.sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon i {
  font-size: 65px;
}

/* Mor renk - aktif */
.sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon i {
  color: var(--primary-purple);
}

.sinirsiz-servis-slider-nav {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(75, 85, 101, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-default);
  flex-shrink: 0;
}

.sinirsiz-servis-slider-nav:hover {
  background-color: rgba(75, 85, 101, 0.15);
}

.sinirsiz-servis-slider-nav svg {
  width: 5.5px;
  height: 11px;
  color: #4B5565; /* currentColor için stroke rengi */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sinirsiz-servis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sinirsiz-servis-card {
    height: auto;
    min-height: 400px;
  }

  .sinirsiz-servis-segmented-tags {
    left: -50px;
    width: 500px;
  }

  .sinirsiz-servis-full-card {
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 40px 25px;
  }

  .sinirsiz-servis-full-content {
    max-width: 100%;
  }

  .sinirsiz-servis-slider {
    gap: 20px;
  }

  .sinirsiz-servis-slider-track {
    width: 350px;
    height: 150px;
  }

  .sinirsiz-servis-slider-item[data-position="-1"] {
    transform: translate(-160%, -50%) translateZ(-80px) scale(0.7) rotateY(20deg);
  }

  .sinirsiz-servis-slider-item[data-position="1"] {
    transform: translate(60%, -50%) translateZ(-80px) scale(0.7) rotateY(-20deg);
  }

  .sinirsiz-servis-icon {
    width: 100px;
    height: 100px;
  }

  .sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon {
    width: 120px;
    height: 120px;
  }

  .sinirsiz-servis-icon i {
    font-size: 40px;
  }

  .sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon i {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  #section_unlimited_services {
    padding: 40px 0;
  }

  .sinirsiz-servis-card {
    padding: 25px 20px;
  }

  .sinirsiz-servis-card-link {
    width: 100%;
  }

  .sinirsiz-servis-tags {
    margin-top: 30px;
    gap: 16px;
  }

  .sinirsiz-servis-tag-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .sinirsiz-servis-tag {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sinirsiz-servis-segmented-tags {
    left: -20px;
    width: calc(100% + 40px);
    transform: scale(0.8);
  }

  .sinirsiz-servis-segment-row {
    gap: 8px;
    margin-bottom: 36px;
  }

  .sinirsiz-servis-segment-row:first-child,
  .sinirsiz-servis-segment-row:nth-child(2) {
    padding-left: 40px;
  }

  .sinirsiz-servis-wave {
    left: -20px;
    width: calc(100% + 40px);
    height: auto;
  }

  .sinirsiz-servis-email-btn {
    font-size: 12px;
    padding: 6px 12px;
    height: 44px;
  }

  .sinirsiz-servis-slider {
    flex-direction: column;
    gap: 15px;
  }

  .sinirsiz-servis-slider-track {
    width: 300px;
    height: 130px;
  }

  .sinirsiz-servis-slider-item[data-position="-1"] {
    transform: translate(-140%, -50%) translateZ(-60px) scale(0.65) rotateY(15deg);
  }

  .sinirsiz-servis-slider-item[data-position="1"] {
    transform: translate(40%, -50%) translateZ(-60px) scale(0.65) rotateY(-15deg);
  }

  .sinirsiz-servis-icon {
    width: 80px;
    height: 80px;
  }

  .sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon {
    width: 100px;
    height: 100px;
  }

  .sinirsiz-servis-icon i {
    font-size: 32px;
  }

  .sinirsiz-servis-slider-item[data-position="0"] .sinirsiz-servis-icon i {
    font-size: 40px;
  }

  .sinirsiz-servis-full-card {
    padding: 30px 20px;
  }

  .sinirsiz-servis-full-card::before {
    right: -50px;
  }
}


/* ========================================
   İLETİŞİM BİLGİLERİ CARD (İLETİŞİM PAGE)
   ======================================== */

.iletisim-sticky-wrapper {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.iletisim-bilgileri-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.iletisim-bilgileri-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.iletisim-bilgileri-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: #33353e;
  margin: 0;
}

.iletisim-bilgileri-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7a7f99;
  margin: 0;
}

.iletisim-bilgileri-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iletisim-bilgileri-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.iletisim-icon-wrapper {
  width: 50px;
  height: 61px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iletisim-icon-purple {
  background-color: #7844e4;
}

.iletisim-icon-pink {
  background-color: #f02468;
}

.iletisim-icon-green {
  background-color: #17b976;
}

.iletisim-icon-orange {
  background-color: #f45100;
}

.iletisim-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.iletisim-bilgileri-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.iletisim-bilgileri-label {
  font-weight: 700;
  margin: 0;
}

.iletisim-bilgileri-value {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: #7a7f99;
  margin: 0;
}

.iletisim-bilgileri-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(234, 234, 237, 0.5);
}

@media (max-width: 991px) {
  .iletisim-sticky-wrapper {
    position: static;
  }

  .iletisim-bilgileri-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .iletisim-bilgileri-card {
    padding: 20px;
    gap: 24px;
  }

  .iletisim-bilgileri-subtitle {
    font-size: 14px;
  }

  .iletisim-icon-wrapper {
    width: 45px;
    height: 55px;
  }

  .iletisim-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }

  .iletisim-bilgileri-label {
    font-size: 14px;
  }

  .iletisim-bilgileri-value {
    font-size: 13px;
  }
}

/* ========================================
   İLETİŞİM INFO CARD (İLETİŞİM PAGE)
   ======================================== */

.iletisim-info-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.iletisim-info-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.iletisim-info-header svg {
  width: 20.22px;
  height: 23px;
  flex-shrink: 0;
}

.iletisim-info-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.iletisim-info-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: #33353e;
  margin: 0;
}

.iletisim-info-box {
  background-color: rgba(249, 250, 251, 0.7);
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
}

.iletisim-info-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.57;
  color: #666f94;
  margin: 0;
}

@media (max-width: 991px) {
  .iletisim-info-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .iletisim-info-card {
    padding: 20px;
  }

  .iletisim-info-text {
    font-size: 13px;
  }
}

/* ========================================
   SERVISLER PLATFORM SECTION
   ======================================== */

.servisler-platform-section {
  padding: 10px 0 80px 0;
}

.servisler-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 443px;
  margin: 0 auto;
  background: #FFFFFF;
  border-top: 4px solid transparent;
  border-radius: 20px;
  padding: 20px;
}

/* Border colors matching platform colors */
.servisler-platform-card:has(.platform-card-instagram) {
  border-top-color: #E1306C;
}

.servisler-platform-card:has(.platform-card-twitter) {
  border-top-color: #1DA1F2;
}

.servisler-platform-card:has(.platform-card-spotify) {
  border-top-color: #29D266;
}

.servisler-platform-card:has(.platform-card-twitch) {
  border-top-color: #9752FF;
}

.servisler-platform-card:has(.platform-card-discord) {
  border-top-color: #5562EA;
}

.servisler-platform-card:has(.platform-card-pinterest) {
  border-top-color: #E00022;
}

.servisler-platform-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 88px;
  border-radius: 18px;
  padding: 20px;
}

.servisler-platform-overlay {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servisler-platform-header h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.19;
  color: #FFFFFF;
  margin: 0;
  text-align: left;
  position: absolute;
  left: 84px;
  top: 50%;
  transform: translateY(-50%);
}

.servisler-platform-header h3 .platform-service {
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
}

.servisler-platform-body {
  display: grid;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  overflow-y: scroll;
  max-height: 560px;
}

.servisler-hidden-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
  opacity: 0;
}

.servisler-platform-body.expanded .servisler-hidden-items {
  max-height: 1000px;
  opacity: 1;
}

.servisler-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  background: #F6F7FB;
  border: 1px dashed #EAEAED;
  border-radius: 14px;
  padding: 0 18px 0 9.8px;
  transition: var(--transition-default);
  cursor: pointer;
}

.servisler-service-item:hover {
  background: #EBEEF3;
  border-color: #D5D7DC;
}

.servisler-service-item-content {
  display: flex;
  align-items: center;
  gap: 11px;
}

.servisler-service-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* Icon background colors for each platform */
.servisler-platform-card:has(.platform-card-instagram) .servisler-service-icon {
  background-color: #e1306c;
}

.servisler-platform-card:has(.platform-card-facebook) .servisler-service-icon {
  background-color: #1873eb;
}

.servisler-platform-card:has(.platform-card-twitter) .servisler-service-icon {
  background-color: #1da1f2;
}

.servisler-platform-card:has(.platform-card-tiktok) .servisler-service-icon {
  background-color: #101626;
}

.servisler-platform-card:has(.platform-card-youtube) .servisler-service-icon {
  background-color: #ff0000;
}

.servisler-platform-card:has(.platform-card-clubhouse) .servisler-service-icon {
  background-color: #6515dd;
}

.servisler-platform-card:has(.platform-card-soundcloud) .servisler-service-icon {
  background-color: #f97637;
}

.servisler-platform-card:has(.platform-card-tumblr) .servisler-service-icon {
  background-color: #1b3561;
}

.servisler-platform-card:has(.platform-card-pinterest) .servisler-service-icon {
  background-color: #c11f26;
}

.servisler-platform-card:has(.platform-card-spotify) .servisler-service-icon {
  background-color: #22974c;
}

.servisler-platform-card:has(.platform-card-vimeo) .servisler-service-icon {
  background-color: #00a9e9;
}

.servisler-platform-card:has(.platform-card-twitch) .servisler-service-icon {
  background-color: #8d45f8;
}

.servisler-platform-card:has(.platform-card-periscope) .servisler-service-icon {
  background-color: #3fa1c0;
}

.servisler-platform-card:has(.platform-card-linkedin) .servisler-service-icon {
  background-color: #026fac;
}

.servisler-platform-card:has(.platform-card-telegram) .servisler-service-icon {
  background-color: #34a6d8;
}

.servisler-platform-card:has(.platform-card-reddit) .servisler-service-icon {
  background-color: #ff4500;
}

.servisler-platform-card:has(.platform-card-dailymotion) .servisler-service-icon {
  background-color: #2A62AA;
}

.servisler-platform-card:has(.platform-card-dlive) .servisler-service-icon {
  background-color: #d3af03;
}

.servisler-platform-card:has(.platform-card-google) .servisler-service-icon {
  background-color: #4285F4;
}

.servisler-platform-card:has(.platform-card-netflix) .servisler-service-icon {
  background-color: #E50914;
}

.servisler-platform-card:has(.platform-card-nonolive) .servisler-service-icon {
  background-color: #ee2929;
}

.servisler-platform-card:has(.platform-card-pubg) .servisler-service-icon {
  background-color: #DE8D00;
}

.servisler-platform-card:has(.platform-card-seo) .servisler-service-icon {
  background-color: #3e6acd;
}

.servisler-platform-card:has(.platform-card-tinder) .servisler-service-icon {
  background-color: #fe3c72;
}

.servisler-platform-card:has(.platform-card-trovo) .servisler-service-icon {
  background-color: #1bab78;
}

.servisler-platform-card:has(.platform-card-app-store) .servisler-service-icon {
  background-color: #1c6ee9;
}

.servisler-platform-card:has(.platform-card-onlyfans) .servisler-service-icon {
  background-color: #00aff0;
}

.servisler-platform-card:has(.platform-card-likee-app) .servisler-service-icon {
  background-color: #ff2474;
}

.servisler-platform-card:has(.platform-card-snapchat) .servisler-service-icon {
  background-color: #bfad14;
}

.servisler-platform-card:has(.platform-card-discord) .servisler-service-icon {
  background-color: #5865F2;
}

.servisler-platform-card:has(.platform-card-kwai) .servisler-service-icon {
  background-color: #ff6100;
}

.servisler-platform-card:has(.platform-card-shazam) .servisler-service-icon {
  background-color: #0088ff;
}

.servisler-platform-card:has(.platform-card-opensea) .servisler-service-icon {
  background-color: #2081E2;
}

.servisler-platform-card:has(.platform-card-trendyol) .servisler-service-icon {
  background-color: #ff7f00;
}

.servisler-platform-card:has(.platform-card-dolap) .servisler-service-icon {
  background-color: #25d6a2;
}

.servisler-platform-card:has(.platform-card-gardrops) .servisler-service-icon {
  background-color: #ff0073;
}

.servisler-platform-card:has(.platform-card-quora) .servisler-service-icon {
  background-color: #a82400;
}

.servisler-platform-card:has(.platform-card-threads) .servisler-service-icon {
  background-color: #000000;
}

.servisler-platform-card:has(.platform-card-tripadvisor) .servisler-service-icon {
  background-color: #00AF87;
}

.servisler-platform-card:has(.platform-card-trustpilot) .servisler-service-icon {
  background-color: #72b043;
}

.servisler-platform-card:has(.platform-card-kick) .servisler-service-icon {
  background-color: #20ca21;
}

.servisler-platform-card:has(.platform-card-x) .servisler-service-icon {
  background-color: #000;
}

.servisler-platform-card:has(.platform-card-whatsapp) .servisler-service-icon {
  background-color: #4dc247;
}

.servisler-service-item-content span {
  font-weight: 600;
  line-height: 1.19;
  color: #666F94;
}

.servisler-show-more {
  font-weight: 600;
  line-height: 1.19;
  color: #666F94;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.servisler-show-more:hover {
  color: var(--primary-purple);
}

.servisler-show-more:hover .show-more-icon path {
  stroke: var(--primary-purple);
}

.show-more-icon {
  transition: transform 0.3s ease;
}

.servisler-platform-body.expanded .show-more-icon {
  transform: rotate(180deg);
}

@media (max-width: 991px) {
  .servisler-platform-section {
    padding: 40px 0;
  }

  .servisler-platform-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .servisler-platform-section {
    padding: 30px 0;
  }

  .servisler-platform-card {
    max-width: 100%;
    padding: 16px;
  }

  .servisler-platform-header {
    height: 76px;
    padding: 16px;
  }

  .servisler-platform-overlay {
    width: 48px;
    height: 48px;
    left: 12px;
    top: 14px;
  }

  .servisler-platform-overlay svg {
    width: 22px;
    height: 22px;
  }

  .servisler-platform-header h3 {
    font-size: 16px;
    left: 72px;
  }

  .servisler-platform-header h3 .platform-service {
    font-size: 14px;
  }

  .servisler-service-item-content span {
    font-size: 14px;
  }

  .servisler-show-more {
    font-size: 14px;
  }
}

/* ========================================
   LAZY LOAD STYLES
   ======================================== */

/* Lazy Load Container */
.lazy-load-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Lazy Load Poster Image */
.lazy-load-poster {
  transition: opacity 0.3s ease-in-out;
  backface-visibility: hidden;
}

.lazy-load-poster.fade-out {
  opacity: 0;
}

/* Lottie Player Lazy Load */
lottie-player.lottie-player-lazy-click,
lottie-player.lottie-player-lazy-auto {
  transition: opacity 0.3s ease-in-out;
  backface-visibility: hidden;
}

lottie-player.lottie-player-lazy-click[data-loaded="true"],
lottie-player.lottie-player-lazy-auto[data-loaded="true"] {
  display: block !important;
}

/* Loading Skeleton */
.lazy-load-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;
  }
}
/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lazy-load-fade-in {
  animation: fadeIn 0.3s ease-in-out;
}
@media (max-width: 480px) {
  .servisler-platform-card {
    padding: 12px;
    gap: 8px;
  }

  .servisler-platform-header {
    height: 68px;
    padding: 12px;
  }

  .servisler-platform-header h3 {
    font-size: 14px;
    left: 68px;
  }

  .servisler-platform-header h3 .platform-service {
    font-size: 12px;
  }

  .servisler-service-item {
    height: 48px;
    padding: 0 12px 0 8px;
  }

  .servisler-service-item-content {
    gap: 8px;
  }

  .servisler-service-item-content svg {
    width: 28px;
    height: 28px;
  }

  .servisler-service-item > svg {
    width: 15px;
    height: 15px;
  }

  .servisler-service-item-content span {
    font-size: 13px;
  }

  .servisler-show-more {
    font-size: 13px;
  }
}

/* ========================================
   SEPET SECTION STYLES
   ======================================== */

.sepet-section {
  padding: 10px 0 80px 0;
}

/* Sepet Content Wrapper - Flexbox Layout */
.sepet-content-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Left Column - Takes remaining space */
.sepet-left-column {
  flex: 1;
}

/* Right Column - Fixed 250px width, Sticky */
.sepet-right-column {
  width: 250px;
  flex-shrink: 0;
  position: sticky;
  top: 40px;
  align-self: flex-start;
}

/* Contact Form */
.sepet-contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

/* Payment Section in Step 2 */
.sepet-payment-section {
  margin-top: 30px;
}

/* Payment Methods */
.sepet-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sepet-payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sepet-payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 14px;
  cursor: pointer;
  transition: all var(--transition-default);
}

.sepet-payment-option:hover {
  background: rgba(249, 250, 251, 1);
  border-color: rgba(228, 231, 235, 0.8);
}

.sepet-payment-option-active {
  background: rgba(120, 68, 228, 0.1);
  border-color: #7844e4;
}

.sepet-payment-option-active:hover {
  background: rgba(120, 68, 228, 0.15);
}

.sepet-payment-icon {
  width: 40px;
  height: 40px;
  background: #F9FAFB;
  border: 1px solid #E4E7EB80;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sepet-payment-icon svg path {
  fill: #666F94;
  transition: all var(--transition-default);
}

.sepet-payment-option-active .sepet-payment-icon {
  background: rgba(120, 68, 228, 0.05);
}

.sepet-payment-option-active .sepet-payment-icon svg path {
  fill: #7844E4;
}

.sepet-payment-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sepet-payment-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.27;
  color: var(--text-primary);
  margin: 0;
}

.sepet-payment-option-active .sepet-payment-title {
  color: var(--primary-purple);
}

.sepet-payment-provider {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dark-muted);
  margin: 0;
}

.sepet-payment-option-active .sepet-payment-provider {
  color: var(--primary-purple);
}

/* Step Content Container */
.sepet-step-content {
  display: none;
}

.sepet-step-content-active {
  display: block;
}

/* Left Column - Cart Items Container */
.sepet-items-container {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 30px;
}

.sepet-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
}

.sepet-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--text-primary);
  margin: 0;
}

.sepet-description {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7A7F99;
  margin: 0;
}

/* Cart Items List */
.sepet-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cart Item Card */
.sepet-item-card {
  background: rgba(249, 250, 251, 0.7);
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-default);
}

.sepet-item-card:hover {
  background: rgba(249, 250, 251, 1);
  border-color: rgba(234, 234, 237, 0.8);
}

.sepet-item-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sepet-item-icon {
  width: 60px;
  height: 70px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7844e4 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sepet-item-icon i {
  font-size: 24px;
  color: var(--text-light);
}

.sepet-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sepet-item-platform {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--primary-purple);
  margin: 0;
}

.sepet-item-service {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

.sepet-item-username {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  color: var(--text-dark-muted);
  margin: 0;
}

.sepet-item-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sepet-item-price {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.92;
  color: var(--text-dark-muted);
  text-align: right;
  min-width: 80px;
}

.sepet-item-delete {
  width: 60px;
  height: 70px;
  background: rgba(240, 36, 104, 0.1);
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-default);
}

.sepet-item-delete:hover {
  background: rgba(240, 36, 104, 0.2);
  transform: scale(1.05);
}

/* Right Column - Summary Card (Sticky) */
.sepet-summary-card {
  background-color: #ffffff;
  border-radius: 20px;
  width: 250px;
  min-height: 347px;
  height: auto;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

/* Progress Section Container */
.sepet-progress-section {
  position: relative;
  height: 200px;
  flex-shrink: 0;
}

/* Vertical Progress Line (Background) */
.sepet-vertical-line {
  position: absolute;
  left: 24px;
  top: 25px;
  width: 10px;
  height: 154px;
  background: #f6f8fc;
  border-radius: 10px;
  overflow: hidden;
}

/* Progress Fill (Animated) */
.sepet-progress-fill {
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: 0;
  background: #7844e4;
  border-radius: 10px;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 3px;
}

.sepet-progress-fill.step-1 {
  height: 0;
}

.sepet-progress-fill.step-2 {
  height: 65px;
}

/* Progress Icons */
.sepet-progress-icon {
  position: absolute;
  left: 16px;
  width: 26px;
  height: 26px;
  z-index: 1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sepet-progress-icon.active {
  opacity: 1;
  transform: scale(1);
}

.sepet-progress-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

/* Step Info */
.sepet-step-info {
  position: absolute;
  left: 54px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sepet-step-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #33353e;
  margin: 0;
  height: 24px;
}

.sepet-step-status {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: #7a7f99;
  margin: 0;
  height: 18px;
}

.sepet-step-status-active {
  color: rgba(120, 68, 228, 0.7);
}

/* Total Section */
.sepet-total-section {
  position: relative;
  min-height: 58px;
  height: auto;
  border-top: 1px solid #dfe5fc;
  padding: 16px;
  padding-bottom: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  margin: 0 16px;
}

.sepet-total-icon {
  position: absolute;
  left: 6px;
  top: 15.5px;
  width: 40px;
  height: 40px;
  background: #f6f8fc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sepet-total-text {
  position: absolute;
  left: 68px;
  top: 13px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: visible;
}

.sepet-total-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: #7a7f99;
  margin: 0;
  height: 21px;
}

.sepet-total-amount {
  font-weight: 700;
  line-height: 1.5;
  color: #33353e;
  margin: 0;
  height: 24px;
}

/* Continue Button */
.sepet-continue-btn {
  width: 218px;
  height: 50px;
  background-color: #7844e4;
  border: none;
  border-radius: 12px;
  margin: 92px 16px 16px 16px;
  cursor: pointer;
  transition: all var(--transition-default);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
}

.sepet-continue-btn:hover {
  background-color: #6a3bc5;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.2);
}

.sepet-continue-btn span {
  font-weight: 600;
  line-height: 1.19;
  color: #ffffff;
}

.sepet-continue-btn svg {
  width: 12.86px;
  height: 12px;
}

/* Responsive */
@media (max-width: 991px) {
  .sepet-content-wrapper {
    flex-direction: column;
  }

  .sepet-right-column {
    position: relative;
    top: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .sepet-summary-card {
    position: relative;
    top: 0;
    width: 100%;
    height: auto;
  }

  .sepet-continue-btn {
    width: calc(100% - 32px);
  }
}

@media (max-width: 768px) {
  .sepet-section {
    padding: 40px 0;
  }

  .sepet-items-container {
    padding: 20px;
  }

  .sepet-header {
    margin-bottom: 20px;
  }

  .sepet-description {
    font-size: 14px;
  }

  .sepet-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .sepet-item-content {
    width: 100%;
  }

  .sepet-item-actions {
    width: 100%;
    justify-content: space-between;
  }

  .sepet-item-price {
    min-width: auto;
  }

  .sepet-right-column {
    max-width: none;
  }

  .sepet-summary-card {
    width: 100%;
  }

  .sepet-step-title {
    font-size: 14px;
  }

  .sepet-step-status {
    font-size: 11px;
  }

  .sepet-total-label {
    font-size: 13px;
  }

  .sepet-total-amount {
    font-size: 15px;
  }

  .sepet-continue-btn {
    height: 46px;
    width: calc(100% - 32px);
  }

  .sepet-continue-btn span {
    font-size: 15px;
  }
}

/* ========================================
   ÖDEME EKRANI SECTION STYLES
   ======================================== */
.odeme-ekrani-section {
  background: transparent;
  padding: 0 0 80px 0;
}

/* Right Column - Sticky */
.odeme-summary-sticky {
  position: sticky;
  top: 20px;
}

/* Card Base Styles */
.odeme-card,
.odeme-summary-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card Header */
.odeme-card-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.odeme-card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: #33353E;
  margin: 0;
}

.odeme-card-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7A7F99;
  margin: 0;
}

/* Bank Info Box */
.odeme-bank-box {
  background: linear-gradient(128deg, #F8FAFF 0%, #F1F5F9 100%);
  border: 1px solid #E0E7FF;
  border-radius: 20px;
  padding: 24px 30px;
  height: 94px;
  display: flex;
  align-items: center;
}

.odeme-bank-header {
  display: flex;
  align-items: center;
  gap: 30px;
}

.odeme-bank-logo {
  width: 150px;
  height: 47px;
  flex-shrink: 0;
}

.odeme-bank-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.odeme-bank-name {
  font-family: Inter, sans-serif;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #33353E;
  margin: 0;
}

.odeme-bank-account {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #666F94;
  margin: 0;
}

/* Steps Container */
.odeme-steps-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

/* Step Card */
.odeme-step-card {
  background: linear-gradient(128deg, #FEFEFE 0%, #F9FAFB 100%);
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 29px;
  width: 427px;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.odeme-step-card.odeme-step-active {
  background: linear-gradient(128deg, #F8FAFF 0%, #F1F5F9 100%);
  border: 1px solid #E0E7FF;
}

/* Gradient Bar on Active Card */
.odeme-step-gradient {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #3B82F6 0%, #1D4ED8 100%);
  border-radius: 2px 0px 0px 2px;
}

/* Step Header */
.odeme-step-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odeme-step-badge-wrapper {
  display: flex;
  align-items: center;
}

.odeme-step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.odeme-step-number-bg {
  width: 20px;
  height: 20px;
  background: #3B82F6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.odeme-step-number {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.odeme-step-label {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.036em;
  text-transform: uppercase;
  color: #3B82F6;
}

.odeme-step-title {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #111827;
  margin: 0;
}

/* Info Fields */
.odeme-info-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.odeme-info-label {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.036em;
  text-transform: uppercase;
  color: #374151;
}

.odeme-info-value-wrapper {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 10px 17px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.odeme-info-value {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.007em;
  color: #111827;
  flex: 1;
}

.odeme-info-value-bold {
  font-weight: 600;
  font-size: 15px;
}

/* Copy Button */
.odeme-copy-btn {
  width: 32px;
  height: 32px;
  background: #3B82F6;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  flex-shrink: 0;
}

.odeme-copy-btn:hover {
  background: #1D4ED8;
  transform: scale(1.05);
}

.odeme-copy-btn svg {
  width: 16px;
  height: 16px;
}

/* Warning Box */
.odeme-warning-box {
  background: #F0F9FF;
  border: 1px solid #BFDBFE;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  position: relative;
}

.odeme-warning-text {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.025em;
  color: #1E40AF;
  margin: 0;
}

.odeme-warning-text strong {
  font-weight: 700;
}

/* Form Inputs */
.odeme-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odeme-input-wrapper {
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 15px 17px;
  height: 47px;
  display: flex;
  align-items: center;
  transition: var(--transition-default);
  cursor: text;
}

.odeme-input-wrapper:focus-within {
  border-color: #3B82F6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.odeme-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.21;
  color: #111827;
  outline: none;
  width: 100%;
  min-height: 30px;
}

.odeme-input::placeholder {
  color: #9CA3AF;
}

/* Submit Button */
.odeme-submit-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(172deg, #3B82F6 0%, #1D4ED8 100%);
  box-shadow: 0px 4px 12px rgba(59, 130, 246, 0.3);
  border: none;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  position: relative;
  overflow: hidden;
}

.odeme-submit-btn::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.6s;
}

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

.odeme-submit-btn:hover {
  background: linear-gradient(172deg, #1D4ED8 0%, #1E3A8A 100%);
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px rgba(59, 130, 246, 0.4);
}

.odeme-submit-btn:active {
  transform: translateY(0);
}

/* Ucretsiz Deneme Step 3 Responsive */
@media (max-width: 991px) {
  .ucretsiz-deneme-profile-process-wrapper {
    flex-direction: column;
  }

  .ucretsiz-deneme-profile-card {
    width: 100%;
  }

  .ucretsiz-deneme-process-info-step3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ucretsiz-deneme-step-wrapper {
    padding: 12px 16px;
  }

  .ucretsiz-deneme-step-number {
    width: 32px;
    height: 32px;
  }

  .ucretsiz-deneme-step-number span {
    font-size: 14px;
  }

  .ucretsiz-deneme-step-title {
    font-size: 14px;
  }

  .ucretsiz-deneme-step-description {
    font-size: 12px;
  }

  .ucretsiz-deneme-profile-card {
    height: auto;
    padding: 16px;
  }

  .ucretsiz-deneme-process-info-step3 {
    flex-direction: column;
  }

  .ucretsiz-deneme-process-card-step3 {
    width: 100%;
  }

  .ucretsiz-deneme-process-arrow-step3 {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* Summary Card Specific Styles */
.odeme-summary-divider {
  width: 100%;
  height: 1px;
  background: rgba(234, 234, 237, 0.5);
  border-radius: 20px;
}

.odeme-summary-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.odeme-summary-item,
.odeme-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.odeme-summary-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.19;
  color: #7A7F99;
  width: 148px;
}

.odeme-summary-value {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.19;
  color: #33353E;
  width: 198px;
  text-align: right;
}

/* Responsive Styles */
@media (max-width: 1440px) {
  .odeme-steps-container {
    flex-direction: column;
    gap: 16px;
  }

  .odeme-step-card {
    width: 100%;
    min-height: auto;
  }
}

@media (max-width: 1199px) {
  .odeme-summary-sticky {
    position: static;
  }

  .odeme-summary-card {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .odeme-ekrani-section {
    padding: 0 0 60px 0;
  }

  .odeme-card,
  .odeme-summary-card {
    padding: 24px 20px;
  }

  .odeme-bank-box {
    padding: 20px;
    height: auto;
    min-height: 94px;
  }

  .odeme-bank-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .odeme-bank-logo {
    width: 120px;
    height: auto;
  }

  .odeme-step-card {
    padding: 24px 20px;
  }

  .odeme-card-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .odeme-card,
  .odeme-summary-card {
    padding: 20px 16px;
  }

  .odeme-step-card {
    padding: 20px 16px;
  }

  .odeme-bank-box {
    padding: 16px;
  }

  .odeme-info-value-wrapper {
    padding: 10px 12px;
  }

  .odeme-input-wrapper {
    padding: 12px 14px;
  }

  .odeme-warning-box {
    padding: 12px 12px 12px 28px;
  }

  .odeme-warning-box svg {
    margin-top: 40px;
  }
}

/* ========================================
   SIPARIS SORGULA SECTION
   ======================================== */

/* Siparis Container */
.siparis-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  border-radius: 20px;
  background: #FFFFFF;
}

/* Siparis Header */
.siparis-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.siparis-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--text-primary);
  margin: 0;
}

.siparis-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7a7f99;
  margin: 0;
}

/* Siparis Cards List */
.siparis-cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Siparis Card */
.siparis-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: rgba(249, 250, 251, 0.7);
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
}

/* Card Header */
.siparis-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Platform Icon */
.siparis-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background: #7844E4;
  border-radius: 12px;
  flex-shrink: 0;
}

.siparis-platform-icon svg {
  width: 24px;
  height: 24px;
}

/* Order Info */
.siparis-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.siparis-service-name {
  font-weight: 700;
  line-height: 1.21;
  color: var(--primary-purple);
  margin: 0;
}

.siparis-price {
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.siparis-url {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-dark-muted);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Card Divider */
.siparis-card-divider {
  height: 2px;
  background: rgba(234, 234, 237, 0.5);
}

/* Card Footer */
.siparis-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

/* Stats */
.siparis-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.siparis-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.siparis-stat-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.29;
  color: var(--text-primary);
}

.siparis-stat-value {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.29;
  color: #7a7f99;
}

/* Status Badge */
.siparis-status-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  background: #24bb3f;
  border-radius: 8px;
}

.siparis-status-badge span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.29;
  color: #ffffff;
  white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .siparis-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .siparis-platform-icon {
    width: 50px;
    height: 58px;
  }

  .siparis-platform-icon svg {
    width: 20px;
    height: 20px;
  }

  .siparis-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .siparis-stats {
    width: 100%;
    justify-content: space-between;
  }

  .siparis-status-badge {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .siparis-container {
    gap: 24px;
  }

  .siparis-subtitle {
    font-size: 14px;
  }

  .siparis-card {
    padding: 16px;
  }

  .siparis-service-name {
    font-size: 14px;
  }

  .siparis-price {
    font-size: 14px;
  }

  .siparis-url {
    font-size: 11px;
  }

  .siparis-stats {
    gap: 12px;
  }

  .siparis-stat-label,
  .siparis-stat-value {
    font-size: 13px;
  }

  .siparis-status-badge {
    padding: 8px 10px;
  }

  .siparis-status-badge span {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .siparis-card-header {
    gap: 12px;
  }

  .siparis-platform-icon {
    width: 45px;
    height: 52px;
  }

  .siparis-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .siparis-stat {
    min-width: 80px;
  }
}

/* Siparis Ozeti Card (Payment Summary) */
.siparis-ozeti-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  position: sticky;
  top: 40px;
}

/* Siparis Ozeti Header */
.siparis-ozeti-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.siparis-ozeti-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--text-primary);
  margin: 0;
}

.siparis-ozeti-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7a7f99;
  margin: 0;
}

/* Siparis Ozeti Divider */
.siparis-ozeti-divider {
  height: 1px;
  background: rgba(234, 234, 237, 0.5);
}

/* Siparis Ozeti Details */
.siparis-ozeti-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Siparis Ozeti Row */
.siparis-ozeti-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.siparis-ozeti-label {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.18;
  color: #7a7f99;
  width: 148px;
  flex-shrink: 0;
}

.siparis-ozeti-value {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.19;
  color: var(--text-primary);
  text-align: right;
  flex: 1;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .siparis-ozeti-card {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .siparis-ozeti-card {
    padding: 24px;
  }

  .siparis-ozeti-subtitle {
    font-size: 14px;
  }

  .siparis-ozeti-label {
    font-size: 14px;
    width: auto;
    max-width: 140px;
  }

  .siparis-ozeti-value {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .siparis-ozeti-card {
    padding: 20px;
    gap: 14px;
  }

  .siparis-ozeti-details {
    gap: 14px;
  }

  .siparis-ozeti-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .siparis-ozeti-label {
    width: 100%;
    max-width: 100%;
  }

  .siparis-ozeti-value {
    text-align: left;
    width: 100%;
  }
}

/* ========================================
   TELAFI TALEBI SECTION
   ======================================== */
/* Container for two inputs + button */
.telafi-form-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
/* Individual input field */
.telafi-input-field {
  display: flex;
  align-items: center;
  gap: 19px;
  width: 401px;
  height: 62px;
  padding: 0 19px;
  background: #FFFFFF1A;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  transition: border-color var(--transition-default);
  cursor: text;
}

.telafi-input-field:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.telafi-form-container .search-button{
  height: 62px;
  width: 130px;
  border-radius: 16px;
}

.telafi-input-field svg {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .telafi-form-container {
    flex-direction: column;
    width: 100%;
  }

  .telafi-input-field {
    width: 100%;
  }

  .telafi-form-container .search-button {
    width: 100%;
  }
}

/* Telafi Status Badge - Twitter Blue Variant */
.telafi-status-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 12px;
  background: #1da1f2;
  border-radius: 8px;
}

.telafi-status-badge span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.29;
  color: #ffffff;
}

/* Responsive Adjustments for Telafi Badge */
@media (max-width: 991px) {
  .telafi-status-badge {
    align-self: flex-end;
  }
}

@media (max-width: 768px) {
  .telafi-status-badge {
    padding: 8px 10px;
  }

  .telafi-status-badge span {
    font-size: 13px;
  }
}

/* ========================================
   PAKET ADIMLAR SECTION
   ======================================== */

.paket-adimlar-section {
  padding: 30px 0 80px 0;
  background: url('../images/paket-adimlar/filler-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1000;
}

/* Overlay to block background interaction */
.paket-adimlar-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 999;
  pointer-events: auto;
}

.paket-adimlar-wrapper {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 1001;
}

/* Left Card */
.paket-adimlar-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background-color: #ffffff;
  border: 2px solid #eaeaed;
  border-top: none;
  border-radius: 0px 20px 20px 20px;
  width: 962px;
}

/* Back Button */
.paket-adimlar-back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 10px;
  height: 40px;
  background-color: #f6f7fb;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
  width: fit-content;
}

.paket-adimlar-back-btn svg {
  width: 17px;
  height: 17px;
  transform: rotate(180deg);
}

.paket-adimlar-back-btn span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.177;
  color: #7a7f99;
}

.paket-adimlar-back-btn:hover {
  background-color: #ededf2;
}

/* Service Info */
.paket-adimlar-service-info {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 425px;
}

.paket-adimlar-service-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 257.61px;
}

.paket-adimlar-service-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.209;
  color: #33353e;
  margin: 0;
}

.paket-adimlar-service-subtitle {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.177;
  color: #7a7f99;
  margin: 0;
}

/* Input Wrapper */
.paket-adimlar-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 10px 15px 15px;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
  width: 100%;
  position: relative;
  transition: var(--transition-default);
  height: 66px;
  cursor: text;
}

.paket-adimlar-input-wrapper:focus-within {
  border-color: #7844e4;
}

.paket-adimlar-input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.paket-adimlar-input-divider {
  width: 1px;
  height: 30px;
  background-color: rgba(102, 111, 148, 0.1);
  border-radius: 27px;
}

.paket-adimlar-input-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  position: relative;
}

.paket-adimlar-input-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.429;
  color: #666f94;
  opacity: 0.8;
  margin: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}

/* Floating label when input has value or is focused */
.paket-adimlar-input-wrapper.has-value .paket-adimlar-input-label,
.paket-adimlar-input-wrapper:focus-within .paket-adimlar-input-label {
  top: 3px;
  font-size: 12px;
  opacity: 0.8;
}

.paket-adimlar-input-field {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: #33353e;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  width: 100%;
  transform: translateY(8px);
  min-height: 30px;
}

.paket-adimlar-input-field::placeholder {
  color: transparent;
  opacity: 0;
}

.paket-adimlar-kontrol-btn {
  width: 100px;
  height: 46px;
  background-color: #7844e4;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
}

.paket-adimlar-kontrol-btn span {
  font-weight: 600;
  line-height: 1.193;
  color: #ffffff;
}

.paket-adimlar-kontrol-btn:hover {
  background-color: #6a3acc;
}

/* Premium variant - blue button */
.paket-type-premium .paket-adimlar-kontrol-btn {
  background-color: #296FF9;
}

.paket-type-premium .paket-adimlar-kontrol-btn:hover {
  background-color: #1e5cd8;
}

/* Warning Message */
.paket-adimlar-warning {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  height: 50px;
  background-color: rgba(249, 250, 251, 0.7);
  border: 1px solid #e4e7eb;
  border-radius: 12px;
  justify-content: center;
}

.paket-adimlar-warning svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.paket-adimlar-warning p {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.193;
  color: #666f94;
  margin: 0;
}

/* Loading State for Kontrol Button */
.paket-adimlar-kontrol-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.paket-adimlar-kontrol-btn.loading {
  position: relative;
}

.paket-adimlar-kontrol-btn.loading span {
  opacity: 0;
}

.paket-adimlar-kontrol-btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: paket-adimlar-spin 0.6s linear infinite;
}

@keyframes paket-adimlar-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Result Wrapper (Step 2) */
.paket-adimlar-result-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Input Display (non-editable) */
.paket-adimlar-input-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
}

.paket-adimlar-input-display-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.paket-adimlar-input-display-left svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.paket-adimlar-input-display-divider {
  width: 1px;
  height: 20px;
  background: rgba(102, 111, 148, 0.1);
  border-radius: 27px;
  flex-shrink: 0;
}

.paket-adimlar-input-display-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 452px;
}

.paket-adimlar-input-display-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #666F94;
  opacity: 0.8;
}

.paket-adimlar-input-display-value {
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
}

.paket-adimlar-input-display-badge {
  width: 100px;
  height: 46px;
  background: rgba(120, 68, 228, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paket-adimlar-input-display-badge span {
  font-weight: 600;
  line-height: 1.19;
  color: #7844E4;
}

/* Account Card */
.paket-adimlar-account-card {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 17px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 16px;
}

.paket-adimlar-account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.paket-adimlar-account-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.paket-adimlar-profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #E4E7EB;
  flex-shrink: 0;
  background: #F6F7FB;
}

.paket-adimlar-profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.paket-adimlar-account-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.paket-adimlar-account-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
  margin: 0;
}

.paket-adimlar-account-username {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #666F94;
  margin: 0;
}

/* Account Stats */
.paket-adimlar-account-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}

.paket-adimlar-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.paket-adimlar-stat-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.18;
  color: #666F94;
}

.paket-adimlar-stat-value {
  font-weight: 700;
  line-height: 1.25;
  color: #33353E;
}

.paket-adimlar-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(102, 111, 148, 0.2);
  border-radius: 20px;
}

/* Stat Increment Badge - Used in JS */
.paket-adimlar-stat-increment-badge {
  font-weight: 600;
  line-height: 1.19;
  color: #7844E4;
  font-size: 14px;
}

/* Uygun Badge */
.paket-adimlar-uygun-badge {
  width: 100px;
  height: 46px;
  background: rgba(120, 68, 228, 0.1);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  line-height: 1.19;
  color: #7844E4;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom Bar (Step 2) */
.paket-adimlar-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 12px;
}

.paket-adimlar-bottom-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paket-adimlar-icon-wrapper {
  width: 54px;
  height: 54px;
  background: #7844E4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-default);
}

/* Premium variant - blue background */
.paket-type-premium .paket-adimlar-icon-wrapper {
  background: #296FF9;
}

.paket-adimlar-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Quantity Control */
.paket-adimlar-quantity-control {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px;
  background: #FFFFFF;
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 12px;
}

/* Quantity Input Wrapper with Multiplier */
.paket-adimlar-qty-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paket-adimlar-multiplier {
  position: absolute;
  left: 36%;
  top: -3px;
  transform: translateY(-50%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #7844E4;
  pointer-events: none;
  z-index: 1;
}

.paket-type-premium .paket-adimlar-multiplier {
  color: #296FF9;
}

.paket-adimlar-qty-btn {
  width: 34px;
  height: 34px;
  background: #EFF1F4;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  padding: 8.95px;
}

.paket-adimlar-qty-btn:hover {
  background: #E5E7EC;
}

.paket-adimlar-qty-input {
  width: 68px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #33353E;
  border: none;
  outline: none;
  background: transparent;
  -moz-appearance: textfield;
  appearance: textfield;
}

.paket-adimlar-qty-input::-webkit-outer-spin-button,
.paket-adimlar-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Right Side */
.paket-adimlar-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paket-adimlar-selected-price {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.73;
  color: #666F94;
  text-align: right;
  min-width: 80px;
}

.paket-adimlar-add-to-cart {
  height: 50px;
  background: #FF5601;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.19;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16.5px;
}

.paket-adimlar-add-to-cart:hover {
  background: #E64E01;
}

.paket-adimlar-add-to-cart svg {
  width: 25px;
  height: 24px;
  flex-shrink: 0;
}

/* Post Image Increment Section */
.paket-adimlar-post-increment {
  display: flex;
  gap: 10px;
}

.paket-adimlar-post-image-wrapper {
  position: relative;
  width: 142px;
  height: 142px;
  border: 1.6px solid #7844E4;
  border-radius: 16px;
  padding: 8px;
  background: transparent;
  transition: border-color var(--transition-default);
}

.paket-adimlar-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.paket-adimlar-post-increment-badge {
  position: absolute;
  bottom: 11.65px;
  left: 50%;
  transform: translateX(-50%);
  background: #7844E4;
  border-radius: 12px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #FFFFFF;
  text-align: center;
  transition: background-color var(--transition-default);
}

/* Premium variant - Blue border and badge */
.paket-type-premium .paket-adimlar-post-image-wrapper {
  border-color: #296FF9;
}

.paket-type-premium .paket-adimlar-post-increment-badge {
  background: #296FF9;
  color: #FFFFFF;
}

/* Post Grid Selection - 12 Item Grid */
.paket-adimlar-post-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.paket-adimlar-post-grid-row {
  display: flex;
  gap: 10px;
}
.paket-adimlar-post-grid-item {
  position: relative;
  width: 142px;
  height: 142px;
  border: 1.6px solid #E4E7EB;
  border-radius: 16px;
  padding: 8px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-default);
}
.paket-adimlar-post-grid-item:hover {
  border-color: rgba(120, 68, 228, 0.5);
}
.paket-adimlar-post-grid-item.selected {
  border-color: #7844E4;
  border-width: 1.6px;
}

.paket-adimlar-grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.paket-adimlar-post-grid-item::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  border-radius: 0 0 14px 14px;
  pointer-events: none;
  z-index: 1;
}

.paket-adimlar-grid-badge {
  position: absolute;
  bottom: 11.65px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  color: #FFFFFF;
  text-align: center;
  pointer-events: none;
  transition: background-color var(--transition-default);
  z-index: 2;
}

.paket-adimlar-post-grid-item.selected .paket-adimlar-grid-badge {
  background: #7844E4;
}

/* Premium variant - Blue border and badge for grid items */
.paket-type-premium .paket-adimlar-post-grid-item.selected {
  border-color: #296FF9;
}

.paket-type-premium .paket-adimlar-post-grid-item.selected .paket-adimlar-grid-badge {
  background: #296FF9;
}

.paket-type-premium .paket-adimlar-post-grid-item:hover {
  border-color: rgba(41, 111, 249, 0.5);
}

/* Package Type Tabs - Reusing from Paketler Section */
.paket-adimlar-wrapper .paket-type-tabs {
  width: 390px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .paket-adimlar-section {
    padding: 30px 0;
    min-height: auto;
  }

  .paket-adimlar-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .paket-adimlar-card {
    width: 100%;
  }

  .paket-adimlar-wrapper .paket-type-tabs {
    width: 100%;
    order: -1;
  }
}

@media (max-width: 768px) {
  .paket-adimlar-card {
    padding: 20px;
    border-radius: 16px;
  }

  .paket-adimlar-input-wrapper {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 15px 15px 15px;
  }

  .paket-adimlar-input-divider {
    display: none;
  }

  .paket-adimlar-input-content {
    width: 100%;
    order: 1;
  }

  .paket-adimlar-kontrol-btn {
    width: 100%;
    order: 2;
  }

  .paket-adimlar-warning {
    flex-direction: column;
    height: auto;
    padding: 12px;
    text-align: center;
  }

  .paket-adimlar-wrapper .paket-type-tabs {
    gap: 5px;
  }

  .paket-adimlar-wrapper .paket-type-tab {
    padding: 15px;
  }

  .paket-adimlar-wrapper .paket-type-tab-content {
    gap: 8px;
  }
  
  .paket-adimlar-account-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .paket-adimlar-account-stats {
    gap: 12px;
  }
  
  .paket-adimlar-bottom-bar {
    flex-direction: column;
    gap: 16px;
  }
  
  .paket-adimlar-bottom-left,
  .paket-adimlar-bottom-right {
    width: 100%;
  }
  
  .paket-adimlar-quantity-control {
    flex: 1;
    width: 100%;
  }
  
  .paket-adimlar-qty-input-wrapper {
    flex: 1;
  }
  
  .paket-adimlar-add-to-cart {
    flex: 1;
    width: 100%;
  }
  
  .paket-adimlar-input-display {
    flex-wrap: wrap;
  }
  
  .paket-adimlar-input-display-content {
    width: auto;
    flex: 1;
  }
  
  .paket-adimlar-input-display-badge {
    width: 100%;
  }

  .paket-adimlar-post-image-wrapper {
    width: 120px;
    height: 120px;
    padding: 6px;
  }

  .paket-adimlar-post-increment-badge {
    font-size: 12px;
    padding: 4px 8px;
    bottom: 8px;
  }

  /* Grid adjustments for mobile */
  .paket-adimlar-post-grid-row {
    gap: 8px;
    flex-wrap: wrap;
  }

  .paket-adimlar-post-grid-item {
    width: 120px;
    height: 120px;
    padding: 6px;
  }

  .paket-adimlar-grid-badge {
    font-size: 12px;
    padding: 4px 8px;
    bottom: 8px;
  }
}

/* ========================================
   PAKET ADIMLAR UPSELL SECTION (STEP 3)
   ======================================== */

/* Upsell Wrapper */
.paket-adimlar-upsell-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Upsell Header */
.paket-adimlar-upsell-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Upsell Cards Grid */
.paket-adimlar-upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Upsell Card */
.paket-adimlar-upsell-card {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 17px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #E4E7EB;
  border-radius: 16px;
}

/* Card Header - Now includes slider on the right */
.paket-adimlar-upsell-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.paket-adimlar-upsell-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.paket-adimlar-upsell-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 0 0 auto;
  min-width: 120px;
}

.paket-adimlar-upsell-title h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
  margin: 0;
  white-space: nowrap;
}

.paket-adimlar-upsell-title p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  color: #666F94;
  opacity: 0.8;
  margin: 0;
  white-space: nowrap;
}

/* Card Body - Now only contains stats */
.paket-adimlar-upsell-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Slider Wrapper - Now inside header */
.paket-adimlar-upsell-slider-wrapper {
  flex: 1;
  min-width: 0;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
}

.paket-adimlar-upsell-slider {
  width: 100%;
  height: 16px;
  position: relative;
  cursor: pointer;
  outline: none;
  border-radius: 20px;
}

.paket-adimlar-upsell-slider:focus {
  outline: 2px solid #7844E4;
  outline-offset: 2px;
}

.paket-type-premium .paket-adimlar-upsell-slider:focus {
  outline-color: #296FF9;
}

.paket-adimlar-upsell-price-input-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.paket-adimlar-upsell-price-input {
  width: 90px;
  text-align: left;
}

.paket-adimlar-upsell-price-currency {
  font-size: 15px;
  font-weight: 600;
  color: #666F94;
}

.paket-adimlar-upsell-slider-thumb:focus {
  outline: 2px solid #7844E4;
  outline-offset: 2px;
}

.paket-type-premium .paket-adimlar-upsell-slider-thumb:focus {
  outline-color: #296FF9;
}

.paket-adimlar-upsell-slider-track {
  width: 100%;
  height: 16px;
  background: rgba(120, 68, 228, 0.2);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.paket-adimlar-upsell-slider-fill {
  height: 16px;
  background: #7844E4;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.paket-adimlar-upsell-slider-thumb {
  width: 22px;
  height: 22px;
  background: #481E9F;
  border: 2.2px solid #7844E4;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  z-index: 2;
}

/* Premium variant - blue colors */
.paket-type-premium .paket-adimlar-upsell-slider-track {
  background: rgba(41, 111, 249, 0.2);
}

.paket-type-premium .paket-adimlar-upsell-slider-fill {
  background: #296FF9;
}

.paket-type-premium .paket-adimlar-upsell-slider-thumb {
  background: #1E4DB7;
  border-color: #296FF9;
}

.paket-type-premium .paket-adimlar-upsell-icon rect {
  fill: #296FF9;
}

.paket-type-premium .paket-adimlar-upsell-total-icon rect {
  fill: #296FF9;
}

.paket-adimlar-upsell-slider-thumb:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Stats Row */
.paket-adimlar-upsell-stats {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 15px;
}

.paket-adimlar-upsell-stat {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  flex: 1;
}

.paket-adimlar-upsell-stat svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.paket-adimlar-upsell-divider {
  width: 1px;
  height: 10px;
  background: rgba(102, 111, 148, 0.1);
  border-radius: 13.5px;
  flex-shrink: 0;
}

.paket-adimlar-upsell-stat-value {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.33;
  color: #33353E;
  flex: 1;
}

/* Upsell Input Field Styling */
.paket-adimlar-upsell-input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  text-align: left;
  width: 100%;
  -moz-appearance: textfield; /* Remove spinner in Firefox */
  appearance: textfield;
}

.paket-adimlar-upsell-input::-webkit-inner-spin-button,
.paket-adimlar-upsell-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.paket-adimlar-upsell-input:focus {
  outline: none;
}

/* Bottom Section */
.paket-adimlar-upsell-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 0;
}

.paket-adimlar-upsell-total {
  display: flex;
  align-items: center;
  gap: 12px;
}

.paket-adimlar-upsell-total-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.paket-adimlar-upsell-total-text {
  display: flex;
  flex-direction: column;
}

.paket-adimlar-upsell-total-label {
  font-size: 16px;
  font-weight: 500;
  color: #666F94;
}

.paket-adimlar-upsell-total-price {
  font-size: 20px;
  font-weight: 700;
  color: #666F94;
}

/* Action Buttons */
.paket-adimlar-upsell-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.paket-adimlar-upsell-btn {
  height: 50px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.19;
  cursor: pointer;
  transition: var(--transition-default);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: none;
}

.paket-adimlar-upsell-btn-primary {
  background: #FF5601;
  color: #FFFFFF;
  width: 164px;
}

.paket-adimlar-upsell-btn-primary:hover {
  background: #E64E01;
}

.paket-adimlar-upsell-btn-primary svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.paket-adimlar-upsell-btn-outline {
  background: transparent;
  color: #FF5601;
  border: 1px solid #FF5601;
  width: 210px;
}

.paket-adimlar-upsell-btn-outline:hover {
  background: rgba(255, 86, 1, 0.05);
}

/* Responsive Design for Upsell Section */
@media (max-width: 768px) {
  .paket-adimlar-upsell-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .paket-adimlar-upsell-card {
    padding: 15px;
    gap: 12px;
  }

  .paket-adimlar-upsell-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .paket-adimlar-upsell-title {
    min-width: auto;
  }

  .paket-adimlar-upsell-slider-wrapper {
    width: 100%;
  }

  .paket-adimlar-upsell-stats {
    flex-direction: column;
    gap: 10px;
  }

  .paket-adimlar-upsell-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .paket-adimlar-upsell-total {
    width: 100%;
  }

  .paket-adimlar-upsell-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .paket-adimlar-upsell-btn {
    width: 100% !important;
  }
}

/* ========================================
   MÜŞTERILERINIZLE BAĞ KURUN SECTION
   ======================================== */

#section_customer_connect {
  padding: 60px 0;
}

.musteriler-bag-kurun-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1122px;
  margin: 0 auto;
}

/* Left Card - Blue */
.musteriler-left-card {
  flex: 1;
  height: 889px;
  background: #D2E9FC;
  border-radius: 30px;
  padding: 60px 40px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.musteriler-left-content {
  display: flex;
  flex-direction: column;
}

.musteriler-left-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.musteriler-small-label {
  font-weight: 800;
  font-size: 35px;
  line-height: 1.8em;
  color: #6EBDFF;
  margin: 0;
}

.musteriler-main-title {
  font-weight: 800;
  font-size: 45px;
  line-height: 1.4em;
  color: #0066BA;
  margin: 0;
}

.musteriler-phone-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.musteriler-phone-wrapper {
  position: relative;
  width: 475px;
  height: 475px;
  border-radius: 18px;
  overflow: hidden;
  padding: 5px;
}

.musteriler-phone-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 66px;
  background: linear-gradient(180deg, rgba(210, 233, 252, 0) 0%, rgba(210, 233, 252, 1) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 0 0 15px 15px;
}

.musteriler-lottie {
  display: block;
  width: 450px;
  height: 470px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
}

/* Notification Badges */
/* Customer Connect Notification - Uses global component + overrides */
#section_customer_connect .notification-badge {
  box-shadow: 0px 0px 15px 0px rgba(110, 189, 255, 0.25);
  animation-duration: 3s; /* 4s yerine 3s */
}

#section_customer_connect .notification-text {
  max-width: 234px;
}

.musteriler-phone-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.musteriler-phone-image.active {
  opacity: 1;
  pointer-events: auto;
}

.musteriler-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 20px;
}

.musteriler-slide-info {
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.musteriler-slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.musteriler-slide-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.musteriler-slide-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25em;
  color: #0066BA;
  margin: 0;
}

.musteriler-slide-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67em;
  color: #0066BA;
  margin: 0;
  max-width: 523px;
}

.musteriler-nav-arrows {
  display: flex;
  gap: 30px;
  align-items: center;
}

.musteriler-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 102, 186, 0.1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.musteriler-arrow-btn:hover {
  background: rgba(0, 102, 186, 0.2);
  transform: scale(1.1);
}

.musteriler-arrow-btn:active {
  transform: scale(0.95);
}
/* Right Card - Purple */
.musteriler-right-card {
  flex: 0 0 405px;
  max-width: 430px;
  height: 889px;
  background: #EDE5FF;
  border-radius: 30px;
  padding: 60px 40px 0 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.musteriler-right-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.musteriler-right-label {
  font-weight: 900;
  font-size: 35px;
  line-height: 1.25em;
  color: #BFA0FF;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
  margin: 0;
}

.musteriler-right-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 1.4em;
  color: #7844E4;
  margin: 0;
}

.musteriler-right-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5em;
  color: #7844E4;
  margin: 0;
}

.musteriler-character-image {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 10px;
}

.musteriler-character-image img {
  max-width: 325px;
  height: auto;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .musteriler-bag-kurun-wrapper {
    flex-direction: column;
  }

  .musteriler-left-card,
  .musteriler-right-card {
    max-width: 100%;
  }

  .musteriler-right-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  #section_customer_connect {
    padding: 60px 0;
  }

  .musteriler-left-card,
  .musteriler-right-card {
    padding: 40px 24px 24px;
  }

  .musteriler-small-label {
    font-size: 24px;
  }

  .musteriler-main-title,
  .musteriler-right-title {
    font-size: 32px;
  }

  .musteriler-slide-title {
    font-size: 20px;
  }

  .musteriler-phone-wrapper {
    width: 240px;
    height: 365px;
  }

  .musteriler-character-image img {
    max-width: 250px;
  }

  .musteriler-right-label {
    font-size: 28px;
  }

  /* Hide notification badges on mobile to avoid overflow */
  .musteriler-notification-badge {
    display: none;
  }
}
/* ========================================
  PRICE TABLE SECTION
  ======================================== */

.price-table-section {
  padding: 0 0 60px 0;
}

.price-table-wrapper {
  background-color: var(--bg-light);
  border-radius: 20px;
  border-top: 4px solid #E1306C;
  padding: 20px;
  margin-bottom: 10px;
  overflow: hidden;
}

.price-table-header {
  background-color: #E1306C;
  border-radius: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 10px;
}

.price-table-header-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-table-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(2.857142925262451px);
  border: 0.7142857313156128px solid rgba(255, 255, 255, 0.1);
  border-radius: 10.714285850524902px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-table-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.price-table-title {
  color: var(--text-light);
  margin: 0;
}

.price-table-platform-name {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1em;
}

.price-table-platform-service {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0%;
}

/* Table Styles */
.price-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-table-row {
  display: flex;
  align-items: center;
  border-radius: 20px;
}

/* Header Row */
.price-table-row.header {
  background-color: #DEE3F5;
  border-radius: 20px;
}

.price-table-row.header .price-table-cell {
  padding: 16px 20px;
}

.price-table-row.header .price-table-cell:first-child {
  border-radius: 20px 0 0 20px;
}

.price-table-row.header .price-table-cell:last-child {
  border-radius: 0 20px 20px 0;
}

/* Data Row */
.price-table-row.data {
  background-color: #F6F7FB;
  border: 1px dashed #EAEAED;
  border-radius: 20px;
  min-height: 74px;
}

.price-table-row.data .price-table-cell {
  padding: 12px;
}

/* Cell Styles */
.price-table-cell {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.21875em;
  color: #666F94;
  display: flex;
  align-items: center;
}

.price-table-cell.paket-adi {
  flex: 1;
  min-width: 0;
  gap: 11px;
  padding-left: 20px;
}

.price-table-package-info {
  display: flex;
  align-items: center;
  gap: 11px;
}

.price-table-cell.fiyat {
  width: 180px;
  flex-shrink: 0;
}

.price-table-cell.miktar {
  width: 180px;
  flex-shrink: 0;
}

.price-table-cell.sure {
  width: 180px;
  flex-shrink: 0;
}

.price-table-cell.satin-al {
  width: 188px;
  flex-shrink: 0;
  justify-content: flex-end;
  padding-right: 12px;
}

.price-table-row.header .price-table-cell.satin-al {
  justify-content: center;
}

.price-table-icon {
  width: 32px;
  height: 32px;
  background: rgba(225, 48, 108, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-table-icon svg {
  width: 16px;
  height: 16px;
}

.price-table-cell.fiyat {
  font-weight: 700;
}

.price-table-btn {
  background-color: #E1306C;
  border-radius: 12px;
  padding: 14px 23.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-default);
  font-weight: 600;
  line-height: 1.1929999589920044em;
  color: var(--text-light);
  width: 164px;
  height: 50px;
  justify-content: center;
}

.price-table-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.price-table-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
  .price-table-cell.paket-adi {
    flex: 1;
    min-width: 250px;
  }

  .price-table-cell.fiyat,
  .price-table-cell.miktar,
  .price-table-cell.sure {
    width: 140px;
  }

  .price-table-cell.satin-al {
    width: 170px;
  }

  .price-table-btn {
    width: 145px;
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .price-table-section {
    padding: 20px 0;
  }

  .price-table-wrapper {
    padding: 16px;
    overflow-x: auto;
  }

  .price-table {
    min-width: 900px;
  }
}

@media (max-width: 991px) {
  .price-table-section {
    padding: 15px 0 40px 0;
  }

  .price-table-wrapper {
    padding: 16px;
    border-top-width: 4px;
    margin-bottom: 16px;
  }

  .price-table-header {
    height: 72px;
    padding: 0 16px;
    border-radius: 20px;
  }

  .price-table-header-content {
    gap: 15px;
  }

  .price-table-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .price-table-icon-wrapper svg {
    width: 26px;
    height: 26px;
  }

  .price-table-title {
    font-size: 18px;
  }

  .price-table-platform-name {
    font-size: 18px;
    line-height: 1em;
  }

  .price-table-platform-service {
    font-size: 18px;
    line-height: 1em;
  }

  /* Mobile: Card-based layout */
  .price-table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: unset;
  }

  /* Hide desktop header row on mobile */
  .price-table-row.header {
    display: none;
  }

  /* Transform each data row into a vertical card */
  .price-table-row.data {
    display: flex;
    flex-direction: column;
    background: #F6F7FB;
    border: 1px dashed #EAEAED;
    border-radius: 15px;
    gap: 0;
    min-height: unset;
    overflow: hidden;
  }

  .price-table-row.data .price-table-cell {
    width: 100%;
    min-height: unset;
    padding: 15px 16px;
    background: transparent;
    border: none;
    gap: 6px;
    justify-content: space-between;
  }

  /* Cell separators - only between cells */
  .price-table-row.data .price-table-cell:not(:last-child) {
  }

  /* Add labels to cells on mobile */
  .price-table-cell.paket-adi::before {
    content: 'Paket Adı:';
    font-weight: 600;
    font-size: 15px;
    color: #666F94;
    width: 140px;
    flex-shrink: 0;
  }

  .price-table-cell.fiyat::before {
    content: 'Fiyat:';
    font-weight: 600;
    font-size: 15px;
    color: #666F94;
    width: 200px;
    flex-shrink: 0;
  }

  .price-table-cell.miktar::before {
    content: 'Miktar:';
    font-weight: 600;
    font-size: 15px;
    color: #666F94;
    width: 200px;
    flex-shrink: 0;
  }

  .price-table-cell.sure::before {
    content: 'Ortalama Süre:';
    font-weight: 600;
    font-size: 15px;
    color: #666F94;
    width: 200px;
    flex-shrink: 0;
  }

  /* Package name cell - special layout */
  .price-table-cell.paket-adi {
    padding-left: 16px;
    flex-direction: row;
    align-items: center;
  }

  .price-table-package-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 10px;
    width: 188px;
    flex-shrink: 0;
  }

  /* Other cells - row layout with centered content */
  .price-table-cell.fiyat,
  .price-table-cell.miktar,
  .price-table-cell.sure {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .price-table-cell.fiyat > span,
  .price-table-cell.miktar > span,
  .price-table-cell.sure > span {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 1;
  }

  /* Button cell - no label, full width button */
  .price-table-cell.satin-al {
    padding: 15px 16px;
    justify-content: center;
    align-items: center;
  }

  .price-table-cell.satin-al::before {
    display: none;
  }

  .price-table-btn {
    width: 100%;
    height: 50px;
    padding: 14px 16px;
    justify-content: center;
    font-size: 16px;
  }

  /* Icon sizing on mobile */
  .price-table-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .price-table-icon svg {
    width: 16px;
    height: 16px;
  }

  /* Typography adjustments */
  .price-table-cell {
    font-size: 15px;
    line-height: 1.3em;
  }

  .price-table-cell.fiyat {
    font-weight: 700;
  }
}


  /* ===============================================================
  MÜŞTERİ PANELİ STYLES
  =============================================================== */


/* ========================================
   USER PROFILE CARD (NAVBAR)
   ======================================== */
.user-profile-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  height: 50px;
  background: #F5F7FD;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
}

.user-profile-card:hover {
  background: #E8ECF8;
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  display: flex;
  flex-direction: column;
  width: 132px;
}

.user-name,
.user-balance {
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-name {
  font-size: 14px;
  color: #465681;
}

.user-balance {
  font-size: 12px;
  text-align: left;
  color: #7A7F99;
}

/* Responsive */
@media (max-width: 991px) {
  .user-profile-card {
    padding: 0 8px;
    height: 45px;
  }

  .user-avatar {
    width: 26px;
    height: 26px;
  }

  .user-info {
    width: auto;
    max-width: 120px;
  }

  .user-name { font-size: 13px; }
  .user-balance { font-size: 11px; }
}

/* ========================================
   USER PROFILE DROPDOWN
   ======================================== */
.user-profile-wrapper {
  position: relative;
}

.user-profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: -5px;
  width: 200px;
  background: #FFFFFF;
  border: 1px solid #F0F1F9;
  border-radius: 15px;
  box-shadow: 0px 5px 20px 0px rgba(47, 57, 82, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.user-profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-profile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-top: 1px solid #F0F1F9;
}

.user-profile-dropdown-item:first-child {
  border-top: none;
}

.user-profile-dropdown-item:first-child:hover {
  border-radius: 15px 15px 0 0;
}

.user-profile-dropdown-item:last-child:hover {
  border-radius: 0 0 15px 15px;
}

.user-profile-dropdown-item:hover {
  background-color: #F5F7FD;
}

.user-profile-dropdown-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.user-profile-dropdown-item span {
  font-weight: 600;
  line-height: 19px;
  color: #666F94;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {
  .user-profile-dropdown {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    box-shadow: 0px -5px 20px 0px rgba(47, 57, 82, 0.15);
  }
  
  .user-profile-dropdown.active {
    transform: translateY(0);
  }
  
  .user-profile-dropdown-item {
    padding: 16px 20px;
  }
  
  .user-profile-dropdown-item span {
    font-size: 15px;
  }
  
  .user-profile-dropdown-item:first-child:hover {
    border-radius: 20px 20px 0 0;
  }
  
  .user-profile-dropdown-item:last-child:hover {
    border-radius: 0 0 0 0;
  }
}

/* ========================================
   MÜŞTERİ PANELİ - GRID LAYOUT
   ======================================== */
.musteri-panel-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: var(--spacing-lg);
  padding: var(--spacing-lg) 0;
  max-width: 1440px;
  margin: 0 auto;
  margin-bottom: 130px;
}

/* ========================================
   MÜŞTERİ PANELİ - SIDEBAR
   ======================================== */
.musteri-sidebar {
  position: sticky;
  top: var(--spacing-lg);
  height: fit-content;
}

/* Single Sidebar Card */
.musteri-sidebar-card {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--primary-purple);
}

/* User Profile Section */
.musteri-user-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.musteri-user-avatar-wrapper {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.musteri-user-avatar {
  width: 100%;
  height: 100%;
  border-radius: 527.78px;
  object-fit: cover;
}

.musteri-user-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.musteri-user-name {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.055em;
  color: var(--text-primary);
  margin: 0;
}

.musteri-user-balance {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.267em;
  color: var(--primary-purple);
  margin: 0;
}

/* Membership Card */
.musteri-membership-card {
  background: #F9FAFB;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(228, 231, 235, 0.5);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 68px;
}

.musteri-membership-icon {
  width: 38px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.musteri-membership-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.musteri-membership-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.musteri-membership-title,
.musteri-membership-level {
  margin: 0;
}

.musteri-membership-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  color: var(--text-primary);
}

.musteri-membership-level {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.538;
  color: #7A7F99;
}

.musteri-membership-info-btn {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  margin-left: auto;
}

.musteri-membership-info-btn:hover {
  opacity: 0.7;
}

/* Navigation Menu */
.musteri-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.musteri-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  text-decoration: none;
  color: #7A7F99;
  font-weight: 500;
  line-height: 1.1875em;
  text-transform: capitalize;
  transition: var(--transition-default);
}

.musteri-nav-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #7A7F99;
}

.musteri-nav-item svg path,
.musteri-nav-item svg circle,
.musteri-nav-item svg ellipse {
  fill: currentColor;
}

.musteri-nav-item:hover {
  background: #F5F7FD;
  color: #7A7F99;
}

.musteri-nav-item-active {
  background: var(--primary-purple);
  color: var(--bg-light);
}

.musteri-nav-item-active svg {
  color: #FFFFFF;
}

/* ========================================
   MÜŞTERİ PANELİ - CONTENT AREA
   ======================================== */
.musteri-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  min-height: 100vh;
}

/* Banner Section */
.musteri-banner-section {
  background: #FFFFFF;
  border-radius: 30px;
  padding: 41px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 210px;
  position: relative;
  overflow: hidden;
}

.musteri-banner-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.musteri-banner-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.393em;
  color: #33353E;
  margin: 0;
}

.musteri-banner-title-highlight {
  display: block;
  color: var(--primary-purple);
  font-size: 30px;
}

.musteri-banner-description {
  font-weight: 500;
  line-height: 1.375em;
  color: #7A7F99;
  margin: 0;
  max-width: 496px;
}

.musteri-banner-image-wrapper {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 423px;
  height: 183px;
  flex-shrink: 0;
  z-index: 1;
}

.musteri-banner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Content Inner */
.musteri-content-inner {
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  min-height: 400px;
}

/* Müşteri Paneli - Dashboard Stats Cards */
.musteri-stats-grid-section {
  display: flex;
  gap: 16px;
  align-items: stretch;
  padding: 0;
}

.musteri-stat-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  height: 84px;
  flex: 1;
  overflow: hidden;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.musteri-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

.musteri-stat-accent {
  position: absolute;
  left: 0;
  top: 20px;
  width: 5.17px;
  height: 44px;
  background: var(--primary-purple);
  border-radius: 0 12px 12px 0;
}

.musteri-stat-content {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 16.5px;
  height: 100%;
}

.musteri-stat-icon-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.musteri-stat-icon-bg {
  position: absolute;
  width: 52px;
  height: 52px;
  background: rgba(120, 68, 228, 0.1);
  border-radius: 50%;
}

.musteri-stat-icon {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.musteri-stat-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.musteri-stat-label,
.musteri-stat-value {
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.musteri-stat-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.27;
  color: #7a7f99;
}

.musteri-stat-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 0.86;
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1440px) {
  .musteri-panel-grid {
    padding: var(--spacing-lg) var(--spacing-lg);
  }
}
@media (max-width: 1024px) {
  .musteri-panel-grid {
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-md);
  }

  .musteri-sidebar-card {
    padding: 18px 14px 14px;
  }

  .musteri-user-avatar-wrapper {
    width: 46px;
    height: 46px;
  }

  .musteri-membership-icon {
    width: 34px;
    height: 32px;
  }

  .musteri-user-balance {
    font-size: 14px;
  }

  .musteri-banner-section {
    height: auto;
    padding: 32px 24px;
    gap: 24px;
  }

  .musteri-banner-image-wrapper {
    position: relative;
    right: 0;
    top: 0;
    width: 300px;
    height: 150px;
    margin: 0 auto;
  }

  .musteri-banner-content {
    text-align: center;
    align-items: center;
  }

  .musteri-banner-title {
    font-size: 24px;
  }

  .musteri-banner-description {
    font-size: 15px;
  }

  .musteri-nav-item {
    font-size: 14px;
    padding: 16px;
  }

  .musteri-stats-grid-section {
    gap: 12px;
  }

  .musteri-stat-card {
    height: 80px;
  }

  .musteri-stat-content {
    gap: 14px;
    padding: 14px;
  }

  .musteri-stat-label {
    font-size: 14px;
  }

  .musteri-stat-value {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .musteri-panel-grid {
    grid-template-columns: 1fr;
    padding: var(--spacing-md);
  }

  .musteri-sidebar {
    position: relative;
    top: 0;
  }

  .musteri-sidebar-card {
    padding: 16px 12px 12px;
  }

  .musteri-user-section {
    gap: 12px;
  }

  .musteri-user-avatar-wrapper {
    width: 44px;
    height: 44px;
  }

  .musteri-membership-card {
    padding: 14px;
  }

  .musteri-membership-icon {
    width: 32px;
    height: 30px;
  }

  .musteri-nav-item {
    padding: 16px 14px;
  }

  .musteri-banner-section {
    height: auto;
    padding: 24px 20px;
    flex-direction: column;
  }

  .musteri-banner-image-wrapper {
    position: relative;
    right: 0;
    top: 0;
    width: 250px;
    height: 125px;
    order: 2;
  }

  .musteri-banner-content {
    order: 1;
  }

  .musteri-banner-title {
    font-size: 20px;
    text-align: center;
  }

  .musteri-banner-description {
    font-size: 14px;
    text-align: center;
  }

  .musteri-content-inner {
    padding: var(--spacing-lg);
  }

  .musteri-stats-grid-section {
    flex-direction: column;
    gap: 12px;
  }

  .musteri-stat-card {
    height: 76px;
  }

  .musteri-stat-content {
    gap: 12px;
    padding: 12px 14px;
  }

  .musteri-stat-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .musteri-stat-icon-bg {
    width: 48px;
    height: 48px;
  }

  .musteri-stat-icon {
    width: 22px;
    height: 22px;
  }

  .musteri-stat-label {
    font-size: 13px;
  }

  .musteri-stat-value {
    font-size: 18px;
  }

  .musteri-stat-accent {
    top: 16px;
    height: 40px;
    width: 4.5px;
  }
}

/* ========================================
   MÜŞTERİ PANELİ - TÜM SİPARİŞLER SECTION
   ======================================== */
/* Using reusable .musteri-section-container, .musteri-section-header, .musteri-section-content utilities */

.musteri-section-small {
  max-width: 702px;
}

/* Header with search and filter controls */
.musteri-siparisler-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.musteri-siparisler-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search Bar */
.musteri-siparisler-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 200px;
  height: 42px;
  padding: 15px 16px;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
}

.musteri-siparisler-search svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.musteri-siparisler-search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.57em;
  color: #33353E;
}

.musteri-siparisler-search-input::placeholder {
  color: #666F94;
}

/* Date Filter Dropdown */
.musteri-siparisler-filter-wrapper {
  position: relative;
}

.musteri-siparisler-filter {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 188px;
  height: 42px;
  padding: 15px;
  background: #F9FAFB;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.musteri-siparisler-filter:hover {
  background: #F0F1F9;
}

.musteri-siparisler-filter.active {
  background: #F0F1F9;
}

.musteri-siparisler-filter-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 180px;
}

.musteri-siparisler-filter-selected {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43em;
  color: #666F94;
  opacity: 0.8;
}

.musteri-siparisler-filter-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.musteri-siparisler-filter.active .musteri-siparisler-filter-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu - Shared Styles */
.musteri-siparisler-filter-dropdown,
.musteri-destek-filter-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(234, 234, 237, 0.8);
  border-radius: 12px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.musteri-siparisler-filter-dropdown.show,
.musteri-destek-filter-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.musteri-siparisler-filter-option,
.musteri-destek-filter-option {
  padding: 12px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #33353E;
  cursor: pointer;
  transition: all 0.2s ease;
}

.musteri-siparisler-filter-option:hover,
.musteri-destek-filter-option:hover {
  background: rgba(108, 93, 211, 0.05);
  color: #7844e4;
}

.musteri-siparisler-filter-option.active,
.musteri-destek-filter-option.active {
  background: rgba(108, 93, 211, 0.1);
  color: #7844e4;
  font-weight: 600;
}

/* Orders List */
.musteri-son-siparisler-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty State */
.musteri-siparisler-empty-state {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
}

.musteri-siparisler-empty-image {
  width: 96px;
  height: 168px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -8px;
}

.musteri-destek-empty-image{
  height: 168px;
  flex-shrink: 0;
  margin-top: -8px;
}

.musteri-siparisler-empty-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.musteri-siparisler-empty-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.musteri-siparisler-empty-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1em;
  color: #33353E;
  margin: 0;
}

.musteri-siparisler-empty-description {
  font-weight: 500;
  line-height: 1.25em;
  color: #7A7F99;
  margin: 0;
}

.musteri-siparisler-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 11px 44px;
  background: #7844E4;
  border-radius: 14px;
  font-weight: 600;
  line-height: 1.19em;
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.musteri-siparisler-empty-btn:hover {
  background: #6835d1;
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.3);
  color: #FFFFFF;
}

.musteri-siparisler-empty-btn:active {
  transform: translateY(0);
}

/* Order Card */
.musteri-siparis-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.musteri-siparis-card:hover {
  background: rgba(249, 250, 251, 1);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
}

.musteri-siparis-left,
.musteri-siparis-right {
  display: flex;
  align-items: center;
}

.musteri-siparis-left {
  gap: 10px;
}

.musteri-siparis-right {
  gap: 30px;
}

.musteri-siparis-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #6E3ED1;
  border-radius: 10px;
  flex-shrink: 0;
}

.musteri-siparis-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.musteri-siparis-info,
.musteri-siparis-amount-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.musteri-siparis-info {
  width: 112px;
}

.musteri-siparis-amount-wrapper {
  text-align: right;
}

.musteri-siparis-label,
.musteri-siparis-code,
.musteri-siparis-amount-label,
.musteri-siparis-amount {
  margin: 0;
}

.musteri-siparis-label,
.musteri-siparis-amount-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #7A7F99;
}

.musteri-siparis-amount-label {
  text-align: right;
}

.musteri-siparis-code,
.musteri-siparis-amount {
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
}

.musteri-siparis-amount {
  text-align: right;
}

/* Sipariş button styles moved to shared section (line ~18662) */

/* Responsive */
@media (max-width: 991px) {
  .musteri-siparisler-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .musteri-siparisler-controls {
    width: 100%;
    flex-direction: column;
  }

  .musteri-siparisler-search,
  .musteri-siparisler-filter-wrapper,
  .musteri-siparisler-filter {
    width: 100%;
  }

  .musteri-son-siparisler-list {
    gap: 12px;
  }

  .musteri-siparis-card {
    padding: 16px;
  }

  .musteri-siparis-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .musteri-siparis-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .musteri-siparis-info {
    width: 100px;
  }

  .musteri-siparis-label {
    font-size: 13px;
  }

  .musteri-siparis-code {
    font-size: 15px;
  }

  .musteri-siparis-right {
    gap: 20px;
  }

  .musteri-siparis-amount-label {
    font-size: 13px;
  }

  .musteri-siparis-amount {
    font-size: 15px;
  }

  .musteri-siparis-btn {
    padding: 9px 11px;
    font-size: 13px;
  }

  .musteri-siparisler-empty-state {
    padding: 16px;
  }

  .musteri-siparisler-empty-image {
    width: 80px;
    height: 140px;
  }

  .musteri-siparisler-empty-title {
    font-size: 18px;
  }

  .musteri-siparisler-empty-description {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .musteri-siparis-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .musteri-siparis-left {
    width: 100%;
  }

  .musteri-siparis-info {
    flex: 1;
  }

  .musteri-siparis-right {
    width: 100%;
    justify-content: space-between;
  }

  .musteri-siparis-amount-wrapper {
    text-align: left;
  }

  .musteri-siparis-amount-label,
  .musteri-siparis-amount {
    text-align: left;
  }

  .musteri-siparisler-empty-state {
    flex-direction: column;
    text-align: center;
  }

  .musteri-siparisler-empty-image {
    width: 70px;
    height: 122px;
  }

  .musteri-siparisler-empty-description {
    font-size: 14px;
  }

  .musteri-siparisler-empty-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - Destek (Support Tickets)
   =============================================================== */

/* Header Controls */
.musteri-destek-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 18px 18px 0px 0px;
}

.musteri-destek-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search Input */
.musteri-destek-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 16px;
  width: 200px;
  height: 42px;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
}

.musteri-destek-search svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.musteri-destek-search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5714em;
  color: #666F94;
  outline: none;
}

.musteri-destek-search-input::placeholder {
  color: #666F94;
}

/* Date Filter */
.musteri-destek-filter-wrapper {
  position: relative;
}

.musteri-destek-filter {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  width: 188px;
  height: 42px;
  background: #F9FAFB;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  user-select: none;
}

.musteri-destek-filter-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 125px;
  flex-shrink: 0;
}

.musteri-destek-filter-selected {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4286em;
  color: #666F94;
  opacity: 0.8;
  height: 12px;
  display: flex;
  align-items: center;
}

.musteri-destek-filter-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.musteri-destek-filter.active .musteri-destek-filter-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu styles moved to shared section (line ~17984) */

/* Create Ticket Button */
.musteri-destek-create-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  height: 42px;
  background: #7844E4;
  border: none;
  border-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4286em;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.musteri-destek-create-btn:hover {
  background: #6835d1;
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.3);
}

.musteri-destek-create-btn:active {
  transform: translateY(0);
}
/* Tickets List */
.musteri-destek-tickets-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Ticket Card */
.musteri-destek-ticket-card,
.musteri-referans-transaction-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.musteri-destek-ticket-card:hover,
.musteri-referans-transaction-card:hover {
  background: rgba(249, 250, 251, 1);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
}

.musteri-destek-ticket-left,
.musteri-destek-ticket-right,
.musteri-referans-transaction-left {
  display: flex;
  align-items: center;
}

.musteri-destek-ticket-left,
.musteri-referans-transaction-left {
  gap: 10px;
}

.musteri-destek-ticket-right {
  gap: 20px;
}

.musteri-destek-ticket-icon-wrapper,
.musteri-referans-transaction-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #6E3ED1;
  border-radius: 10px;
  flex-shrink: 0;
}

.musteri-destek-ticket-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.musteri-referans-transaction-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.musteri-destek-ticket-info,
.musteri-referans-transaction-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.musteri-destek-ticket-code,
.musteri-destek-ticket-date,
.musteri-referans-transaction-title,
.musteri-referans-transaction-date {
  margin: 0;
}

.musteri-destek-ticket-code,
.musteri-referans-transaction-title {
  font-weight: 600;
  color: #33353E;
}

.musteri-destek-ticket-code {
  line-height: 1.13;
}

.musteri-referans-transaction-title {
  font-size: 16px;
  line-height: 1.125;
}

.musteri-destek-ticket-date,
.musteri-referans-transaction-date {
  font-weight: 500;
  font-size: 14px;
  color: #7A7F99;
}

.musteri-destek-ticket-date {
  line-height: 1.51;
}

.musteri-referans-transaction-date {
  line-height: 1.5085;
}

/* Badge Styles */
.musteri-destek-ticket-badge {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29em;
  white-space: nowrap;
  border: 1px dashed;
}

/* Category Badge */
.musteri-destek-ticket-category {
  background: rgba(122, 127, 153, 0.1);
  border-color: rgba(122, 127, 153, 0.5);
  color: #7A7F99;
}

/* Status Badges */
.musteri-destek-ticket-status.bekliyor {
  background: rgba(254, 80, 11, 0.1);
  border-color: #FE500B;
  color: #FE500B;
}

.musteri-destek-ticket-status.cevaplandi {
  background: rgba(23, 185, 118, 0.1);
  border-color: #17B976;
  color: #17B976;
}

.musteri-destek-ticket-status.iptal-edildi {
  background: rgba(223, 45, 68, 0.1);
  border-color: #DF2D44;
  color: #DF2D44;
}

.musteri-destek-ticket-status.islemde {
  background: rgba(253, 186, 32, 0.1);
  border-color: #FDBA20;
  color: #FDBA20;
}

/* View Button - Shared with Sipariş Button */
.musteri-destek-ticket-btn,
.musteri-siparis-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: #17B976;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.musteri-destek-ticket-btn:hover,
.musteri-siparis-btn:hover {
  background: #14A567;
  transform: translateY(-1px);
  box-shadow: 0px 4px 12px rgba(23, 185, 118, 0.2);
}

.musteri-destek-ticket-btn:active,
.musteri-siparis-btn:active {
  transform: translateY(0);
}

/* Müşteri Paneli - Referans Count Indicator */
.musteri-referans-count-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 42px;
  background: #F9FAFB;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
  flex-shrink: 0;
}

.musteri-referans-count-indicator span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #666F94;
}

/* Müşteri Paneli - Referans Transactions List */
.musteri-referans-transactions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.musteri-referans-transaction-card {
  padding: 25px 20px;
  cursor: default;
}

.musteri-referans-transaction-earning {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  height: 30px;
  background: transparent;
  border: 1px solid #17B976;
  border-radius: 10px;
}

.musteri-referans-transaction-earning span {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5085714885166712em;
  color: #17B976;
}

/* Responsive */
@media (max-width: 991px) {
  .musteri-destek-controls {
    flex-wrap: wrap;
  }

  .musteri-destek-search {
    width: 180px;
  }

  .musteri-destek-filter {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .musteri-destek-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .musteri-destek-controls {
    width: 100%;
    flex-direction: column;
  }

  .musteri-destek-search,
  .musteri-destek-filter,
  .musteri-destek-create-btn {
    width: 100%;
  }

  .musteri-referans-count-indicator {
    width: 100%;
  }

  .musteri-destek-ticket-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .musteri-destek-ticket-left {
    width: 100%;
  }

  .musteri-destek-ticket-info {
    flex: 1;
  }

  .musteri-destek-ticket-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .musteri-destek-ticket-badge {
    font-size: 13px;
  }

  .musteri-destek-ticket-btn {
    width: 100%;
  }

  .musteri-referans-transaction-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .musteri-referans-transaction-left {
    width: 100%;
  }

  .musteri-referans-transaction-info {
    flex: 1;
  }

  .musteri-referans-transaction-earning {
    align-self: flex-end;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - Siparişler Wrapper & Details Panel
   =============================================================== */

/* Two-Column Layout Wrapper */
.musteri-siparisler-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Orders List Section (Left) */
.musteri-siparisler-list-section {
  width: 100%;
}

/* Active Order Card State */
.musteri-siparis-card-active {
  background: rgba(249, 250, 251, 1) !important;
  border-color: rgba(234, 234, 237, 0.5) !important;
}

/* Active Button (filled green) */
.musteri-siparis-card-active .musteri-siparis-btn {
  background: #17B976;
  border: none;
  color: #FFFFFF;
}

.musteri-siparis-card-active .musteri-siparis-btn:hover {
  background: #14A567;
}

/* Inactive Button (outline green) */
.musteri-siparis-card:not(.musteri-siparis-card-active) .musteri-siparis-btn {
  background: transparent;
  border: 1.4px solid #17B976;
  color: #17B976;
}

.son-5-siparis .musteri-siparis-card:not(.musteri-siparis-card-active) .musteri-siparis-btn {
  background: #17B976;
  border: none;
  color: #FFFFFF;
}

.son-5-siparis .musteri-siparis-card:not(.musteri-siparis-card-active) .musteri-siparis-btn:hover {
  background: #14A567;
}

.musteri-siparis-card:not(.musteri-siparis-card-active) .musteri-siparis-btn:hover {
  background: rgba(23, 185, 118, 0.05);
}

/* Order Details Section (Right) */

.musteri-siparisler-details-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  align-items: flex-start;
  padding: 20px;
}

.musteri-siparisler-details-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.13em;
  color: #33353E;
  margin: 0;
  width: 238px;
}

.musteri-siparisler-details-order-code {
  font-weight: 600;
  line-height: 1.13em;
  color: #33353E;
}

.musteri-siparisler-details-date-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 169px;
}

.musteri-siparisler-details-date-wrapper svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.musteri-siparisler-details-date {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29em;
  color: #666F94;
}

/* Details Content */
.musteri-siparisler-details-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

/* Empty State for Details Panel */
.musteri-siparisler-details-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  text-align: center;
}

.musteri-siparisler-details-empty-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.musteri-siparisler-details-empty-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1em;
  color: #33353E;
  margin: 0;
}

.musteri-siparisler-details-empty-description {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33em;
  color: #7A7F99;
  margin: 0;
}

/* Service Card */
.musteri-siparisler-service-card {
  display: flex;
  flex-direction: column;
  width: 288px;
}

.musteri-siparisler-service-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-bottom: none;
  border-radius: 18px 18px 0px 0px;
}

.musteri-siparisler-service-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.musteri-siparisler-service-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.29em;
  color: #33353E;
  margin: 0;
  flex: 1;
}

/* Service Details */
.musteri-siparisler-service-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 0px 0px 18px 18px;
}

/* Service Row */
.musteri-siparisler-service-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 248px;
  min-height: 40px;
}

.musteri-siparisler-service-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
}

.musteri-siparisler-service-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.musteri-siparisler-service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  width: 193px;
}

.musteri-siparisler-service-label {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.67em;
  color: #666F94;
  opacity: 0.8;
  margin: 0;
}

.musteri-siparisler-service-value {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.43em;
  color: #33353E;
  margin: 0;
}

.musteri-siparisler-service-link {
  width: 143px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.musteri-siparisler-service-status {
  font-weight: 600;
}

/* Status Colors - Based on Backend Status Classes */
.musteri-siparisler-service-status.status-success {
  color: #17B976;
}

.musteri-siparisler-service-status.status-primary {
  color: #7844E4;
}

.musteri-siparisler-service-status.status-warning {
  color: #F59E0B;
}

.musteri-siparisler-service-status.status-danger {
  color: #EF4444;
}

.musteri-siparisler-service-status.status-light {
  color: #666F94;
}

/* Copy Button */
.musteri-siparisler-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
  padding: 0;
}

.musteri-siparisler-copy-btn svg {
  width: 24px;
  height: 24px;
}

.musteri-siparisler-copy-btn:hover {
  opacity: 0.7;
}

.musteri-siparisler-copy-btn:active {
  opacity: 0.5;
}

/* Divider */
.musteri-siparisler-details-divider {
  width: 288px;
  height: 1px;
  background: rgba(234, 234, 237, 0.5);
}

/* Total Row */
.musteri-siparisler-total-row {
  width: 248px;
}

.musteri-siparisler-total-value {
  font-weight: 600;
  color: #33353E;
}

/* Responsive */
@media (max-width: 1440px) {
  .musteri-siparisler-wrapper {
    grid-template-columns: 1fr 328px;
  }
}

@media (max-width: 1200px) {
  .musteri-siparisler-wrapper {
    grid-template-columns: 1fr;
  }

  .musteri-siparisler-details-section {
    position: relative;
    top: 0;
  }
}

@media (max-width: 991px) {
  .musteri-siparisler-service-card {
    width: 100%;
  }

  .musteri-siparisler-service-row {
    width: 100%;
  }

  .musteri-siparisler-service-info {
    width: auto;
  }

  .musteri-siparisler-details-divider {
    width: 100%;
  }

  .musteri-siparisler-total-row {
    width: 100%;
  }

  .musteri-siparisler-details-title {
    width: auto;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .musteri-siparisler-details-header {
    padding: 16px;
  }

  .musteri-siparisler-details-content {
    padding: 16px;
    gap: 12px;
  }

  .musteri-siparisler-service-header {
    padding: 14px;
  }

  .musteri-siparisler-service-details {
    padding: 14px;
    gap: 12px;
  }

  .musteri-siparisler-service-title {
    font-size: 13px;
  }

  .musteri-siparisler-service-label {
    font-size: 11px;
  }

  .musteri-siparisler-service-value {
    font-size: 13px;
  }

  .musteri-siparisler-service-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .musteri-siparisler-service-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .musteri-siparisler-details-date-wrapper {
    width: auto;
  }

  .musteri-siparisler-details-date {
    font-size: 13px;
  }
}

/* ========================================
   ÜYELERE ÖZEL KUPONLAR (CUSTOMER COUPONS)
   ======================================== */
.kuponlar-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kupon-card {
  display: flex;
  align-items: center;
  width: 100%;
}

.kupon-code-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 150px;
  background: var(--primary-purple);
  border-radius: 20px 0px 0px 20px;
}

.kupon-code-text {
  font-weight: 700;
  line-height: 1.875em;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  text-align: center;
  white-space: nowrap;
}

.kupon-code-divider {
  position: absolute;
  right: -1px;
  top: 0;
  width: 0;
  height: 150px;
  border-right: 2px dashed #FFFFFF;
}

.kupon-content-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  padding: 8px 12px;
  width: calc(100% - 60px);
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid #EAEAED;
  border-left: 0;
  border-radius: 0px 16px 16px 0px;
}

.kupon-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 100%;
}
.kupon-badge {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5714em;
  color: var(--primary-purple);
  width: 100%;
}
.kupon-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.1111em;
  color: var(--text-primary);
  margin: 0;
  width: 100%;
}

.kupon-description {
  font-weight: 500;
  font-size: 14px;
  color: #5B5760;
  margin: 0;
  width: 100%;
}

.btn-kupon-copy {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  width: 100%;
  background: rgba(120, 68, 228, 0.1);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4286em;
  color: var(--primary-purple);
  cursor: pointer;
  transition: var(--transition-default);
}

.btn-kupon-copy:hover {
  background: rgba(120, 68, 228, 0.15);
  transform: translateY(-1px);
}

.btn-kupon-copy:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .kupon-card {
    flex-direction: column;
    align-items: stretch;
  }

  .kupon-code-section {
    width: 100%;
    height: 60px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 16px 16px 0px 0px;
    padding: 0 25px;
  }

  .kupon-code-text {
    writing-mode: horizontal-tb;
    transform: none;
    width: auto;
    height: auto;
  }

  .kupon-code-divider {
    right: 0;
    top: auto;
    bottom: -1px;
    width: 100%;
    height: 0;
    border-right: none;
    border-bottom: 2px dashed #FFFFFF;
  }

  .kupon-content-section {
    width: 100%;
    border-left: 1px solid #EAEAED;
    border-top: 0;
    border-radius: 0px 0px 16px 16px;
  }
}

@media (max-width: 768px) {
  .kuponlar-list {
    gap: 16px;
  }

  .kupon-description {
    font-size: 13px;
  }

  .btn-kupon-copy {
    padding: 9px 20px;
    font-size: 13px;
  }
}

/* ========================================
   MÜŞTERİ PANELİ - MEMBERSHIP INFO POPUP
   ======================================== */

/* Popup Wrapper - Fixed positioning to avoid z-index stacking issues */
.membership-info-popup {
  position: fixed;
  width: 264.92px;
  background: #FFFFFF;
  border-radius: 14.54px;
  padding: 16.15px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.membership-info-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Membership Cards Container */
.membership-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12.92px;
}

/* Individual Membership Card */
.membership-tier-card {
  display: flex;
  align-items: center;
  gap: 9.69px;
  padding: 20.19px 16.15px;
  background: rgba(249, 250, 251, 0.7);
  border: 0.81px solid rgba(234, 234, 237, 0.5);
  border-radius: 16.15px;
  width: 100%;
  height: 64.62px;
  box-sizing: border-box;
}

.membership-tier-icon {
  width: 45.85px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.membership-tier-info {
  display: flex;
  flex-direction: column;
  gap: 8.08px;
}

.membership-tier-name {
  font-weight: 600;
  font-size: 12.92px;
  line-height: 1.25em;
  color: #33353E;
  margin: 0;
}

.membership-tier-range {
  font-weight: 600;
  font-size: 11.31px;
  line-height: 1.4285em;
  color: #7A7F99;
  margin: 0;
}

/* Müşteri Paneli - Pagination Component */
.musteri-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  margin-top: 10px;
}

.musteri-pagination-info {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285;
  letter-spacing: 0.005em;
  color: #B5B7C0;
}

.musteri-pagination-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.musteri-pagination-btn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.177;
  color: #4D515A;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.musteri-pagination-btn.musteri-pagination-prev,
.musteri-pagination-btn.musteri-pagination-next {
  border-radius: 50%;
}

.musteri-pagination-btn:hover,
.musteri-pagination-btn-active:hover {
  transform: translateY(-1px);
}

.musteri-pagination-btn:hover {
  background-color: #F5F5F5;
}

.musteri-pagination-btn-active {
  background-color: #6C5DD3;
  color: #F9F9F9;
  border-radius: 8px;
}

.musteri-pagination-btn-active:hover {
  background-color: #5A4BC1;
}

.musteri-pagination-dots {
  font-weight: 500;
  line-height: 1.177;
  color: #4D515A;
  text-align: center;
  padding: 0 8px;
}

/* Responsive pagination */
@media (max-width: 768px) {
  .musteri-pagination-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .musteri-pagination-info {
    font-size: 12px;
    text-align: center;
  }

  .musteri-pagination-buttons {
    gap: 4px;
  }

  .musteri-pagination-btn {
    width: 32px;
    height: 32px;
    padding: 12px 16px;
    font-size: 11px;
  }

  .musteri-pagination-dots {
    font-size: 14px;
    padding: 0 4px;
  }
}

/* ========================================
   MÜŞTERİ PANELİ - FAVORİLERİM SECTION
   ======================================== */

/* Pagination Controls in Header */
.musteri-pagination-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.musteri-pagination-btn-favs {
  width: 34px;
  height: 34px;
  background: rgba(120, 68, 228, 0.1);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-default);
  color: var(--primary-purple);
}

.musteri-pagination-btn-favs:hover {
  background: rgba(120, 68, 228, 0.2);
  transform: translateY(-1px);
}

.musteri-pagination-btn-favs:active {
  transform: translateY(0);
}

.musteri-pagination-btn-favs:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.musteri-pagination-btn-favs svg path {
  stroke: var(--primary-purple);
  transition: stroke 0.3s ease;
}

.musteri-pagination-next-active {
  background: var(--primary-purple);
}

.musteri-pagination-next-active svg path {
  stroke: white;
}

.musteri-pagination-next-active:hover {
  background: #6C3AC0;
}

/* Favorites Grid Layout */
.musteri-favoriler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

/* Smooth transition for card visibility */
.musteri-favoriler-grid .package-featured-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.musteri-favoriler-grid .package-featured-card[style*="display: none"] {
  opacity: 0;
  transform: scale(0.95);
}

/* Light Card Variant for Customer Panel */
.package-card-light {
  background: #FBFCFC !important;
  border: 1.6px solid rgba(234, 234, 237, 0.5) !important;
  width: fit-content;
}

.package-card-light .package-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card-light .package-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.package-card-light .package-title {
  font-weight: var(--fw-semibold);
  font-size: 16px;
  line-height: 1.19;
  color: var(--text-primary);
  margin: 0;
  text-align: left;
}

.package-card-light .package-platform {
  font-weight: var(--fw-bold);
  font-size: 14px;
  line-height: 1.21;
  color: var(--primary-purple);
  text-transform: uppercase;
  text-align: left;
}

.package-card-light .package-feature {
  background: rgba(144, 150, 175, 0.05);
}

.package-card-light .package-feature span {
  color: #7A7F99;
  font-size: 13px;
}

/* Active Favorite Button State */
.package-favorite-btn.package-favorite-active,
.package-favorite-btn.active {
  background: var(--primary-purple);
  box-shadow: 0 0 20px rgba(120, 68, 228, 0.5);
  transform: scale(1.05);
}

.package-favorite-btn.package-favorite-active:hover,
.package-favorite-btn.active:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(120, 68, 228, 0.7);
}

/* Responsive Favorilerim */
@media (max-width: 1200px) {
  .musteri-favoriler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .musteri-pagination-btn {
    width: 30px;
    height: 30px;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - DESTEK MESAJLAŞMA (CHAT)
   =============================================================== */

/* Chat Container */
.musteri-destek-mesajlasma-section {
  display: flex;
  flex-direction: column;
}

/* Chat Header */
.musteri-destek-mesajlasma-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(234, 234, 237, 0.5);
}

.musteri-destek-mesaj-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  height: 42px;
  background: #F9FAFB;
  border-radius: 12px;
}

.musteri-destek-mesaj-badge span {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4286em;
  color: #7A7F99;
}

/* Messages Wrapper (contains messages + input) */
.musteri-destek-mesajlar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 0 0 18px 18px;
  height: 600px; /* Sabit yükseklik */
}

/* Messages Container */
.musteri-destek-mesajlar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1; /* Kalan alanı kapla */
  overflow-y: auto; /* Dikey scroll */
  padding-right: 10px; /* Scrollbar için sağ boşluk */
}

/* Message Wrapper */
.musteri-destek-mesaj {
  display: flex;
  flex-direction: column;
}

/* Support Messages (Left) */
.musteri-destek-mesaj-support {
  align-items: flex-start;
}

/* User Messages (Right) */
.musteri-destek-mesaj-user {
  align-items: flex-end;
}

/* Message Header */
.musteri-destek-mesaj-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 370px;
  margin-bottom: 4px;
}

.musteri-destek-mesaj-user .musteri-destek-mesaj-header {
  justify-content: flex-end;
}

.musteri-destek-mesaj-sender {
  font-weight: 600;
  font-size: 14px;
  line-height: 2.2974em;
  color: var(--text-primary);
}

.musteri-destek-mesaj-time {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5541em;
  color: #7A7F99;
}

/* Message Bubble */
.musteri-destek-mesaj-bubble {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  width: 366.51px;
  min-height: 82.03px;
}

.musteri-destek-mesaj-bubble p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8041em;
  margin: 0;
  width: 326.11px;
}

/* Support Bubble (Purple) */
.musteri-destek-mesaj-bubble-support {
  background: var(--primary-purple);
  border-radius: 0px 12px 12px 12px;
}

.musteri-destek-mesaj-bubble-support p {
  color: #FFFFFF;
}

/* User Bubble (Light Gray) */
.musteri-destek-mesaj-bubble-user {
  background: #F9FAFB;
  border-radius: 12px 0px 12px 12px;
}

.musteri-destek-mesaj-bubble-user p {
  color: var(--text-primary);
}

/* Message Input Wrapper */
.musteri-destek-mesaj-input-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 70px;
  background: #F9FAFB;
  border-radius: 12px;
  cursor: text;
}

.musteri-destek-mesaj-input {
  flex: 1;
  font-family: 'SF Pro Display', var(--font-gilroy), sans-serif;
  font-weight: 500;
  line-height: 1.625em;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  min-height: 30px;
}

.musteri-destek-mesaj-input::placeholder {
  color: #677894;
}

/* Message Actions */
.musteri-destek-mesaj-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}

/* Attach Button */
.musteri-destek-mesaj-attach-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #677894;
  transition: var(--transition-default);
}

.musteri-destek-mesaj-attach-btn:hover {
  color: var(--text-primary);
}

.musteri-destek-mesaj-attach-btn svg {
  width: 20px;
  height: 20px;
}

/* Send Button */
.musteri-destek-mesaj-send-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  width: 43px;
  height: 43px;
  background: #17B976;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-default);
}

.musteri-destek-mesaj-send-btn:hover {
  background: #14A567;
}

.musteri-destek-mesaj-send-btn svg {
  width: 21px;
  height: 18px;
}

/* Responsive Chat */
@media (max-width: 768px) {
  .musteri-destek-mesajlasma-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .musteri-destek-ticket-badge {
    width: 100%;
  }

  .musteri-destek-mesajlar-wrapper {
    padding: 15px;
  }

  .musteri-destek-mesaj-header {
    width: 100%;
    max-width: 370px;
  }

  .musteri-destek-mesaj-bubble {
    width: 100%;
    max-width: 366.51px;
  }

  .musteri-destek-mesaj-bubble p {
    width: 100%;
  }

  .musteri-destek-mesaj-input-wrapper {
    padding: 0 15px;
  }

  .musteri-destek-mesaj-actions {
    gap: 20px;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - TALEP OLUŞTUR FORM
   =============================================================== */

/* Form Container */
.talep-olustur-form-container {
  padding: 30px;
}

.talep-olustur-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Row */
.talep-olustur-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

/* Input Wrapper - Base Styles */
.talep-olustur-input-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
  height: 66px;
  flex: 1;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  cursor: text;
}

.talep-olustur-input-wrapper:focus-within {
  border-color: #7844E4;
  background: #FFFFFF;
}

/* Input Icon */
.talep-input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Input Divider */
.talep-input-divider {
  width: 1px;
  height: 20px;
  background: rgba(102, 111, 148, 0.1);
  flex-shrink: 0;
  border-radius: 27px;
}

/* Input Container (for floating label) */
.talep-input-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  min-height: 36px;
}

/* Floating Label */
.talep-input-label {
  font-weight: 500;
  line-height: 1.25;
  color: #666F94;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  pointer-events: none;
  white-space: nowrap;
}
/* Float label up when input has value or is focused */
.talep-olustur-input-wrapper.has-value .talep-input-label,
.talep-olustur-input-wrapper:focus-within .talep-input-label {
  top: -5px;
  font-size: 12px;
  line-height: 1.667;
  opacity: 0.8;
  transform: translateY(0);
}
/* Input Field */
.talep-input-field {
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  width: 100%;
  transform: translateY(15px);
}

.talep-input-field::placeholder {
  color: transparent;
  opacity: 0;
}

/* Dropdown Specific Styles */
.talep-olustur-dropdown-wrapper {
  cursor: pointer;
}

.talep-dropdown-selected {
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
  transform: translateY(15px);
}

.talep-dropdown-placeholder {
  color: #666F94;
  opacity: 0.8;
  font-weight: 500;
}

/* Show selected text color when has value */
.talep-olustur-dropdown-wrapper.has-value .talep-dropdown-placeholder {
  color: #33353E;
  opacity: 1;
  font-weight: 600;
}

/* Dropdown Icon Wrapper */
.talep-dropdown-icon-wrapper {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.talep-olustur-dropdown-wrapper.active .talep-dropdown-icon-wrapper {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.talep-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 240px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 8px;
}

.talep-olustur-dropdown-wrapper.active .talep-dropdown-menu {
  display: block;
}

/* Dropdown Item */
.talep-dropdown-item {
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 500;
  line-height: 1.25;
  color: #33353E;
}

.talep-dropdown-item:hover {
  background: rgba(120, 68, 228, 0.05);
}

.talep-dropdown-item.selected {
  background: rgba(120, 68, 228, 0.1);
  font-weight: 600;
}

/* Textarea Specific Styles */
.talep-olustur-textarea-wrapper {
  height: auto;
  min-height: 110px;
  align-items: flex-start;
}

.talep-olustur-textarea-wrapper .talep-input-label{
  top: 10px;
}

.talep-textarea-icon {
  margin-top: 3px;
}

.talep-textarea-field {
  resize: vertical;
  min-height: 20px;
  max-height: 200px;
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
}

/* Submit Button - Shared Styles */
.talep-olustur-submit-btn,
.musteri-ayarlar-submit-btn,
.musteri-ayarlar-avatar-save-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px;
  background: #17B976;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.talep-olustur-submit-btn,
.musteri-ayarlar-submit-btn {
  width: 218px;
  height: 50px;
  align-self: flex-end;
  margin-top: 0;
}

.musteri-ayarlar-submit-btn {
  margin-top: 16px;
}

.musteri-ayarlar-avatar-save-btn {
  width: 100%;
  height: 50px;
}

.talep-olustur-submit-btn span,
.musteri-ayarlar-submit-btn span,
.musteri-ayarlar-avatar-save-btn span {
  font-weight: 600;
  line-height: 1.19;
  color: #FFFFFF;
}

.talep-olustur-submit-btn:hover,
.musteri-ayarlar-submit-btn:hover,
.musteri-ayarlar-avatar-save-btn:hover {
  background: #15a366;
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(23, 185, 118, 0.24);
}

.talep-olustur-submit-btn:active,
.musteri-ayarlar-submit-btn:active,
.musteri-ayarlar-avatar-save-btn:active {
  transform: translateY(0);
}

.talep-olustur-textarea-wrapper .talep-textarea-field {
  resize: none;       /* Yeniden boyutlandırmayı kapatır */
  overflow: auto;     /* İçerik taşarsa kaydırma çubuğu görünür */
}


/* Responsive Styles */
@media (max-width: 991px) {
  .talep-olustur-row {
    flex-direction: column;
  }

  .talep-olustur-submit-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .talep-olustur-form-container {
    padding: 20px;
  }

  .talep-olustur-input-wrapper {
    padding: 12px;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - REFERANS SECTION
   =============================================================== */

/* Referans Section Container */
.musteri-referans-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  width: 100%;
}

/* Referral Link Card (Top Card) */
.musteri-referans-link-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.musteri-referans-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.08);
}

.musteri-referans-link-content {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.musteri-referans-link-text {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.musteri-referans-link-url {
  font-weight: 700;
  font-size: 20px;
  line-height: 19px;
  color: var(--text-primary);
  text-transform: capitalize;
}

/* Copy Button */
.musteri-referans-copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  background: rgba(110, 62, 209, 0.1);
  border: none;
  border-radius: 8.88px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
  flex-shrink: 0;
}

.musteri-referans-copy-btn:hover {
  background: rgba(110, 62, 209, 0.15);
  transform: scale(1.05);
}

.musteri-referans-copy-btn:active {
  transform: scale(0.95);
}

/* Stats Grid (3 cards in a row) */
.musteri-referans-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: center;
}

/* Stat Card with Action Button Modifier */
.musteri-stat-card-with-action .musteri-stat-content {
  position: relative;
}

/* Convert Button (Inside Bekleyen Kazancın Card) */
.musteri-referans-convert-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  width: 88px;
  height: 40px;
  background: var(--primary-purple);
  border: none;
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
  color: #ffffff;
  text-transform: capitalize;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
}

.musteri-referans-convert-btn:hover {
  background: #6937c7;
  transform: translateY(-50%) scale(1.02);
}

.musteri-referans-convert-btn:active {
  transform: translateY(-50%) scale(0.98);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .musteri-referans-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .musteri-stat-card-with-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .musteri-referans-link-card {
    height: auto;
    min-height: 84px;
    padding: 14px;
  }

  .musteri-referans-link-content {
    gap: 14px;
  }

  .musteri-referans-link-url {
    line-height: 16px;
    word-break: break-all;
  }

  .musteri-referans-copy-btn {
    width: 34px;
    height: 34px;
  }

  .musteri-referans-copy-btn svg {
    width: 18px;
    height: 18px;
  }

  .musteri-referans-stats-grid {
    grid-template-columns: 1fr;
  }

  .musteri-referans-convert-btn {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 12px;
    width: 100%;
  }

  .musteri-referans-convert-btn:hover {
    transform: scale(1.02);
  }

  .musteri-referans-convert-btn:active {
    transform: scale(0.98);
  }

  .musteri-stat-card-with-action .musteri-stat-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===============================================================
   MÜŞTERİ REFERANS CONFIRM MODAL
   =============================================================== */

.musteri-referans-confirm-modal-wrapper .modal-dialog {
  max-width: 720px;
}

.musteri-referans-confirm-modal-content {
  background: #ffffff;
  border: none;
  border-radius: 30px;
  overflow: hidden;
}

.musteri-referans-confirm-modal-body {
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Icon Wrapper - Shared with stat icon */
.musteri-referans-confirm-icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(120, 68, 228, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.musteri-referans-confirm-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Text Content */
.musteri-referans-confirm-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.musteri-referans-confirm-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.21;
  text-align: center;
  color: #33353e;
  margin: 0;
}

.musteri-referans-confirm-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.22;
  text-align: center;
  color: #7a7f99;
  margin: 0;
}

/* Action Buttons */
.musteri-referans-confirm-actions {
  display: flex;
  gap: 16px;
  width: 100%;
}

.musteri-referans-confirm-cancel,
.musteri-referans-confirm-submit {
  flex: 1;
  padding: 10px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.19;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-default);
}

.musteri-referans-confirm-cancel {
  background: #f9fafb;
  border: 1px solid rgba(234, 234, 237, 0.5);
  color: #7a7f99;
}

.musteri-referans-confirm-cancel:hover {
  background: #f0f1f9;
  border-color: rgba(234, 234, 237, 0.8);
}

.musteri-referans-confirm-submit {
  background: var(--primary-purple);
  color: #ffffff;
}

.musteri-referans-confirm-submit:hover {
  background: #6837c4;
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .musteri-referans-confirm-modal-body {
    padding: 40px 24px;
    gap: 24px;
  }

  .musteri-referans-confirm-title {
    font-size: 20px;
  }

  .musteri-referans-confirm-actions {
    flex-direction: column;
  }

  .musteri-referans-confirm-cancel,
  .musteri-referans-confirm-submit {
    width: 100%;
  }
}

/* ========================================
   BAKIYE GEÇMİŞİ (BALANCE HISTORY)
   ======================================== */

/* Balance History List Container */
.musteri-bakiye-gecmisi-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Balance History Card */
.musteri-bakiye-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  min-height: 80px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.musteri-bakiye-card:hover {
  background: rgba(249, 250, 251, 1);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.04);
}

.musteri-bakiye-left {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.musteri-bakiye-icon-bg {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6E3ED1;
  border-radius: 10px;
  flex-shrink: 0;
}

.musteri-bakiye-icon-bg svg {
  width: 20px;
  height: 20px;
}

.musteri-bakiye-info {
  display: flex;
  flex-direction: column;
}

.musteri-bakiye-date {
  font-weight: 600;
  line-height: 1.125;
  color: #33353E;
}

.musteri-bakiye-amount {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5085;
  color: #7A7F99;
}

/* Status Badge */
.musteri-bakiye-status {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border: 1px solid #1E90FF;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #1E90FF;
  white-space: nowrap;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .musteri-bakiye-gecmisi-list {
    gap: 12px;
  }

  .musteri-bakiye-card {
    padding: 20px 16px;
    min-height: 70px;
  }

  .musteri-bakiye-icon-bg {
    width: 36px;
    height: 36px;
  }

  .musteri-bakiye-icon-bg svg {
    width: 18px;
    height: 18px;
  }

  .musteri-bakiye-date {
    font-size: 15px;
  }

  .musteri-bakiye-amount {
    font-size: 13px;
  }

  .musteri-bakiye-status {
    font-size: 13px;
    padding: 8px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .musteri-bakiye-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }

  .musteri-bakiye-left {
    width: 100%;
  }

  .musteri-bakiye-status {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================================================
   Müşteri Paneli - Bakiye Yükle Section
   =============================================================== */

.musteri-bakiye-yukle-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* Quick Amount Selection Buttons */
.musteri-bakiye-quick-amounts {
  display: flex;
  width: 100%;
  gap: 10px;
}

.musteri-bakiye-amount-btn {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.6px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: var(--text-dark-muted);
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.musteri-bakiye-amount-btn:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.musteri-bakiye-amount-btn-active {
  background: rgba(23, 185, 118, 0.06);
  border: 1.6px solid var(--status-success);
  color: var(--status-success);
}

/* Custom Amount Input */
.musteri-bakiye-custom-input-wrapper {
  width: 100%;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-left: 24.98px;
  background: #ffffff;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 14px;
  cursor: text;
}

.musteri-bakiye-input-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.musteri-bakiye-input-divider {
  width: 1px;
  height: 34px;
  background: rgba(102, 111, 148, 0.1);
  flex-shrink: 0;
}

.musteri-bakiye-input-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.musteri-bakiye-input-label {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-dark-muted);
  opacity: 0.8;
}

.musteri-bakiye-input-field {
  font-weight: 600;
  line-height: 20px;
  color: var(--text-primary);
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  width: 100%;
}

.musteri-bakiye-input-field::-webkit-inner-spin-button,
.musteri-bakiye-input-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.musteri-bakiye-input-field[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Payment Methods */
.musteri-bakiye-payment-methods {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.musteri-bakiye-payment-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(228, 231, 235, 0.5);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.musteri-bakiye-payment-card:hover {
  background: rgba(249, 250, 251, 1);
  border-color: rgba(228, 231, 235, 0.8);
}

.musteri-bakiye-payment-card-active {
  background: rgba(120, 68, 228, 0.1);
  border: 1px solid var(--primary-purple);
}
.musteri-bakiye-payment-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Default state - gray background, dark icons */
.musteri-bakiye-payment-icon svg rect {
  fill: #E4E7EB80;
  transition: fill 0.3s ease;
}

.musteri-bakiye-payment-icon svg path {
  fill: #33353e;
  transition: fill 0.3s ease;
}

/* Active state - purple background, purple icons */
.musteri-bakiye-payment-card-active .musteri-bakiye-payment-icon svg rect {
  fill: rgba(120, 68, 228, 0.1);
}

.musteri-bakiye-payment-card-active .musteri-bakiye-payment-icon svg path {
  fill: var(--primary-purple);
}

.musteri-bakiye-payment-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.musteri-bakiye-payment-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 20.25px;
  color: var(--text-primary);
}

.musteri-bakiye-payment-title-active {
  color: var(--primary-purple);
}

.musteri-bakiye-payment-subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-dark-muted);
}

.musteri-bakiye-payment-subtitle-active {
  color: var(--primary-purple);
}

/* Payment Button */
.musteri-bakiye-payment-btn {
  width: 218px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #17B976;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.musteri-bakiye-payment-btn:hover {
  background: #15a066;
  box-shadow: 0 4px 12px rgba(23, 185, 118, 0.25);
}

.musteri-bakiye-payment-btn-text {
  font-weight: 600;
  line-height: 19.09px;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .musteri-bakiye-quick-amounts {
    flex-wrap: wrap;
  }

  .musteri-bakiye-amount-btn {
    flex: 0 0 calc(33.333% - 7px);
    min-width: 0;
  }

  .musteri-bakiye-payment-btn {
    width: 100%;
  }

  .musteri-bakiye-yukle-content {
    align-items: stretch;
  }
}

/* ===============================================================
   MÜŞTERİ PANELİ - AYARLAR (SETTINGS)
   =============================================================== */

/* Settings Forms Grid */
.musteri-ayarlar-forms-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* Left Column Wrapper */
.musteri-ayarlar-left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Right Column Wrapper */
.musteri-ayarlar-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Section Container */
.musteri-ayarlar-form-section {
  display: flex;
  flex-direction: column;
}

.musteri-ayarlar-form-content {
  padding: 20px;
}

.musteri-ayarlar-form{
  gap: 0;
}

/* Override auth-form min-height for settings forms */
.musteri-ayarlar-form .auth-input-wrapper {
  min-height: 66px !important;
  height: 66px;
  border-radius: 15px !important;
}

/* Form Rows */
.musteri-ayarlar-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.musteri-ayarlar-form-row-triple {
  grid-template-columns: 1fr 1fr 1fr;
}

/* Dropdown Wrapper */
.musteri-ayarlar-dropdown-wrapper {
  position: relative;
  cursor: pointer;
  padding: 15px !important;
}

.musteri-ayarlar-dropdown-wrapper .auth-input-container {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

/* Dropdown labels are ALWAYS on top (like Figma) */
.musteri-ayarlar-dropdown-wrapper .auth-input-label {
  position: static !important;
  font-weight: 500;
  font-size: 14px !important;
  color: #666F94;
  opacity: 0.8 !important;
  transform: none !important;
  pointer-events: none;
  padding: 0;
  height: 12px;
  transition: none !important;
}

.musteri-ayarlar-dropdown-value {
  font-weight: 600;
  line-height: 1.25;
  color: #33353E;
  height: 20px;
  display: flex;
  align-items: center;
}

.musteri-ayarlar-dropdown-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.musteri-ayarlar-dropdown-wrapper.active .musteri-ayarlar-dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.musteri-ayarlar-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 14px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 240px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  padding: 8px;
}

.musteri-ayarlar-dropdown-menu.show {
  display: block;
}

.musteri-ayarlar-dropdown-option {
  padding: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: #33353E;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.musteri-ayarlar-dropdown-option:hover {
  background: #F9FAFB;
}

.musteri-ayarlar-dropdown-option.selected {
  background: #F6F7FB;
  font-weight: 600;
}

/* Phone Wrapper Override */
.musteri-ayarlar-phone-wrapper {
  padding: 15px 15px 15px 10px !important;
}

.musteri-ayarlar-phone-wrapper .auth-country-selector {
  background: rgba(234, 234, 237, 0.5);
  border-radius: 14px;
  padding: 10px;
  min-width: 83px;
  height: 46px;
}

/* Textarea Wrapper */
.musteri-ayarlar-textarea-wrapper {
  align-items: flex-start !important;
  min-height: auto !important;
  height: auto !important;
  padding: 15px !important;
}

.musteri-ayarlar-textarea-wrapper .auth-input-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.25;
  color: #666F94;
  opacity: 1;
  transition: all 0.2s ease;
}

.musteri-ayarlar-textarea-wrapper:focus-within .auth-input-label,
.musteri-ayarlar-textarea-wrapper.has-value .auth-input-label {
  top: 15px;
  transform: translateY(0);
  font-size: 14px;
  line-height: 1.43;
  opacity: 0.8;
}

.musteri-ayarlar-textarea {
  resize: vertical;
  min-height: 60px;
  font-weight: 600;
  line-height: 1.25;
  padding: 0;
  transition: padding 0.2s ease;
}

.musteri-ayarlar-textarea-wrapper:focus-within .musteri-ayarlar-textarea,
.musteri-ayarlar-textarea-wrapper.has-value .musteri-ayarlar-textarea {
  padding-top: 16px;
}

/* Submit button styles moved to shared section above (line ~20233) */

/* Password Section Specific */
.musteri-ayarlar-password-section .musteri-ayarlar-form-content {
  display: flex;
  flex-direction: column;
}

.musteri-ayarlar-password-section .auth-form-group {
  margin-bottom: 16px;
}

.musteri-ayarlar-password-section .auth-form-group:last-of-type {
  margin-bottom: 0;
}

.musteri-ayarlar-password-section .musteri-ayarlar-submit-btn{
  width: 100%;
}

/* Regular input labels - Float up only when focused or has value */
.musteri-ayarlar-form .auth-input-wrapper:not(.musteri-ayarlar-dropdown-wrapper) .auth-input-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  line-height: 1.25;
  color: #666F94;
  opacity: 1;
  transition: all 0.2s ease;
}

/* Float label up when input has focus or value */
.musteri-ayarlar-form .auth-input-wrapper:not(.musteri-ayarlar-dropdown-wrapper):focus-within .auth-input-label,
.musteri-ayarlar-form .auth-input-wrapper:not(.musteri-ayarlar-dropdown-wrapper).has-value .auth-input-label {
  top: -5px;
  transform: translateY(0);
  font-size: 14px;
  line-height: 1.43;
  opacity: 0.8;
}

/* Ensure input text doesn't overlap with floated label */
.musteri-ayarlar-form .auth-input-wrapper:not(.musteri-ayarlar-dropdown-wrapper):focus-within .auth-input,
.musteri-ayarlar-form .auth-input-wrapper:not(.musteri-ayarlar-dropdown-wrapper).has-value .auth-input {
  padding-top: 8px;
}

/* Quick Access (Hızlı Erişim) */
.musteri-ayarlar-quick-access-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}

.musteri-ayarlar-quick-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: rgba(249, 250, 251, 0.7);
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.musteri-ayarlar-quick-item:hover {
  background: rgba(249, 250, 251, 1);
}

.musteri-ayarlar-quick-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.musteri-ayarlar-quick-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid rgba(234, 234, 237, 0.5);
  border-radius: 12px;
  flex-shrink: 0;
}

.musteri-ayarlar-quick-label {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.43;
  color: #33353E;
}

/* Toggle Switch */
.musteri-ayarlar-toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
  cursor: pointer;
  flex-shrink: 0;
}

.musteri-ayarlar-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.musteri-ayarlar-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(234, 234, 237, 0.5);
  border: 1px solid rgba(110, 62, 209, 0.15);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.musteri-ayarlar-toggle-slider:before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.musteri-ayarlar-toggle input:checked + .musteri-ayarlar-toggle-slider {
  background-color: #6E3ED1;
  border-color: rgba(110, 62, 209, 0.15);
}

.musteri-ayarlar-toggle input:checked + .musteri-ayarlar-toggle-slider:before {
  transform: translateX(15px);
}

/* Avatar Selector */
.musteri-ayarlar-avatar-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  align-items: center;
}

.musteri-ayarlar-avatar-row {
  display: flex;
  gap: 16px;
  align-items: center;
  align-self: stretch;
}

.musteri-ayarlar-avatar-item {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.musteri-ayarlar-avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.musteri-ayarlar-avatar-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.musteri-ayarlar-avatar-item.musteri-ayarlar-avatar-selected {
  border-color: #7844E4;
  opacity: 1;
}

/* Avatar save button styles moved to shared section (line ~20233) */

/* Responsive */
@media (max-width: 1100px) {
  .musteri-ayarlar-forms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .musteri-ayarlar-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .musteri-ayarlar-form-row-triple {
    grid-template-columns: 1fr;
  }

  .musteri-ayarlar-submit-btn {
    width: 100%;
  }

  .musteri-ayarlar-dropdown-wrapper {
    padding: 12px !important;
  }

  .musteri-ayarlar-phone-wrapper {
    padding: 12px 12px 12px 8px !important;
  }

  .musteri-ayarlar-avatar-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .musteri-ayarlar-avatar-item {
    width: 70px;
    height: 70px;
  }
}

.alert-message {
    position:fixed;
    bottom:7px;
    right:-100%;
    min-width:300px;
    max-width:400px;
    z-index:999999;
    border:none
}
.alert {
    border-radius:8px
}

/* ===============================================================
   MÜŞTERİ E-POSTA DOĞRULAMA SECTION
   =============================================================== */

.musteri-eposta-verification-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.musteri-eposta-description {
  font-family: var(--font-gilroy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375em;
  text-align: center;
  color: #7a7f99;
  margin: 0;
}

.musteri-eposta-title {
  font-size: 22px;
  font-weight: 700;
  color: #33353e;
}

.musteri-eposta-input-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 15px 13px 15px 15px;
  width: 436px;
  height: 66px;
  border: 2px solid rgba(234, 234, 237, 0.5);
  border-radius: 15px;
  background: transparent;
  transition: border-color var(--transition-default);
}

.musteri-eposta-input-wrapper:focus-within {
  border-color: var(--primary-purple);
}

.musteri-eposta-input-wrapper.loading {
  pointer-events: none;
  opacity: 0.7;
}

.musteri-eposta-input-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  cursor: text;
}

.musteri-eposta-input {
  width: 100%;
  height: 20px;
  font-family: var(--font-gilroy);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25em;
  color: #33353e;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  transition: all var(--transition-default);
  transform: translateY(8px);
}

/* Floating label */
.musteri-eposta-input-label {
  position: absolute;
  left: 0;
  top: 4px;
  font-family: var(--font-gilroy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25em;
  color: #666f94;
  opacity: 0.8;
  pointer-events: auto;
  cursor: text;
  transform-origin: left top;
  transition: all 0.2s ease;
  transform: translateY(-4px);
}

/* Float label up when input has value or is focused */
.musteri-eposta-input-wrapper:focus-within .musteri-eposta-input-label,
.musteri-eposta-input-wrapper.has-value .musteri-eposta-input-label {
  font-size: 14px;
  line-height: 1.25em;
  transform: translateY(-14px);
  opacity: 0.8;
}

/* Verification code input state */
.musteri-eposta-input.code-input {
  letter-spacing: 0.5em;
  text-align: center;
  font-weight: 600;
  color: var(--primary-purple);
}

/* Code input label should also float up when has value */
.musteri-eposta-input-wrapper.code-state:focus-within .musteri-eposta-input-label,
.musteri-eposta-input-wrapper.code-state.has-value .musteri-eposta-input-label {
  font-size: 14px;
  line-height: 1.25em;
  transform: translateY(-14px);
  opacity: 0.8;
}

.musteri-eposta-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  width: 80px;
  background: var(--primary-purple);
  border: none;
  border-radius: 12px;
  font-family: var(--font-gilroy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.67em;
  color: #ffffff;
  cursor: pointer;
  transition: all var(--transition-default);
  white-space: nowrap;
}

.musteri-eposta-submit-btn:hover {
  background: #6a35cd;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(120, 68, 228, 0.3);
}

.musteri-eposta-submit-btn:active {
  transform: translateY(0);
}

.musteri-eposta-submit-btn.loading {
  pointer-events: none;
  opacity: 0.7;
  justify-content: center;
  align-items: center;
}

/* Loading spinner inside button */
.musteri-eposta-submit-btn.loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin: 0;
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .musteri-eposta-input-wrapper {
    width: 100%;
    max-width: 436px;
  }

  .musteri-eposta-description {
    font-size: 14px;
  }
}

/* ===============================================================
   EKSTRA PAKETLER HERO SECTION STYLES
   =============================================================== */
.ekstra-paketler-hero-section {
  padding: 60px 0;
}

.ekstra-paketler-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}

.ekstra-paketler-hero-title {
  font-family: var(--font-gilroy);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.48px;
  text-align: center;
  color: var(--text-primary);
  margin: 0;
  max-width: 1040px;
}

.ekstra-paketler-hero-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.389;
  text-align: center;
  color: var(--text-secondary);
  margin: 0;
  max-width: 748px;
}

.ekstra-paketler-hero-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ekstra-paketler-btn-login,
.ekstra-paketler-btn-signup {
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5625;
  white-space: nowrap;
}

.ekstra-paketler-btn-login {
  background-color: var(--bg-light);
  border: 1px solid #CDD5DF;
  color: var(--text-primary);
}

.ekstra-paketler-btn-login:hover {
  background-color: rgba(120, 68, 228, 0.05);
  border-color: var(--primary-purple);
  color: var(--text-primary);
}

.ekstra-paketler-btn-signup {
  background-color: var(--primary-purple);
  border: 1px solid #CDD5DF;
  color: var(--text-light);
}

.ekstra-paketler-btn-signup:hover {
  background-color: rgba(120, 68, 228, 0.05);
  border-color: var(--primary-purple);
}

.ekstra-paketler-hero-avatars-container {
  width: 100%;
  overflow: hidden;
  margin-top: 50px;
}

.ekstra-paketler-hero-avatars {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.ekstra-paketler-avatar {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 0;
  flex-shrink: 0;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -webkit-touch-callout: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .ekstra-paketler-hero-title {
    font-size: 38px;
  }

  .ekstra-paketler-avatar {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 991px) {
  .ekstra-paketler-hero-section {
    padding: 50px 0;
  }

  .ekstra-paketler-hero-title {
    font-size: 34px;
  }

  .ekstra-paketler-hero-description {
    font-size: 17px;
  }

  .ekstra-paketler-hero-avatars {
    gap: 15px;
  }

  .ekstra-paketler-avatar {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 768px) {
  .ekstra-paketler-hero-section {
    padding: 40px 0;
  }

  .ekstra-paketler-hero-content {
    gap: 16px;
  }

  .ekstra-paketler-hero-title {
    font-size: 28px;
    letter-spacing: -0.32px;
  }

  .ekstra-paketler-hero-description {
    font-size: 16px;
  }

  .ekstra-paketler-hero-buttons {
    gap: 12px;
  }

  .ekstra-paketler-btn-login,
  .ekstra-paketler-btn-signup {
    width: 100%;
    padding: 12px 20px;
  }

  .ekstra-paketler-avatar {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .ekstra-paketler-hero-section {
    padding: 32px 0;
  }

  .ekstra-paketler-hero-title {
    font-size: 24px;
  }

  .ekstra-paketler-hero-description {
    font-size: 15px;
  }

  .ekstra-paketler-btn-login,
  .ekstra-paketler-btn-signup {
    font-size: 15px;
  }

  .ekstra-paketler-avatar {
    width: 100px;
    height: 100px;
  }

  .ekstra-paketler-hero-avatars {
    gap: 10px;
  }
}

/* ===============================================================
   ORGANİK PAKETLER SECTION
   =============================================================== */

.organik-paketler-section {
  padding: 40px 0;
}

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

.organik-paketler-title {
  font-family: var(--font-gilroy);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.209;
  color: #4C5473;
  margin-bottom: 5px;
}

.organik-paketler-subtitle {
  font-family: var(--font-gilroy);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.16;
  color: #666F94;
  margin: 0;
}

.organik-paketler-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 33px;
}

/* Platform Filters */
.organik-paketler-platform-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid #EAEAED;
  border-radius: 14px;
}

.organik-platform-filter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
}

.organik-platform-filter span {
  font-family: var(--font-gilroy);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.177;
  color: #666F94;
  transition: var(--transition-default);
}

.organik-platform-filter svg {
  width: 20px;
  height: 20px;
  color: #666F94;
  transition: var(--transition-default);
}

.organik-platform-filter:hover {
  background: rgba(120, 68, 228, 0.05);
}

.organik-platform-filter.active {
  background: #7844E4;
}

.organik-platform-filter.active span {
  color: #FFFFFF;
}

.organik-platform-filter.active svg {
  color: #FFFFFF;
}

/* Duration Filters */
.organik-paketler-duration-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 12px;
  background: #FFFFFF;
  border: 1px solid #EAEAED;
  border-radius: 14px;
}

.organik-duration-filter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-default);
  min-width: 96px;
}

.organik-duration-filter span {
  font-family: var(--font-gilroy);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.177;
  color: #666F94;
  transition: var(--transition-default);
}

.organik-duration-filter:hover {
  background: rgba(26, 29, 42, 0.05);
}

.organik-duration-filter.active {
  background: #1A1D2A;
}

.organik-duration-filter.active span {
  color: #FFFFFF;
}

/* Packages Grid */
.organik-paketler-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
  gap: 33px;
}

/* Package Card */
.organik-package-card {
  position: relative;
  width: 430px;
  min-height: 711px;
  background: #F6F7FB;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0px 10px 50px -3.75px rgba(0, 0, 0, 0.01),
  0px 2.29px 11.45px -2.5px rgba(0, 0, 0, 0.03),
  0px 0.60px 3.02px -1.25px rgba(0, 0, 0, 0.04);
}

.organik-package-card-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  background: #FFFFFF;
  border-radius: 24px;
}

.organik-package-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-top: 45px;
  padding-left: 45px;
  padding-right: 45px;
}

.organik-package-icon {
  width: 21.1px;
  height: 24px;
  flex-shrink: 0;
}

.organik-package-name {
  font-family: var(--font-gilroy);
  font-weight: 700; /* Base weight, overridden by inline spans */
  font-size: 20px;
  line-height: 1.209;
  color: #33353E;
  margin: 0;
  width: 164px;
}

.organik-package-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.organik-package-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0 45px 45px 45px;
  gap: 30px;
}

.organik-package-pricing-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.organik-package-price-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 340px;
}

.organik-package-price {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.21;
  margin: 0;
  display: inline-block;
}

.organik-package-price-original {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.21;
  color: #6F769B;
  margin: 0;
}

.organik-package-description {
  font-family: var(--font-gilroy);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.375;
  color: #666F94;
  margin: 0;
  max-width: 340px;
}

.organik-package-limited-badge {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #FCD34D;
  border-radius: 10px;
  position: absolute;
  top: 58px;
  right: 45px;
  z-index: 2;
}

.organik-package-limited-badge span {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.333;
  color: #78350F;
  white-space: nowrap;
}

.organik-package-limited-badge-inline {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  background: #FCD34D;
  border-radius: 8px;
  flex-shrink: 0;
}

.organik-package-limited-badge-inline span {
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.333;
  color: #78350F;
  white-space: nowrap;
  text-transform: uppercase;
}

.organik-package-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  width: 100%;
  max-width: 340px;
  height: 52px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-default);
}

.organik-package-btn span {
  font-family: var(--font-gilroy);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.389;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.12);
}

.organik-package-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.organik-package-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 340px;
}

.organik-package-features-title {
  font-family: var(--font-gilroy);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.193;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

.organik-package-features-list {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 14px;
}

.organik-package-feature-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  gap: 10px;
  min-height: 24px;
}

.organik-package-feature-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.organik-package-feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.organik-package-feature-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.organik-package-feature-text {
  font-family: var(--font-gilroy);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.193;
  text-transform: capitalize;
  color: #4A4A4A;
  margin: 0;
}

.organik-package-feature-info {
  width: 18px;
  height: 18px;
  color: #7A7F99;
  flex-shrink: 0;
  cursor: pointer;
}

.organik-package-view-all {
  font-family: var(--font-gilroy);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.193;
  text-transform: capitalize;
  text-align: center;
  margin: 0;
  cursor: pointer;
  transition: var(--transition-default);
  align-self: center;
}

.organik-package-view-all:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 1400px) {
  .organik-paketler-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .organik-paketler-section {
    padding: 60px 0;
  }

  .organik-paketler-filters {
    flex-direction: column;
    gap: 15px;
  }

  .organik-paketler-platform-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .organik-paketler-platform-filters::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  .organik-platform-filter {
    padding: 10px 20px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .organik-platform-filter span {
    font-size: 15px;
  }

  .organik-paketler-duration-filters {
    justify-content: center;
  }

  .organik-paketler-grid {
    gap: 24px;
  }

  .organik-package-card {
    width: 100%;
    max-width: 430px;
    height: auto;
    min-height: 711px;
  }

  .organik-package-card-bg {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
  }

  .organik-package-content {
    gap: 24px;
  }

  .organik-package-btn {
    width: 100%;
    max-width: 100%;
  }

  .organik-package-features {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .organik-paketler-section {
    padding: 40px 0 0;
  }

  .organik-paketler-title {
    font-size: 24px;
  }

  .organik-paketler-subtitle {
    font-size: 14px;
  }

  .organik-paketler-platform-filters {
    padding: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  .organik-paketler-platform-filters::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }

  .organik-platform-filter {
    padding: 8px 15px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .organik-platform-filter span {
    font-size: 14px;
  }

  .organik-platform-filter svg {
    width: 16px;
    height: 16px;
  }

  .organik-duration-filter {
    padding: 8px 20px;
    min-width: 80px;
  }

  .organik-duration-filter span {
    font-size: 15px;
  }

  .organik-package-header {
    padding: 30px 30px 0 30px;
  }

  .organik-package-name {
    font-size: 18px;
  }

  .organik-package-content {
    padding: 0 30px 30px 30px;
    gap: 20px;
  }

  .organik-package-limited-badge {
    top: 43px;
    right: 30px;
  }

  .organik-package-pricing-section {
    margin-top: 34px;
  }

  .organik-package-btn {
    width: 100%;
    max-width: 100%;
  }

  .organik-package-features {
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile Slider - Activated at 968px and below */
@media (max-width: 968px) {
  .organik-paketler-grid {
    display: block;
    position: relative;
    overflow: visible;
    touch-action: pan-y;
    padding-bottom: 40px;
  }

  .organik-paketler-slider-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .organik-paketler-slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  .organik-paketler-slider-wrapper .organik-package-card {
    flex: 0 0 calc(100% - 40px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  /* Slider Pagination Dots */
  .organik-paketler-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
  }

  .organik-paketler-pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(120, 68, 228, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .organik-paketler-pagination-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(90deg, #7844E4 0%, #A855F7 100%);
  }

  /* Pagination Dot Slide Animations */
  @keyframes dotSlideFromLeft {
    from {
      opacity: 0;
      transform: translateX(-10px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

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

  .organik-paketler-pagination-dot.active.slide-from-left {
    animation: dotSlideFromLeft 0.3s ease-out;
  }

  .organik-paketler-pagination-dot.active.slide-from-right {
    animation: dotSlideFromRight 0.3s ease-out;
  }
}

@media (max-width: 480px) {
  .organik-paketler-platform-filters {
    width: 100%;
  }
}

/* ===============================================================
   PAKETLER TABLE (Comparison Table)
   =============================================================== */

.paketler-table-section {
  padding: 40px 0;
}

.paketler-table-wrapper {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
}

/* Table Header */
.paketler-table-header {
  display: grid;
  grid-template-columns: 436px repeat(3, 1fr);
  border-bottom: 1px solid #EAEAED;
  align-items: flex-end;
  background: var(--bg-light-alt);
}

.paketler-table-header-features {
  padding: 30px;
  background: #FFFFFF;
  border-top-left-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 64px;
}

.paketler-table-header-features h3 {
  margin: 0;
  font-family: var(--font-gilroy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  color: var(--text-primary);
  text-align: center;
}

.paketler-table-header-package {
  padding: 20px 30px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  height: 145px;
}

.paketler-table-header-package:nth-child(2) {
  border-top-left-radius: 20px;
}

.paketler-table-header-package:last-child {
  border-right: none;
  border-top-right-radius: 20px;
}

.package-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.package-header-info svg {
  flex-shrink: 0;
  width: 21.1px;
  height: 24px;
}

.package-name {
  font-family: var(--font-gilroy);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.209em;
  color: var(--text-primary);
}

/* Add to Cart Buttons */
.btn-add-to-cart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding: 6.35px 5px 6.35px 16px;
  background: #F6F7FB;
  border: 1px solid #EAEAED;
  border-radius: 16px;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.21em;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.btn-add-to-cart-text {
  position: absolute;
  font-family: var(--font-gilroy);
  left: 16px;
  color: #33353E;
  white-space: nowrap;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.btn-add-to-cart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

/* Purple variant */
.btn-add-to-cart-purple .btn-add-to-cart-icon {
  background: linear-gradient(90deg, #9462FB 0%, #7624BF 100%);
}

.btn-add-to-cart-purple:hover .btn-add-to-cart-icon {
  width: calc(100% + 11px);
  margin-left: -16px;
  padding: 0 15px;
  justify-content: flex-end;
}

.btn-add-to-cart-purple:hover .btn-add-to-cart-text {
  opacity: 1;
  color: #FFFFFF;
}

/* Blue variant */
.btn-add-to-cart-blue .btn-add-to-cart-icon {
  background: linear-gradient(120deg, #296FF9 0%, #59CEFC 100%);
}

.btn-add-to-cart-blue:hover .btn-add-to-cart-icon {
  width: calc(100% + 11px);
  margin-left: -16px;
  padding: 0 15px;
  justify-content: flex-end;
}

.btn-add-to-cart-blue:hover .btn-add-to-cart-text {
  opacity: 1;
  color: #FFFFFF;
}

/* Orange variant */
.btn-add-to-cart-orange .btn-add-to-cart-icon {
  background: linear-gradient(176deg, #FF5601 0%, #FF8800 100%);
}

.btn-add-to-cart-orange:hover .btn-add-to-cart-icon {
  width: calc(100% + 11px);
  margin-left: -16px;
  padding: 0 15px;
  justify-content: flex-end;
}

.btn-add-to-cart-orange:hover .btn-add-to-cart-text {
  opacity: 1;
  color: #FFFFFF;
}

/* Table Body */
.paketler-table-body {
  display: flex;
  flex-direction: column;
}

.paketler-table-row {
  display: grid;
  grid-template-columns: 436px repeat(3, 1fr);
  border-bottom: 1px solid #EAEAED;
}

.paketler-table-row:last-child {
  border-bottom: none;
}

.paketler-table-cell-feature {
  padding: 30px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paketler-table-row-last .paketler-table-cell-feature {
  border-bottom-left-radius: 20px;
}

.paketler-table-cell-feature h4 {
  margin: 0;
  font-family: var(--font-gilroy);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  color: var(--text-primary);
}

.paketler-table-cell-feature p {
  margin: 0;
  font-family: var(--font-gilroy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #666F94;
}

.paketler-table-cell-check {
  padding: 30px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paketler-table-cell-check:last-child {
  border-right: none;
}

.paketler-table-row-last .paketler-table-cell-check:last-child {
  border-bottom-right-radius: 20px;
}

.paketler-table-cell-check svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
  .paketler-table-header {
    grid-template-columns: 350px repeat(3, 1fr);
  }

  .paketler-table-row {
    grid-template-columns: 350px repeat(3, 1fr);
  }

  .paketler-table-header-features,
  .paketler-table-cell-feature {
    padding: 24px;
  }

  .paketler-table-header-package,
  .paketler-table-cell-check {
    padding: 24px;
  }

  .paketler-table-cell-feature h4 {
    font-size: 18px;
  }

  .paketler-table-cell-feature p {
    font-size: 14px;
  }

  .package-name {
    font-size: 18px;
  }

  .btn-add-to-cart {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .paketler-table-section {
    padding: 60px 0;
  }

  .paketler-table-header {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .paketler-table-header-features {
    border-right: none;
    border-bottom: 1px solid #EAEAED;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .paketler-table-header-package {
    border-right: none;
    border-bottom: 1px solid #EAEAED;
    padding: 20px;
  }

  .paketler-table-header-package:last-child {
    border-top-right-radius: 0;
  }

  .paketler-table-cell-feature {
    border-right: none;
    border-bottom: 1px solid #EAEAED;
    padding: 20px;
  }

  .paketler-table-row-last .paketler-table-cell-feature {
    border-bottom-left-radius: 0;
  }

  .paketler-table-cell-check {
    border-right: none;
    border-bottom: 1px solid #EAEAED;
    padding: 20px;
    gap: 16px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .paketler-table-cell-check::before {
    content: attr(data-package);
    font-family: var(--font-gilroy);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
  }

  .paketler-table-row-last .paketler-table-cell-check:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 20px;
  }

  .paketler-table-header-features {
    height: auto;
  }

  .paketler-table-header-package {
    height: auto;
  }
}

@media (max-width: 768px) {
  .paketler-table-section {
    padding: 40px 0;
  }

  .paketler-table-header-features h3 {
    font-size: 18px;
  }

  .paketler-table-cell-feature h4 {
    font-size: 16px;
  }

  .paketler-table-cell-feature p {
    font-size: 13px;
    line-height: 1.5em;
  }

  .package-name {
    font-size: 16px;
  }

  .btn-add-to-cart {
    font-size: 13px;
    padding: 5px 4px;
  }

  .btn-add-to-cart-text {
    font-size: 13px;
  }

  .btn-add-to-cart-icon {
    width: 36px;
    height: 36px;
  }

  .btn-add-to-cart-icon svg {
    width: 10px;
    height: 10px;
  }

  .paketler-table-cell-check {
    padding: 16px 20px;
  }

  .paketler-table-cell-check svg {
    width: 32px;
    height: 32px;
  }
}