/* ============================================================
   İKRA GRAFİK WEB — Component Library
   ============================================================ */

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  user-select: none;
}
.btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.25);
}
.btn-primary:hover { background: var(--brand-orange-text); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(249,115,22,0.35); }
.btn-primary:active { transform: translateY(0); }

.btn-navy {
  background: var(--brand-navy);
  color: #fff;
}
.btn-navy:hover { background: var(--brand-navy-med); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--app-card-border);
  color: var(--text-black);
}
.btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: var(--brand-orange-light); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}
.btn-ghost:hover { background: var(--app-input-bg); color: var(--text-black); }

.btn-danger {
  background: transparent;
  border: 1.5px solid var(--color-danger);
  color: var(--color-danger);
}
.btn-danger:hover { background: #FEF2F2; }

.btn-success {
  background: var(--color-success);
  color: #fff;
}

.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-icon { padding: 10px; border-radius: var(--radius-md); }

/* ── Cards ── */
.card {
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.card-navy {
  background: var(--brand-navy-card);
  border-color: rgba(255,255,255,0.05);
}
.card-body { padding: var(--space-lg); }
.card-body-lg { padding: var(--space-xl); }
.card-body-sm { padding: var(--space-md); }

/* ── Form Fields ── */
.field { display: flex; flex-direction: column; gap: 4px; }

.field-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-black);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.field-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--app-card-border);
  border-radius: var(--radius-md);
  background: var(--app-white);
  color: var(--text-black);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
}
.field-input::placeholder { color: var(--text-placeholder); font-weight: 400; }
.field-input:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }
.field-input.error { border-color: var(--color-danger); box-shadow: 0 0 0 3px rgba(239,68,68,0.1); }
.field-input:disabled { background: var(--app-bg); color: var(--text-tertiary); }

.field-input-wrap { position: relative; }
.field-input-wrap .field-input { padding-left: 42px; }
.field-input-wrap .field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-orange);
  font-size: 18px;
  pointer-events: none;
}
.field-input-wrap .field-icon-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.field-input-wrap .field-icon-right:hover { color: var(--text-black); }

.field-hint  { font-size: 11px; color: var(--text-secondary); }
.field-error { font-size: 11px; color: var(--color-danger); }

textarea.field-input { resize: vertical; min-height: 80px; }
select.field-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2394A3B8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.field-input-wrap select.field-input { padding-right: 30px; }

/* ── Checkbox / Radio ── */
.check-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-black);
}
.check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-orange);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Error Alert ── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.alert-error { background: #FEF2F2; border: 1px solid #FECACA; color: #991B1B; }
.alert-success { background: #F0FDF4; border: 1px solid #BBF7D0; color: #166534; }
.alert-info  { background: var(--brand-orange-light); border: 1px solid #FED7AA; color: var(--brand-orange-text); }
.alert-icon  { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* ── Header Bar ── */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-navy);
  min-height: var(--nav-height);
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
  gap: var(--space-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.header-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--brand-orange);
  flex-shrink: 0;
}
.header-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-brand);
  border: 2px solid rgba(255,255,255,0.2);
}
.header-title {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: var(--font-brand);
  line-height: 1.1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-title small {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--brand-orange-bright);
  letter-spacing: 0.3px;
  font-family: var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
}
.header-btn:hover { background: rgba(249,115,22,0.3); border-color: var(--brand-orange); }
.header-btn.active { background: var(--brand-orange); border-color: var(--brand-orange); }
.header-btn-ira {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-lg);
  background: var(--brand-orange);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(249,115,22,0.4);
}
.header-btn-ira:hover { background: var(--brand-orange-text); transform: translateY(-1px); }
.header-notif-badge {
  position: relative;
}
.header-notif-badge .dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--brand-orange);
  border-radius: 50%;
  border: 1.5px solid var(--brand-navy);
}

/* ── Bottom Navigation (Mobile) ── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--brand-navy);
  min-height: var(--bottom-nav-h);
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: stretch;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
  color: #64748B;
  padding: 8px 4px;
  position: relative;
  font-family: inherit;
  text-decoration: none;
}
.nav-item.active { color: var(--brand-orange); }
.nav-item .nav-icon { font-size: 20px; transition: transform var(--transition-fast); }
.nav-item .nav-label { font-size: 10px; font-weight: 600; white-space: nowrap; }
.nav-item:hover .nav-icon { transform: translateY(-1px); }
.nav-item.ira-btn .nav-icon-wrap {
  width: 32px;
  height: 32px;
  background: var(--brand-navy-med);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-fast);
}
.nav-item.ira-btn.active .nav-icon-wrap { background: var(--brand-orange); }
.nav-badge {
  position: absolute;
  top: 6px;
  right: calc(50% - 16px);
  background: var(--brand-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* ── Side Navigation (Desktop) ── */
.side-nav {
  width: var(--sidebar-w);
  background: var(--brand-navy);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  gap: 4px;
  overflow-y: auto;
  flex-shrink: 0;
}
.side-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  background: none;
  font-family: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.side-nav-item .nav-icon { font-size: 18px; flex-shrink: 0; }
.side-nav-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.side-nav-item.active { background: rgba(249,115,22,0.15); color: var(--brand-orange); }
.side-nav-item.ira-item {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--brand-orange-bright);
  margin-top: 8px;
}
.side-nav-item.ira-item:hover, .side-nav-item.ira-item.active {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}
.side-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 8px 0;
}
.side-nav-badge {
  margin-left: auto;
  background: var(--brand-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ── Hero Banner ── */
.hero-banner {
  background: var(--brand-navy-card);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  color: #fff;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  background: #2A1B10;
  border: 1px solid #8D4F1E;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #FFB74D;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 6px;
}
.hero-desc {
  font-size: 12px;
  color: #CBD5E1;
  margin-bottom: 14px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 10px;
}
.hero-actions .btn { flex: 1; }

/* ── Category Card ── */
.cat-card {
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}
.cat-card:hover { box-shadow: var(--shadow-md); }
.cat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  gap: var(--space-md);
}
.cat-info { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.cat-emoji { font-size: 24px; flex-shrink: 0; }
.cat-name { font-size: 14px; font-weight: 900; color: var(--text-black); }
.cat-desc { font-size: 11px; color: var(--text-secondary); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-count-badge {
  background: var(--brand-orange-light);
  color: var(--brand-orange-text);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--brand-navy);
  color: #fff;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.cat-toggle-btn:hover { background: #1E3A5F; }
.cat-products {
  border-top: 1px solid var(--app-card-border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Product Row ── */
.product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--app-input-bg);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.product-row:hover { border-color: var(--brand-orange); background: var(--brand-orange-light); }
.product-emoji { font-size: 22px; flex-shrink: 0; }
.product-info { flex: 1; min-width: 0; }
.product-name { font-size: 13px; font-weight: 700; color: var(--text-black); }
.product-desc { font-size: 11px; color: var(--text-secondary); margin-top: 1px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-material { font-size: 10px; font-weight: 600; color: var(--brand-orange-text); margin-top: 2px; }
.product-quote-btn {
  flex-shrink: 0;
  padding: 7px 12px;
  background: var(--brand-orange);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}
.product-quote-btn:hover { background: var(--brand-orange-text); }

/* ── Offer/Order Card ── */
.offer-card {
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.offer-card-header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--app-card-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.offer-product { font-size: 14px; font-weight: 800; color: var(--text-black); }
.offer-category { font-size: 11px; color: var(--text-secondary); margin-top: 2px; }
.offer-card-body { padding: var(--space-lg); display: flex; flex-direction: column; gap: 10px; }
.offer-detail-row { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-secondary); }
.offer-detail-row strong { color: var(--text-black); font-weight: 700; }
.offer-price-highlight {
  background: var(--brand-orange-light);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}
.offer-price-label { font-size: 11px; font-weight: 600; color: var(--brand-orange-text); }
.offer-price-value { font-size: 22px; font-weight: 900; color: var(--brand-orange); }
.offer-actions { padding: 0 var(--space-lg) var(--space-lg); display: flex; gap: 8px; flex-wrap: wrap; }
.offer-actions .btn { flex: 1; min-width: 120px; }

/* ── Chat UI ── */
.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-bubble-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  animation: slideUp 0.2s ease both;
}
.chat-bubble-wrap.user { flex-direction: row-reverse; }

.chat-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  font-weight: 900;
  color: #fff;
}
.chat-avatar.ira { background: var(--brand-navy); }

.chat-bubble {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.5;
  word-break: break-word;
  white-space: pre-line;
}
.chat-bubble.ira {
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  color: var(--text-black);
  border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: var(--brand-navy);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.chat-bubble-time {
  font-size: 9px;
  color: var(--text-tertiary);
  margin-top: 3px;
  text-align: right;
}
.chat-bubble-wrap.user .chat-bubble-time { text-align: right; }

.chat-quick-chips {
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  border-top: 1px solid var(--app-card-border);
  background: var(--app-bg);
}
.chat-quick-chips::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  padding: 7px 14px;
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-black);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.chip:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: var(--brand-orange-light); }

.chat-input-bar {
  padding: 10px 14px;
  background: var(--app-white);
  border-top: 1px solid var(--app-card-border);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--app-card-border);
  border-radius: var(--radius-md);
  background: var(--app-white);
  color: var(--text-black);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}
.chat-input:focus { border-color: var(--brand-orange); }
.chat-input::placeholder { color: var(--text-placeholder); }
.chat-send-btn {
  width: 42px;
  height: 42px;
  background: var(--brand-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
  color: #fff;
}
.chat-send-btn:hover { background: var(--brand-orange-text); }
.chat-typing { display: flex; gap: 4px; padding: 4px 0; }
.chat-typing span {
  width: 7px; height: 7px;
  background: var(--text-tertiary);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.7);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease both;
}
.modal-overlay.center { align-items: center; }
.modal {
  background: var(--app-white);
  width: 100%;
  max-width: 540px;
  max-height: 95dvh;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease both;
  overflow: hidden;
}
.modal-overlay.center .modal {
  border-radius: var(--radius-xl);
  margin: 16px;
  max-height: 85dvh;
}
.modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--app-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-shrink: 0;
}
.modal-title { font-size: 16px; font-weight: 800; color: var(--text-black); }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.modal-footer { padding: 16px 20px; border-top: 1px solid var(--app-card-border); display: flex; gap: 10px; flex-shrink: 0; }
.modal-footer .btn { flex: 1; }

/* ── Social Media Footer Card ── */
.social-card {
  background: var(--brand-navy-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.social-card-header { display: flex; align-items: center; gap: 10px; }
.social-card-title { font-size: 13px; font-weight: 900; color: #fff; }
.social-tagline { font-size: 10px; font-weight: 700; color: var(--brand-orange-bright); letter-spacing: 0.5px; }
.social-wa-btn {
  width: 100%;
  padding: 13px;
  background: var(--color-whatsapp);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  border: none;
  font-family: inherit;
  display: block;
  text-decoration: none;
}
.social-wa-btn:hover { opacity: 0.9; }
.social-row { display: flex; gap: 10px; width: 100%; }
.social-btn {
  flex: 1;
  padding: 10px;
  background: var(--brand-navy-med);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  border-width: 1px;
  border-style: solid;
  font-family: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn.instagram { border-color: var(--color-instagram); }
.social-btn.facebook  { border-color: var(--color-facebook); }
.social-btn:hover { opacity: 0.8; }
.social-address { font-size: 11px; font-weight: 600; color: #94A3B8; text-align: center; }

/* ── İRA FAB (Floating Action Button) ── */
.ira-fab {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px) + 16px);
  right: 16px;
  z-index: 50;
  background: var(--brand-navy);
  border: 1.5px solid var(--brand-orange);
  border-radius: 24px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: #fff;
  font-family: inherit;
}
.ira-fab:hover { background: var(--brand-orange); border-color: var(--brand-orange); transform: translateY(-2px); }
.ira-fab-icon {
  width: 26px; height: 26px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.ira-fab:hover .ira-fab-icon { background: rgba(255,255,255,0.25); }
.ira-fab-text { font-size: 13px; font-weight: 900; }

/* ── Profile UI ── */
.profile-avatar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px 16px;
}
.profile-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--brand-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  border: 3px solid var(--brand-orange-light);
}
.profile-name { font-size: 18px; font-weight: 900; color: var(--text-black); }
.profile-phone { font-size: 13px; color: var(--text-secondary); font-weight: 600; }
.profile-badge { background: var(--brand-orange-light); color: var(--brand-orange-text); font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: var(--radius-full); }

.info-card { background: var(--app-white); border: 1px solid var(--app-card-border); border-radius: var(--radius-xl); overflow: hidden; }
.info-card-title { font-size: 12px; font-weight: 800; color: var(--text-black); padding: 12px 16px; border-bottom: 1px solid var(--app-card-border); text-transform: uppercase; letter-spacing: 0.3px; }
.info-row { display: flex; align-items: center; gap: 10px; padding: 11px 16px; border-bottom: 1px solid var(--app-card-border); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row .info-icon { font-size: 16px; width: 24px; text-align: center; flex-shrink: 0; }
.info-row .info-label { color: var(--text-secondary); font-weight: 500; min-width: 80px; }
.info-row .info-value { color: var(--text-black); font-weight: 700; flex: 1; }

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat-card {
  background: var(--app-white);
  border: 1px solid var(--app-card-border);
  border-radius: var(--radius-lg);
  padding: 12px 8px;
  text-align: center;
}
.stat-value { font-size: 22px; font-weight: 900; color: var(--brand-orange); }
.stat-label { font-size: 10px; font-weight: 600; color: var(--text-secondary); margin-top: 2px; }

/* ── Upload Area ── */
.upload-area {
  border: 2px dashed var(--app-card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--app-input-bg);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.upload-area:hover { border-color: var(--brand-orange); background: var(--brand-orange-light); }
.upload-area.has-file { border-color: var(--color-success); background: #F0FDF4; }
.upload-icon { font-size: 26px; flex-shrink: 0; line-height: 1.3; }
.upload-text { font-size: 13px; font-weight: 700; color: var(--text-black); }
.upload-hint { font-size: 11px; color: var(--text-tertiary); margin-top: 4px; }

/* ── Material Selector ── */
.material-options { display: flex; flex-direction: column; gap: 8px; }
.material-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--app-input-bg);
  border: 1.5px solid var(--app-card-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-black);
}
.material-option:hover { border-color: var(--brand-orange); }
.material-option.selected { border-color: var(--brand-orange); background: var(--brand-orange-light); color: var(--brand-orange-text); }
.material-option .material-check { margin-left: auto; font-size: 16px; opacity: 0; }
.material-option.selected .material-check { opacity: 1; }

/* ── Quantity stepper ── */
.quantity-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--app-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 40px; height: 44px;
  background: var(--app-input-bg);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-orange);
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { background: var(--brand-orange-light); }
.qty-input {
  width: 60px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--app-card-border);
  border-right: 1px solid var(--app-card-border);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-black);
  background: var(--app-white);
  outline: none;
  font-family: inherit;
}

/* ── Section Heading ── */
.section-heading {
  font-size: 17px;
  font-weight: 900;
  color: var(--text-black);
  padding: 6px 0 2px;
}

/* ── Search Bar ── */
.search-wrap { position: relative; }
.search-icon { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--brand-orange); font-size: 18px; pointer-events: none; }
.search-input {
  width: 100%;
  padding: 11px 14px 11px 42px;
  border: 1.5px solid var(--app-card-border);
  border-radius: var(--radius-md);
  background: var(--app-white);
  color: var(--text-black);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: border-color var(--transition-fast);
  font-family: inherit;
}
.search-input:focus { border-color: var(--brand-orange); }
.search-input::placeholder { color: var(--text-placeholder); }

/* ── Tracking Number Card ── */
.tracking-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1E3A5F 100%);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tracking-label { font-size: 10px; font-weight: 700; color: var(--brand-orange-bright); text-transform: uppercase; letter-spacing: 0.5px; }
.tracking-number { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: 0.5px; font-family: monospace; }
