/* ========================================== */
/* Checkout Pages - Centralized Styles        */
/* All checkout pages share these styles      */
/* ========================================== */

/* Fix h1 line-height globally for checkout pages */
h1 {
  line-height: 1.3;
}

/* ================================ */
/* Page Layout - 2 Column Grid     */
/* ================================ */
.checkout-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ================================ */
/* Main Content Area               */
/* ================================ */
.checkout-page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================================ */
/* Sidebar - Order Summary         */
/* ================================ */
.checkout-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.checkout-page__sidebar h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

/* Summary Items */
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.checkout-summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.checkout-summary-item__price {
  color: #333;
  font-weight: 500;
}

.checkout-summary-item--discount .checkout-summary-item__price {
  color: #51b549;
}

/* Total Row */
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.checkout-summary-total__value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Back Link in Sidebar */
.checkout-back-link {
  display: block;
  text-align: center;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.checkout-back-link:hover {
  color: #333;
}

/* ================================ */
/* Continue Button                 */
/* ================================ */
.checkout-continue-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
  margin-bottom: 20px;
}

.checkout-continue-btn:hover {
  background: #002244;
  color: #fff;
}

.checkout-continue-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ================================ */
/* Form Sections                   */
/* ================================ */
.checkout-form-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.checkout-form-section h3 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
}

.checkout-form-group {
  margin-bottom: 15px;
}

.checkout-form-group:last-child {
  margin-bottom: 0;
}

.checkout-form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.checkout-form-group input,
.checkout-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
  outline: none;
  border-color: #e37c33;
  background: #fff;
}

/* Input Error State */
.checkout-form-group input.input-error,
.checkout-form-group textarea.input-error {
  border: 2px solid #e53935;
  background: #fff5f5;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

/* Checkbox Toggle */
.checkout-form-group--toggle label {
  cursor: pointer;
  font-weight: normal;
}

.checkout-form-group--toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* ================================ */
/* Toast Notifications             */
/* ================================ */
.checkout-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: toastSlideDown 0.4s ease-out, toastPulse 2s ease-in-out infinite;
  max-width: 90%;
  min-width: 320px;
}

.checkout-toast--error {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border: 2px solid #e53935;
}

.checkout-toast--success {
  background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
  border: 2px solid #43a047;
}

.checkout-toast__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.checkout-toast__message {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.checkout-toast__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
  margin-left: 8px;
}

.checkout-toast__close:hover {
  color: #333;
}

@keyframes toastSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes toastPulse {

  0%,
  100% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow: 0 12px 50px rgba(229, 57, 53, 0.3);
  }
}

/* ================================ */
/* Loading State                   */
/* ================================ */
.checkout-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.checkout-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

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

/* ================================ */
/* Product Thumbnails              */
/* ================================ */
.checkout-product-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-product-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.checkout-product-thumb__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e37c33;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================ */
/* Mobile Fixed Bottom Button      */
/* ================================ */
.checkout-mobile-fixed {
  display: none;
}

/* ================================ */
/* Desktop Only Elements           */
/* ================================ */
/* Nothing needed here - desktop is default */

/* ================================ */
/* Mobile Responsive                */
/* ================================ */
@media (max-width: 768px) {
  .checkout-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .checkout-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .desktop-only {
    display: none !important;
  }

  .checkout-mobile-fixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .checkout-mobile-fixed .checkout-continue-btn {
    margin-bottom: 0;
  }
}

/* Hide bottom toolbar on checkout pages */
.tf-toolbar-bottom {
  display: none !important;
}

/* ================================ */
/* Form Icon Left Padding          */
/* Input fields with left icons    */
/* ================================ */
.siparis-bilgileri-page .input-wrapper input,
.siparis-bilgileri-page .input-wrapper textarea,
.fatura-page .input-wrapper input,
.fatura-page .input-wrapper textarea {
  padding-left: 44px !important;
}

.siparis-bilgileri-page .input-wrapper.textarea-wrapper textarea,
.fatura-page .input-wrapper.textarea-wrapper textarea {
  padding-left: 44px !important;
}

/* Icon Positioning - Unified */
.siparis-bilgileri-page .input-wrapper,
.fatura-page .input-wrapper {
  position: relative;
}

.siparis-bilgileri-page .input-wrapper i[class^="icon-"],
.siparis-bilgileri-page .input-wrapper i[class*=" icon-"],
.fatura-page .input-wrapper i[class^="icon-"],
.fatura-page .input-wrapper i[class*=" icon-"] {
  position: absolute;
  color: #999;
  pointer-events: none;
  z-index: 1;
}

/* Floating label adjustment for icon padding */
.siparis-bilgileri-page .floating-label-text {
  left: 44px;
}

/* ============================================================= */
/* Page-Specific Styles (extracted from style jsx blocks)         */
/* These are loaded via SSR <link> tag to prevent FOUC            */
/* ============================================================= */

/* =============================== */
/* sepet - Block 1  */
/* =============================== */

.sepet-page__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

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


/* =============================== */
/* sepet - Block 2  */
/* =============================== */

.sepet-page__empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 12px;
  margin: 20px 0;
}

.sepet-page__empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.sepet-page__empty h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

.sepet-page__empty p {
  color: #666;
  margin-bottom: 25px;
}

.sepet-page__shop-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e37c33;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.sepet-page__shop-btn:hover {
  background: #d06a22;
}


/* =============================== */
/* sepet - Block 3  */
/* =============================== */

.sepet-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sepet-page__title {
  grid-column: 1 / -1;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.sepet-page__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sepet-page__items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sepet-page__shipping {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
}

.sepet-page__shipping-price {
  color: #e37c33;
  font-weight: 600;
}

/* Sidebar */
.sepet-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.sepet-page__continue-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  margin-bottom: 20px;
}

.sepet-page__continue-btn:hover {
  background: #002244;
  color: #fff;
}

.sepet-page__summary-box {
  margin-bottom: 15px;
}

.sepet-page__summary-box h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.summary-item__price {
  color: #333;
  font-weight: 500;
}

.summary-item--shipping {
  color: #51b549;
}

.sepet-page__discount-section {
  padding: 15px 0;
  border-top: 1px solid #eee;
}

.sepet-page__discount-btn {
  width: 100%;
  padding: 10px;
  background: #e37c33;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.sepet-page__discount-applied {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sepet-page__discount-label {
  font-size: 12px;
  color: #e37c33;
  font-weight: 600;
}

.sepet-page__discount-value {
  font-size: 16px;
  color: #51b549;
  font-weight: 600;
}

.sepet-page__discount-remove {
  width: 20px;
  height: 20px;
  border: none;
  background: #e7cdb2;
  color: #000;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sepet-page__total-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.sepet-page__total-value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Hide mobile fixed bottom on desktop */
.mobile-fixed-bottom {
  display: none;
}

/* Discount Modal */
.discount-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.discount-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.discount-modal__content {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
}

.discount-modal__content h3 {
  margin: 0 0 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.discount-modal__content input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

.discount-modal__content input:focus {
  outline: none;
  border-color: #e37c33;
}

.discount-modal__error {
  color: #d00;
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
}

.discount-modal__actions {
  display: flex;
  gap: 10px;
}

.discount-modal__cancel {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

.discount-modal__apply {
  flex: 1;
  padding: 12px;
  background: #e37c33;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}

.discount-modal__apply:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Mobile styles */
@media (max-width: 768px) {
  .sepet-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .desktop-only {
    display: none !important;
  }

  .sepet-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .mobile-fixed-bottom .sepet-page__continue-btn {
    margin-bottom: 0;
  }
}


/* =============================== */
/* sepet-siparis-bilgileri - Block 1  */
/* =============================== */

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: slideDown 0.4s ease-out, pulse 2s ease-in-out infinite;
  max-width: 90%;
  min-width: 320px;
}

.toast-notification--error {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border: 2px solid #e53935;
}

.toast-notification--success {
  background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
  border: 2px solid #10b981;
}

.toast-notification__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.toast-notification__message {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  flex: 1;
  line-height: 1.4;
}

.toast-notification__close {
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  padding: 0 4px;
  margin-left: 8px;
}

.toast-notification__close:hover {
  color: #333;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow: 0 12px 50px rgba(229, 57, 53, 0.3);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.siparis-bilgileri-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.siparis-bilgileri-page__header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.siparis-bilgileri-page__back {
  padding: 8px 15px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.siparis-bilgileri-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.siparis-bilgileri-page__form {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.form-section {
  padding: 12px;
}

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

.product-images-section {
  padding: 15px 20px;
}

.product-images {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-image-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.form-group:last-child {
  margin-bottom: 0;
}

/* Floating Label Form Design */
.form-group.floating-label {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 0;
  background: #fff;
}

.input-wrapper:focus-within {
  border-color: #1a7dc4;
  box-shadow: 0 0 0 2px rgba(26, 125, 196, 0.1);
}

.input-icon {
  padding: 0 12px;
  font-size: 18px;
  color: #1a7dc4;
  flex-shrink: 0;
}

.input-wrapper input,
.input-wrapper textarea {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 12px 14px 40px;
  font-size: 16px;
  background: transparent;
  color: #333;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #aaa;
}

.floating-label-text {
  position: absolute;
  top: -8px;
  right: 12px;
  left: auto;
  background: #fff;
  padding: 0 6px;
  font-size: 11px;
  color: #1a7dc4;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

/* Show floating label only when input has value */
.input-wrapper input:not(:placeholder-shown)~.floating-label-text,
.input-wrapper textarea:not(:placeholder-shown)~.floating-label-text {
  opacity: 1;
  visibility: visible;
}

.textarea-wrapper {
  align-items: flex-start;
}

.textarea-wrapper .input-icon {
  padding-top: 14px;
}

.textarea-wrapper textarea {
  resize: vertical;
  min-height: 60px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.form-icon {
  font-size: 18px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e37c33;
  background: #fff;
}

/* Input error state */
.form-group input.input-error,
.form-group textarea.input-error {
  border: 2px solid #e53935;
  background: #fff5f5;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

.region-info {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 15px;
  background: #f0f8ff;
  border: 1px solid #d0e8f5;
  border-radius: 8px;
}

.region-info__icon {
  font-size: 16px;
  flex-shrink: 0;
}

.region-info__text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Toggle Switch Styles */
.toggle-section {
  background: #f8f9fa;
}

.region-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.toggle-switch input:checked+.toggle-slider {
  background-color: #e37c33;
}

.toggle-switch input:checked+.toggle-slider:before {
  transform: translateX(24px);
}

.toggle-label {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.region-info-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 6px;
  font-size: 13px;
  color: #856404;
}

.region-info-banner__icon {
  font-size: 16px;
}

/* Multi-form Section Styles */
.multi-form-section {
  margin: 15px 0;
  overflow: hidden;
}

.multi-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
}

.multi-form-header__image,
.multi-form-header__images {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.multi-form-header__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.multi-form-header__title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

.multi-form-header__region {
  font-size: 13px;
  color: #666;
}

.multi-form-header__count {
  font-size: 12px;
  color: #888;
}

.more-items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e9ecef;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.hazir-not-btn {
  width: 100%;
  padding: 15px;
  background: #f5f5f5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.emoji-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.emoji-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #eee;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}

.emoji-btn:hover {
  border-color: #e37c33;
}

.emoji-btn.selected {
  border-color: #e37c33;
  background: #fff5eb;
}

/* Sidebar */
.siparis-bilgileri-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.continue-btn {
  width: 100%;
  padding: 15px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.continue-btn:disabled {
  opacity: 0.7;
}

.order-summary {
  margin-bottom: 15px;
}

.order-summary h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}

.summary-item__name {
  color: #666;
  font-weight: 600;
}

.summary-item__price {
  color: #333;
}

.summary-item--shipping {
  color: #999;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
  margin-bottom: 15px;
}

.order-total__value {
  font-size: 20px;
  font-weight: 600;
}

.back-link {
  display: block;
  width: 100%;
  text-align: center;
  color: #666;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Modal */
.not-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.not-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.not-modal__content {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.not-modal__content h3 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.not-modal__categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.not-modal__cat {
  padding: 8px 15px;
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.not-modal__cat.active {
  background: #4caf50;
  color: #fff;
}

.not-modal__list {
  max-height: 300px;
  overflow-y: auto;
}

.not-modal__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  text-align: left;
}

.not-modal__checkbox {
  font-size: 18px;
}

.not-modal__text {
  flex: 1;
  font-size: 14px;
}

.not-modal__close {
  display: block;
  width: 100%;
  padding: 12px;
  background: #e37c33;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

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

/* Hide mobile fixed bottom on desktop */
.mobile-fixed-bottom {
  display: none;
}

@media (max-width: 768px) {
  .siparis-bilgileri-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  /* Hide desktop continue button on mobile */
  .desktop-only {
    display: none !important;
  }

  /* Sidebar becomes static on mobile */
  .siparis-bilgileri-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .siparis-bilgileri-page__form {
    margin-bottom: 20px;
  }

  /* Show and fix mobile continue button at bottom */
  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .mobile-fixed-bottom .continue-btn {
    width: 100%;
    margin-bottom: 0;
  }
}


/* =============================== */
/* sepet-fatura - Block 1  */
/* =============================== */

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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


/* =============================== */
/* sepet-fatura - Block 2  */
/* =============================== */

/* Toast Notification */
.toast-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  animation: slideDown 0.4s ease-out, pulse 2s ease-in-out infinite;
  max-width: 90%;
  min-width: 320px;
}

.toast-notification--error {
  background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
  border: 2px solid #e53935;
}

.toast-notification--success {
  background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
  border: 2px solid #43a047;
}

.toast-notification__icon {
  font-size: 28px;
  flex-shrink: 0;
}

.toast-notification__message {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.toast-notification__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
  margin-left: 8px;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  }

  50% {
    box-shadow: 0 12px 50px rgba(229, 57, 53, 0.3);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.fatura-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fatura-page__header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.fatura-page__back {
  padding: 8px 15px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.fatura-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.fatura-page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fatura-page__saved-addresses {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.fatura-page__saved-addresses h3 {
  margin: 0 0 15px;
  font-size: 16px;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background: #f8f7f5;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.address-item.selected {
  border-color: #e37c33;
  background: #fff5eb;
}

.address-item__radio {
  font-size: 16px;
  color: #e37c33;
}

.address-item__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.address-item__content strong {
  font-size: 14px;
}

.address-item__content span {
  font-size: 12px;
  color: #666;
}

.fatura-page__form {
  background: #fff;
  padding: 0;
  border-radius: 12px;
}

.fatura-page__form h3 {
  margin: 0 0 20px;
  font-size: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e37c33;
}

/* Input error state */
.form-group input.input-error,
.form-group textarea.input-error {
  border: 2px solid #e53935;
  background: #fff5f5;
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20%,
  60% {
    transform: translateX(-5px);
  }

  40%,
  80% {
    transform: translateX(5px);
  }
}

.form-group--toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-group--toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Sidebar */
.fatura-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary {
  margin-bottom: 15px;
}

.order-summary h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.summary-item__price {
  color: #333;
  font-weight: 500;
}

.summary-item--shipping {
  color: #51b549;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.order-total__value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Hide mobile fixed bottom on desktop */
.mobile-fixed-bottom {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .fatura-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .desktop-only {
    display: none !important;
  }

  .fatura-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
}


/* =============================== */
/* sepet-odeme - Block 1  */
/* =============================== */

.loading-container {
  display: flex;
  justify-content: center;
  padding: 60px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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


/* =============================== */
/* sepet-odeme - Block 2  */
/* =============================== */

.odeme-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.odeme-page__header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.odeme-page__back {
  padding: 8px 15px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.odeme-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.odeme-page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.odeme-page__tabs {
  display: flex;
  background: #f8f7f5;
  border-radius: 8px;
  padding: 6px;
}

.odeme-page__tab {
  flex: 1;
  padding: 12px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  transition: all 0.2s ease;
}

.odeme-page__tab.active {
  background: #fff;
  color: #333;
}

.odeme-page__error {
  background: #fee;
  color: #d00;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

.odeme-page__card-form {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.form-group input[type="text"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 16px;
}

.form-group input:focus {
  outline: none;
  border-color: #e37c33;
}

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

.form-group--small {
  flex: 1;
}

.form-group--medium {
  flex: 2;
}

.form-group--toggle {
  padding-top: 10px;
}

.form-group--toggle label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.form-group--toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* 3DS Modal Styles */
.threeds-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.threeds-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.threeds-modal__container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.threeds-modal__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 0.2s ease;
}

.threeds-modal__close:hover {
  background: #f5f5f5;
  color: #333;
  transform: scale(1.1);
}

.threeds-modal__content {
  flex: 1;
  min-height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.threeds-modal__content iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

@media (max-width: 768px) {
  .threeds-modal {
    padding: 10px;
  }

  .threeds-modal__container {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 12px;
  }

  .threeds-modal__close {
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .threeds-modal__content {
    min-height: 450px;
    border-radius: 12px;
  }

  .threeds-modal__content iframe {
    min-height: 450px;
  }
}

.odeme-page__banks {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
}

.bank-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 15px;
  background: #f8f7f5;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  margin-bottom: 10px;
}

.bank-item.selected {
  border-color: #e37c33;
  background: #fff5eb;
}

.bank-item__radio {
  font-size: 16px;
  color: #e37c33;
}

.bank-item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-item__content strong {
  font-size: 14px;
}

.bank-item__content span {
  font-size: 12px;
  color: #666;
}

.odeme-page__sozlesme {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
}

.odeme-page__sozlesme label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.odeme-page__sozlesme input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.odeme-page__sozlesme span {
  color: #e37c33;
  text-decoration: underline;
  cursor: pointer;
}

/* Sidebar */
.odeme-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary {
  margin-bottom: 15px;
}

.order-summary h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.summary-item__price {
  color: #333;
  font-weight: 500;
}

.summary-item--shipping {
  color: #51b549;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.order-total__value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Hide mobile fixed bottom on desktop */
.mobile-fixed-bottom {
  display: none;
}

/* Contract Modal */
.sozlesme-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.sozlesme-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sozlesme-modal__content {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 600px;
  height: 80vh;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.sozlesme-modal__content h3 {
  padding: 15px;
  margin: 0;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}

.sozlesme-modal__content iframe {
  flex: 1;
  border: none;
}

.sozlesme-modal__content button {
  padding: 15px;
  background: #e37c33;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .odeme-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .desktop-only {
    display: none !important;
  }

  .odeme-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
}


/* =============================== */
/* sepet-kart-notlar - Block 1  */
/* =============================== */

.kartnotlar-page__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

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


/* =============================== */
/* sepet-kart-notlar - Block 2  */
/* =============================== */

.kartnotlar-page {
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.kartnotlar-page__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.kartnotlar-page__back {
  padding: 8px 15px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.kartnotlar-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.kartnotlar-page__item-wrapper {
  margin-bottom: 20px;
}

.kartnotlar-page__select-note {
  margin-top: 10px;
  padding: 10px 20px;
  background: #f0ad4e;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.kartnotlar-page__discount-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #e7cdb2;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 20px;
}

.kartnotlar-page__discount-applied {
  padding: 12px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-value {
  color: #51b549;
  font-weight: 600;
}

.kartnotlar-page__footer {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  bottom: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kartnotlar-page__total {
  display: flex;
  align-items: center;
  gap: 8px;
}

.kartnotlar-page__total-label {
  font-size: 12px;
  color: #e37c33;
  font-weight: 600;
}

.kartnotlar-page__total-value {
  font-size: 22px;
  font-weight: 600;
}

.kartnotlar-page__continue-btn {
  padding: 14px 40px;
  background: #e37c33;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.kartnotlar-page__continue-btn:disabled {
  opacity: 0.7;
}

/* Modal */
.not-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
}

.not-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.not-modal__content {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.not-modal__content h3 {
  text-align: center;
  margin: 0 0 20px;
}

.not-modal__categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.not-modal__cat {
  padding: 8px 15px;
  background: #f0f0f0;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.not-modal__cat.active {
  background: #4caf50;
  color: #fff;
}

.not-modal__list {
  max-height: 300px;
  overflow-y: auto;
}

.not-modal__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: none;
  border: none;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  text-align: left;
}

.not-modal__checkbox {
  font-size: 18px;
}

.not-modal__text {
  flex: 1;
  font-size: 14px;
}

.not-modal__close {
  display: block;
  width: 100%;
  padding: 12px;
  background: #e37c33;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 15px;
}


/* =============================== */
/* sepet-ekurunler - Block 1  */
/* =============================== */

.ekurunler-page {
  padding: 60px 20px;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

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


/* =============================== */
/* sepet-ekurunler - Block 2  */
/* =============================== */

.ekurunler-page {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ekurunler-page__header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.ekurunler-page__back {
  padding: 8px 15px;
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.ekurunler-page__title {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.ekurunler-page__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Cart Thumbnails */
.ekurunler-cart-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-thumb {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 8px;
  overflow: visible;
  background: #fff;
}

.cart-thumb img {
  border-radius: 8px;
}

.cart-thumb-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e37c33;
  color: #fff;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-thumb-badge--ekurun {
  background: #e53935;
}

.cart-thumb--ekurun {
  border-color: transparent;
}

/* Category Filters */
.ekurunler-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.category-btn {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.category-btn:hover {
  border-color: #374856;
}

.category-btn.active {
  background: #374856;
  color: #fff;
  border-color: #374856;
}

/* Products Grid */
.ekurunler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

/* Product Card */
.ekurun-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}

.ekurun-card__image {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
}

.ekurun-card__image {
  max-width: 100%;
  max-height: 100%;
}

.ekurun-card__name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px;
  height: 36px;
  display: flex;
  align-items: center;
}

.ekurun-card__price {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}

.ekurun-card__actions {
  width: 100%;
}

.ekurun-add-btn {
  width: 100%;
  padding: 8px 20px;
  background: #374856;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.ekurun-add-btn:hover {
  background: #2a3840;
}

.ekurun-add-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.ekurun-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.ekurun-qty__btn {
  width: 32px;
  height: 32px;
  background: #374856;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.ekurun-qty__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.ekurun-qty__count {
  width: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

/* Sidebar */
.ekurunler-page__sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary {
  margin-bottom: 15px;
}

.order-summary h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.summary-item__price {
  color: #333;
  font-weight: 500;
}

.summary-item--discount .summary-item__price {
  color: #51b549;
}

.summary-item--ekurun {
  padding-left: 12px;
  font-size: 12px;
  background: #fafafa;
  border-bottom: 1px dashed #eee;
}

.summary-item--ekurun .summary-item__name {
  color: #888;
}

.summary-item--ekurun .summary-item__price {
  color: #666;
  font-size: 12px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.order-total__value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

/* Hide mobile fixed bottom on desktop */
.mobile-fixed-bottom {
  display: none;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Mobile styles */
@media (max-width: 768px) {
  .ekurunler-page {
    grid-template-columns: 1fr;
    padding-bottom: 100px;
  }

  .ekurunler-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desktop-only {
    display: none !important;
  }

  .ekurunler-page__sidebar {
    position: static;
    border-radius: 12px;
    box-shadow: none;
    margin-top: 20px;
  }

  .mobile-fixed-bottom {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
}


/* =============================== */
/* sepet-giris - Block 1  */
/* =============================== */

.giris-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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


/* =============================== */
/* sepet-giris - Block 2  */
/* =============================== */

.giris-page {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.giris-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

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

  .giris-section--login {
    order: -1;
  }
}

.giris-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.giris-section__title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #333;
}

.giris-section__desc {
  font-size: 14px;
  color: #666;
  margin: 0 0 25px;
  line-height: 1.5;
}

.giris-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.giris-btn--guest {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.giris-btn--guest:hover {
  background: #f5f5f5;
}

.giris-btn--login {
  background: #e37c33;
  color: white;
}

.giris-btn--login:hover {
  background: #c96a28;
}

.giris-btn--google {
  background: #fff;
  color: #555;
  border: 1px solid #ddd;
  margin-top: 15px;
}

.giris-btn--google:hover {
  background: #f8f8f8;
}

.giris-divider {
  position: relative;
  margin: 20px 0;
}

.giris-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e5e5;
}

.giris-divider span {
  position: relative;
  background: #fff;
  padding: 0 15px;
  color: #999;
  font-size: 13px;
}

.giris-section__register-text {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

.giris-btn--register {
  background: #3ca735;
  color: white;
}

.giris-btn--register:hover {
  background: #2d8a28;
}

.google-icon {
  flex-shrink: 0;
}


/* ============================================================= */
/* Component Styles (extracted from checkout components)          */
/* ============================================================= */

/* =============================== */
/* SepetItem - Block 1  */
/* =============================== */

.sepet-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  transition: opacity 0.3s ease;
  border: 1px solid #dcdcdc;
}

.sepet-item.removing {
  opacity: 0.5;
  pointer-events: none;
}

.sepet-item__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f0f0f0;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
}

.sepet-item__image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.sepet-item__content {
  flex: 1;
  min-width: 0;
}

.sepet-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.sepet-item__title {
  font-size: 16px;
  font-weight: 400;
  color: #0066cc;
  margin: 0;
  line-height: 1.4;
  text-decoration: underline;
  font-style: italic;
}

.sepet-item__title--no-link {
  color: #333;
  text-decoration: none;
  cursor: default;
}

.sepet-item__remove {
  width: 24px;
  height: 24px;
  border: none;
  background: #fee;
  color: #d00;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.sepet-item__remove:hover {
  background: #d00;
  color: #fff;
}

.sepet-item__remove:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sepet-item__delivery-info {
  margin-top: 8px;
}

.sepet-item__delivery-label {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.sepet-item__delivery-datetime {
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.sepet-item__free-delivery {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
}

.sepet-item__free-delivery:hover {
  text-decoration: underline;
}

.sepet-item__custom-fields {
  margin-top: 10px;
  padding: 10px;
  background: #f9f5f0;
  border-radius: 8px;
  border: 1px solid #ece4d9;
}

.sepet-item__custom-label {
  font-size: 13px;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}

.sepet-item__custom-content {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.sepet-item__custom-text {
  font-size: 13px;
  color: #333;
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid #e0d6ca;
}

.sepet-item__custom-image {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0d6ca;
}

.sepet-item__price-row {
  margin-top: 10px;
}

.sepet-item__price {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.sepet-item__ekurunler {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sepet-item__ekurun-thumb {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 6px;
  overflow: visible;
  background: #f5f5f5;
}

.sepet-item__ekurun-thumb img {
  border-radius: 6px;
}

.sepet-item__ekurun-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #43a047;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sepet-item__card-note {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.sepet-item__field {
  margin-bottom: 10px;
}

.sepet-item__field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
}

.sepet-item__field input,
.sepet-item__field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
}

.sepet-item__field input:focus,
.sepet-item__field textarea:focus {
  outline: none;
  border-color: #e37c33;
}

/* Remove Confirmation Modal */
.remove-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.remove-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.remove-modal__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.remove-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-modal__close:hover {
  color: #333;
}

.remove-modal__icon {
  margin-bottom: 20px;
}

.remove-modal__message {
  font-size: 16px;
  color: #333;
  margin: 0 0 25px;
  line-height: 1.5;
}

.remove-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.remove-modal__btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.remove-modal__btn--cancel {
  background: #e37c33;
  color: #fff;
  border: none;
}

.remove-modal__btn--cancel:hover {
  background: #d06a22;
}

.remove-modal__btn--confirm {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.remove-modal__btn--confirm:hover {
  background: #f5f5f5;
  border-color: #ccc;
}


/* =============================== */
/* OrderSummary - Block 1  */
/* =============================== */

.order-summary {
  margin-bottom: 15px;
}

.order-summary h3 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px;
  text-align: center;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}

.summary-item__name {
  color: #666;
  flex: 1;
  margin-right: 10px;
}

.summary-item__price {
  color: #333;
  font-weight: 500;
}

.summary-item--discount .summary-item__price {
  color: #51b549;
}

.summary-item--ekurun {
  padding-left: 12px;
  font-size: 12px;
  background: #fff;
  border-bottom: 1px dashed #eee;
}

.summary-item--ekurun .summary-item__name {
  color: #888;
}

.summary-item--ekurun .summary-item__price {
  color: #666;
  font-size: 12px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.order-total__value {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}


/* =============================== */
/* ExpiredSlotModal - Block 1  */
/* =============================== */

.expired-slot-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.expired-slot-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.expired-slot-modal__content {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.expired-slot-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #e64e41;
  margin: 0 0 12px;
}

.expired-slot-modal__message {
  font-size: 16px;
  color: #333;
  margin: 0 0 8px;
}

.expired-slot-modal__sub {
  font-size: 14px;
  color: #666;
  margin: 0 0 24px;
}

.expired-slot-modal__product {
  font-size: 15px;
  color: #333;
  margin: 0 0 12px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 8px;
}

.expired-slot-modal__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expired-slot-modal__btn {
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.expired-slot-modal__btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.expired-slot-modal__btn--primary {
  background: #e37c33;
  color: #fff;
}

.expired-slot-modal__btn--primary:hover:not(:disabled) {
  background: #d06a22;
}

.expired-slot-modal__btn--danger {
  background: #fff;
  color: #e64e41;
  border: 2px solid #e64e41;
}

.expired-slot-modal__btn--danger:hover:not(:disabled) {
  background: #fef2f2;
}

.expired-slot-modal__btn--cancel {
  background: transparent;
  color: #666;
}

.expired-slot-modal__btn--cancel:hover {
  color: #333;
}


/* =============================== */
/* CheckoutLayout - Block 1  */
/* =============================== */

.checkout-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 20px;
  position: sticky;
  bottom: 0;
  z-index: 100;
}

.checkout-footer__loading {
  display: flex;
  justify-content: center;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid #e5e5e5;
  border-top-color: #e37c33;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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


/* =============================== */
/* CheckoutLayout - Block 2  */
/* =============================== */

.checkout-footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
  padding: 15px 20px;
}

.checkout-footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-footer__summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.checkout-footer__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-footer__row--total {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.checkout-footer__label {
  font-size: 12px;
  color: #9C8D7D;
  font-weight: 600;
}

.checkout-footer__row--total .checkout-footer__label {
  font-size: 14px;
  color: #e37c33;
}

.checkout-footer__discount {
  color: #51b549;
  font-weight: 600;
}

.checkout-footer__shipping {
  color: #666;
}

.checkout-footer__total {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}


/* =============================== */
/* CheckoutLayout - Block 3  */
/* =============================== */

.checkout-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f8f7f5;
  touch-action: manipulation;
}

.checkout-main {
  flex: 1;
  padding: 20px;
}

.checkout-content {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .checkout-main {
    padding: 12px 8px;
  }
}


/* =============================== */
/* CheckoutHeader - Block 1  */
/* =============================== */

.checkout-header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.checkout-header__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.checkout-header__logo {
  display: flex;
  align-items: center;
}

.checkout-steps {
  width: 100%;
  max-width: 700px;
}

.checkout-steps__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.checkout-steps__step {
  display: flex;
  align-items: flex-start;
  flex: 1;
}

.checkout-steps__step:last-child {
  flex: 0;
}

.checkout-steps__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.checkout-steps__circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.checkout-steps__circle.active {
  background: #003366;
  box-shadow: 0 0 0 4px rgba(0, 51, 102, 0.2);
}

.checkout-steps__circle.completed {
  background: #003366;
}

.checkout-steps__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.checkout-steps__circle.active .checkout-steps__dot {
  background: #fff;
}

.checkout-steps__check {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.checkout-steps__line {
  flex: 1;
  height: 3px;
  background: #e5e5e5;
  margin-top: 15px;
  min-width: 20px;
}

.checkout-steps__line.completed {
  background: #003366;
}

.checkout-steps__label {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 8px;
  line-height: 1.3;
  max-width: 90px;
  white-space: nowrap;
}

.checkout-steps__label.active {
  color: #003366;
  font-weight: 600;
}

.checkout-steps__label.completed {
  color: #003366;
}

/* Prevent zoom on tap for all step elements */
.checkout-steps,
.checkout-steps__wrapper,
.checkout-steps__step,
.checkout-steps__column,
.checkout-steps__circle,
.checkout-steps__label {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 600px) {
  .checkout-header__container {
    padding: 0 8px;
  }

  .checkout-header {
    padding: 12px 0;
  }

  .checkout-steps__circle {
    width: 28px;
    height: 28px;
  }

  .checkout-steps__dot {
    width: 8px;
    height: 8px;
  }

  .checkout-steps__check {
    font-size: 12px;
  }

  .checkout-steps__label {
    font-size: 12px;
    max-width: 80px;
  }

  .checkout-steps__column {
    min-width: 50px;
  }

  .checkout-steps__line {
    margin-top: 13px;
    min-width: 10px;
  }

  .checkout-steps {
    max-width: 100%;
  }
}

/* ================================ */
/* In-App Browser Warning           */
/* ================================ */
.inapp-browser-warning {
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
  border: 2px solid #ff9800;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  grid-column: 1 / -1;
}

.inapp-browser-warning__icon {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}

.inapp-browser-warning__text {
  text-align: center;
  margin-bottom: 16px;
}

.inapp-browser-warning__text strong {
  display: block;
  font-size: 16px;
  color: #e65100;
  margin-bottom: 8px;
}

.inapp-browser-warning__text p {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.inapp-browser-warning__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.inapp-browser-warning__btn {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.inapp-browser-warning__btn--copy {
  background: #fff;
  color: #e65100;
  border: 2px solid #e65100;
}

.inapp-browser-warning__btn--copy:hover {
  background: #e65100;
  color: #fff;
}

.inapp-browser-warning__btn--open {
  background: #e65100;
  color: #fff;
}

.inapp-browser-warning__btn--open:hover {
  background: #bf360c;
}

/* Disabled overlay for payment form in in-app browsers */
.odeme-page--inapp-disabled .odeme-page__content {
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

.odeme-page--inapp-disabled .odeme-page__sidebar .checkout-continue-btn,
.odeme-page--inapp-disabled .mobile-fixed-bottom .checkout-continue-btn {
  opacity: 0.4;
  pointer-events: none;
}