/* Genel Stil Ayarları */
:root {
    --primary-color: #007bff; /* Mavi (SEPETE EKLE butonu için) */
    --panel-bg: #ffffff; /* Beyaz panel arka planı */
    --border-color: #e9ecef; /* Hafif sınır rengi */
    --green-border-color: #dee2e6; /* Sipariş özeti ayırıcı çizgi rengi */
}


/* Başlık Stili */
.order-summary-title {
   	font-size: 28px;
  	line-height: 35px;
  	display: flex;
  	font-family: Manrope;
  	color: #0c141d;
    height: 54px;
  	position: relative;
  	border-bottom: 1px solid #cddbea;
    margin: 0 auto;
}
.order-summary{
  	height: 30px;
  	position: relative;
  	font-size: 22px;
  	letter-spacing: -0.33px;
  	line-height: 27.5px;
  	display: flex;
  	font-family: Manrope;
  	color: #0c141d;
  	text-align: left;
  	align-items: center;
}

/* Ana İçerik ve Sipariş Özeti Panelleri */
.payment-bg {
    background-color: #f8fafc;
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.billing-cycle{
    opacity: 0;
}
/* Form Elemanları */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    font-size: 1rem;
}

/* Ödeme Döngüsü (Aylık Seçenekler) Stili */
.btn-outline-secondary {
    border: 1px solid var(--border-color);
    background-color: var(--panel-bg);
    color: #495057;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.2s;
    min-width: 90px;
    text-align: center;
}

.btn-check:checked + .btn-outline-secondary,
.btn-outline-secondary.active {
    background-color: var(--primary-color);
    color: var(--panel-bg);
    border-color: var(--primary-color);
    font-weight: 600;
}

/* Sipariş Özeti Stilleri */
.offer-summary-desc {
   font-size: 24px;
  	line-height: 24px;
  	font-family: Manrope;
  	color: #0c141d;
}

/* Ayırıcı Çizgi */
.green-border {
    border-top: 1px solid var(--green-border-color);
    margin: 1rem 0;
}

/* Toplam Miktar Stili (Görselde kalın ve belirgin) */
#total-amount {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000;
}

/* SEPETE EKLE Butonu Stili */
.pass-payment {
   	height: 48px;
  	position: relative;
  	border-radius: 9999px;
  	background: linear-gradient(90deg, #0082cf, #58b5eb);
  	overflow: hidden;
  	text-align: center;
  	font-size: 16px;
  	color: #f8fafc;
  	font-family: Manrope;
    padding: 10px 15px;
    border: none;
    transition: background-color 0.2s;
}

.pass-payment:hover {
    background: linear-gradient(90deg, #0083cfc6, #58b5eb);
    color: #fff;
}
/* Segmented Control Kapsayıcı */
.segmented-control {
    display: flex; /* Öğeleri yan yana dizer */
   width: 100%;
  	height: 40px;
  	position: relative;
  	border-radius: 9999px;
  	background-color: #e6edf4;
  	text-align: left;
  	font-size: 18px;
  	color: #4573a1;
  	font-family: Manrope;
    max-width: 1100px;
    margin: 0 auto; /* Ortalamak isterseniz */
}

/* Hareket Eden Mavi Vurgu */
.segmented-control-highlight {
  position: absolute;
  	height: calc(100% - 8px);
  	width: calc(100% - 903px);
  	top: 4px;
  	right: 899px;
  	bottom: 4px;
  	left: 4px;
  	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  	border-radius: 9999px;
  	background-color: #f8fafc;
  	overflow: hidden;
  	text-align: center;
  	color: #0c141d!important;
    transition: left 0.3s ease, width 0.3s ease; /* Yumuşak geçiş */
    z-index: 1; /* Diğer label'ların altında */
}

/* Radio Input Gizleme */
.segmented-control-input {
    display: none; /* Radio butonlarını gizle */
}

/* Label Stilleri */
.segmented-control-label {
    position: relative;
    z-index: 2; /* Highlight'ın üzerinde olması için */
    padding: 8px 15px; /* İç boşluk */
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease; /* Renk geçişi */
    white-space: nowrap; /* Metinlerin alt satıra geçmesini engelle */
    text-align: center;
   flex: 1;
    user-select: none; /* Metin seçilebilirliğini engelle */
}

/* Seçili Label Stili (Input'a bağlı) */
.segmented-control-input:checked + .segmented-control-label {
    color: #0c141d; /* Seçili olduğunda beyaz metin */
    font-weight: 500;
}
.price-desc{
 	font-size: 16px!important;
  	line-height: 24px!important;
  	font-family: Manrope!important;
  	color: #0c141d!important;
}
.toplamlar{
    font-size: 18px!important;
  	letter-spacing: -0.27px!important;
  	line-height: 22.5px!important;
  	display: flex!important;
  	font-family: Manrope!important;
  	color: #0c141d!important;
    font-weight: 700;
}
.form-label{
    font-size: 16px;
  	line-height: 24px;
  	font-weight: 500;
  	font-family: Manrope;
  	color: #0c141d;
}
.form-control, .form-select{
    height: 54px;
  	position: relative;
  	border-radius: 12px;
  	background-color: #f8fafc;
  	border: 1px solid #cddbea;
  	box-sizing: border-box;
  	overflow: hidden;
  	text-align: left;
  	font-size: 14px;
  	color: #4573a1;
  	font-family: Manrope;
}
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder {
    /* Input placeholder metin rengini etkiler */
    color: #4573a1; 
}
.form-control::placeholder {
  color: #4573a1; /* istediğin renk */
  opacity: 1; /* Safari'de soluk görünmesin diye */
}

.form-select:focus{
    box-shadow: none!important;
    border-color: #068bdb!important;
}
.form-control:focus{
     box-shadow: none!important;
    border-color: #068bdb!important;
}
.alert-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 0 20px;
      box-sizing: border-box;
}

.alert {
      width: 100%;
      position: relative;
      border-radius: 0px 8px 8px 0px;
      background-color: #dbeafe;
      border-left: 4px solid #068bdb;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 16px 16px 16px 20px;
      max-width: 896px;
      text-align: left;
      font-size: 16px;
      color: #068bdb;
      font-family: Poppins;
}
@media (max-width: 767px) {
    h2.order-summary-title{
        margin-top: 90px;
        padding-bottom: 80px;
    }
}