﻿/* ==========================================================================
   2K KARAVAN ESİNTİLİ TASARIM SİSTEMİ - MELLIFERA TECH B2B
   Ferah Beyaz + Canlı Gök Mavisi (#4fa8e0) + Canlı Turuncu/Amber Vurgu
   ========================================================================== */

:root {
  /* Mellifera renk sistemi: beyaz ve koyu lacivert ana zemin, sarı yalnızca
     yönlendirme, seçim ve işlem vurgularında kullanılır. */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  
  --karavan-blue: #ffe600;
  --karavan-blue-dark: #6b5800;
  --karavan-blue-light: rgba(255, 230, 0, 0.12);
  
  --accent-orange: #ffe600;
  --accent-orange-hover: #ffe600;
  --accent-orange-light: rgba(255, 230, 0, 0.12);

  --navy-dark: #1b2a4a;
  --navy-button: #1e293b;

  /* Legacy component aliases — all screens now resolve to one system. */
  --primary: #1b2a4a;
  --accent-amber: #ffe600;
  --accent-amber-hover: #ffe600;
  --accent-amber-glow: rgba(255, 230, 0, 0.24);
  --accent-cyan: #1b2a4a;
  --border-color: #e5e9f0;
  --success: #15803d;
  --success-light: #f0fdf4;
  --danger: #dc2626;
  --danger-light: #fef2f2;
  --transition: all 0.2s ease;
  --shadow-xl: 0 16px 40px rgba(15, 23, 42, 0.12);
  
  --border-light: #e5e9f0;
  --border-subtle: #edf2f7;
  
  --text-main: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #64748b;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 25px -4px rgba(0, 0, 0, 0.08);
  --shadow-blue: 0 12px 30px rgba(79, 168, 224, 0.25);

  --font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-heading: var(--font-main);
  --container-max: 1320px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Storefront dark mode */
.theme-toggle-2k {
  display: inline-grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #d9e0ea;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.theme-toggle-2k:hover { background:#f1f5f9; border-color:#94a3b8; transform:translateY(-1px); }
.theme-toggle-2k svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }

html[data-theme="dark"] body:not(.management-page) {
  --bg-main: #0b1120;
  --bg-surface: #111827;
  --primary: #f8fafc;
  --navy-dark: #f8fafc;
  --navy-button: #e2e8f0;
  --border-color: #2a3649;
  --border-light: #2a3649;
  --border-subtle: #202c3d;
  --text-main: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-light: #94a3b8;
  --success-light: #062d22;
  --danger-light: #341417;
  color-scheme: dark;
  background:#0b1120;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) :is(.top-bar-2k,.main-header-2k,.nav-bar-2k,.brand-circles-strip,.catalog-sidebar,.catalog-toolbar,.product-card,.product-detail-card,.product-detail-container,.price-card,.cart-card,.cart-summary,.checkout-card,.auth-card,.faq-card,.faq-item,.mini-cart-popover,.search-results-dropdown,.user-dropdown-2k,.product-documents-section,.product-document-card,.product-related-side-card) {
  background-color:#111827;
  border-color:#2a3649;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) :is(.main-header-2k,.nav-bar-2k,.brand-circles-strip) { box-shadow:none; }
html[data-theme="dark"] body:not(.management-page) .logo-2k img { filter:brightness(0) invert(1); }
html[data-theme="dark"] body:not(.management-page) :is(.search-input-2k,input,select,textarea,.quantity-selector,.qty-control) {
  background-color:#0f172a;
  border-color:#334155;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) :is(input,textarea)::placeholder { color:#748197; }
html[data-theme="dark"] body:not(.management-page) :is(.user-btn-2k,.cart-btn-2k,.header-logout-2k,.theme-toggle-2k,.mobile-filter-toggle,.btn-clear-filters) {
  background-color:#111827;
  border-color:#334155;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) :is(.user-btn-2k,.cart-btn-2k,.header-logout-2k,.theme-toggle-2k):hover { background-color:#1e293b; border-color:#64748b; }
html[data-theme="dark"] body:not(.management-page) :is(.nav-category-link,.nav-item-link-2k,.brand-circle-label,.sidebar-title,.filter-title,.product-title,.section-title-2k,.faq-question,.cart-title,h1,h2,h3,h4,strong) { color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) :is(.filter-checkbox-label,.filter-count,.product-description,.product-meta,.faq-answer,p,small) { color:#cbd5e1; }
html[data-theme="dark"] body:not(.management-page) :is(.brand-circle-ring,.product-image-wrap,.product-image-container,.product-gallery-main,.product-thumbnail) { background-color:#fff; }
html[data-theme="dark"] body:not(.management-page) :is(.catalog-toolbar,.product-card,.catalog-sidebar,.faq-item,.cart-card,.cart-summary,.product-detail-card) { box-shadow:0 8px 24px rgba(0,0,0,.18); }
html[data-theme="dark"] body:not(.management-page) .store-footer { background:#070d18; }
html[data-theme="dark"] body:not(.management-page) .mini-cart-popover footer { background:#0f172a; border-color:#2a3649; }
html[data-theme="dark"] body:not(.management-page) .mini-cart-item { border-color:#2a3649; }
html[data-theme="dark"] body:not(.management-page) .mini-cart-item img { background:#fff; border-radius:6px; }
html[data-theme="dark"] body:not(.management-page) :is(.catalog-breadcrumb,.breadcrumb-section) { background:#111827; border-color:#2a3649; color:#cbd5e1; }
html[data-theme="dark"] body:not(.management-page) .top-bar-phone { color:#cbd5e1; }
html[data-theme="dark"] body:not(.management-page) .filter-checkbox-label input { accent-color:#ffe600; }
html[data-theme="dark"] body:not(.management-page) :is(.sticky-cart-btn,#btn-apply-price) { background:#1e293b; border-color:#475569; color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) :is(.sticky-cart-btn,#btn-apply-price):hover { background:#334155; border-color:#64748b; }
html[data-theme="dark"] body:not(.management-page) .catalog-breadcrumb-bar { background:#111827; border-color:#2a3649; }
html[data-theme="dark"] body:not(.management-page) .catalog-breadcrumb :is(a,span) { color:#cbd5e1 !important; }
html[data-theme="dark"] body:not(.management-page) .top-bar-phone :is(span,svg) { color:#cbd5e1 !important; stroke:currentColor; }
html[data-theme="dark"] body:not(.management-page) #product-detail-container {
  background:#111827 !important;
  border-color:#2a3649 !important;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) .product-variant-picker { background:#0f172a; color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) .product-variant-field label { color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) .product-installation-option { background:#0f172a; color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) .product-installation-option :is(strong,small,b) { color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) :is(#cart-empty-state,#cart-table-card,#cart-summary-card) {
  background:#111827 !important;
  border-color:#2a3649 !important;
  color:#f8fafc;
}
html[data-theme="dark"] body:not(.management-page) :is(#cart-table-card,#cart-summary-card) :is(th,td) { border-color:#2a3649; }
html[data-theme="dark"] body:not(.management-page) #cart-table-card thead th { background:#0f172a; color:#f8fafc; }
html[data-theme="dark"] body:not(.management-page) .cart-checkout-secondary { background:#1e293b !important; border-color:#475569 !important; color:#f8fafc !important; }
html[data-theme="dark"] body:not(.management-page) .cart-checkout-secondary:hover { background:#334155 !important; border-color:#64748b !important; }

@media (max-width: 1000px) {
  .theme-toggle-2k { width:38px; height:38px; flex-basis:38px; }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

svg {
  display: inline-block;
  vertical-align: middle;
}

.top-bar-item svg, .top-bar-phone svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Section Common */
.py-section {
  padding: 3rem 0;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
}

.section-title-2k {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.btn-all-products {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--karavan-blue-dark);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.btn-all-products:hover {
  color: #4d4000;
}

/* 2K Karavan Button Styles */
.btn-orange-2k {
  background: var(--accent-orange);
  color: #1b2a4a;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 230, 0, 0.28);
}

.btn-orange-2k:hover {
  background: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 230, 0, 0.35);
}

/* Shared button foundation used by store, cart, login and management screens. */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 42px;
  padding: .65rem 1rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #fff;
  color: #1b2a4a;
  font: 800 .84rem var(--font-main);
  line-height: 1.2;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn-lg { min-height: 46px; padding: .78rem 1.1rem; font-size: .88rem; }
.btn-outline { border-color: #cbd5e1; background: #fff; color: #1b2a4a; }
.btn-outline:hover { border-color: #1b2a4a; background: #f8fafc; }

.cart-checkout-actions { display:grid; gap:.7rem; }
.cart-checkout-actions .btn { width:100%; border-radius:10px !important; }
.cart-checkout-primary { background:#ffe600 !important; border-color:#ffe600 !important; color:#1b2a4a !important; }
.cart-checkout-primary:hover { background:#f4db00 !important; border-color:#f4db00 !important; }
.cart-checkout-secondary { background:#fff !important; border-color:#cbd5e1 !important; color:#1b2a4a !important; }
.cart-checkout-secondary:hover { background:#f8fafc !important; border-color:#1b2a4a !important; }
.payment-benefits{display:flex;flex-wrap:wrap;align-items:stretch;gap:.55rem;margin-top:.85rem}.payment-benefit-tile{display:inline-flex;padding:.42rem;border-radius:.5rem;background:#f5f7fa;box-shadow:0 4px 12px rgba(15,23,42,.07)}.payment-benefit-inner{display:flex;align-items:center;justify-content:center;gap:.48rem;min-width:148px;min-height:50px;padding:.35rem .62rem;border:2px solid #0866e8;border-radius:.28rem;background:#fff;color:#075dcc}.payment-benefit-value{font-family:var(--font-heading);font-size:2.15rem;font-weight:950;line-height:.85;letter-spacing:-.08em}.payment-benefit-copy{display:flex;flex-direction:column;font-size:.72rem;font-weight:600;line-height:1.05;white-space:nowrap}.payment-benefit-copy strong{font-size:1.02rem;font-weight:900;line-height:1}.product-detail-info>.payment-benefits .payment-benefit-inner{min-width:174px;min-height:58px}.product-detail-info>.payment-benefits .payment-benefit-value{font-size:2.65rem}.product-detail-info>.payment-benefits .payment-benefit-copy{font-size:.78rem}.product-detail-info>.payment-benefits .payment-benefit-copy strong{font-size:1.12rem}.product-card .payment-benefits{gap:.35rem}.product-card .payment-benefit-tile{flex:1;padding:.28rem}.product-card .payment-benefit-inner{width:100%;min-width:0;min-height:42px;padding:.28rem .38rem;gap:.3rem}.product-card .payment-benefit-value{font-size:1.55rem}.product-card .payment-benefit-copy{font-size:.56rem}.product-card .payment-benefit-copy strong{font-size:.72rem}.payment-benefits-compact{gap:.3rem}.payment-benefits-compact .payment-benefit-tile{padding:.24rem}.payment-benefits-compact .payment-benefit-inner{min-width:0;min-height:38px;padding:.22rem .34rem;gap:.28rem}.payment-benefits-compact .payment-benefit-value{font-size:1.4rem}.payment-benefits-compact .payment-benefit-copy{font-size:.52rem}.payment-benefits-compact .payment-benefit-copy strong{font-size:.66rem}@media(max-width:600px){.payment-benefits{display:grid;grid-template-columns:1fr 1fr}.payment-benefit-tile,.payment-benefit-inner{width:100%;min-width:0}.product-detail-info>.payment-benefits .payment-benefit-inner{min-width:0}}
.payment-benefit-tile{background:#ffe600;box-shadow:0 4px 12px rgba(105,84,0,.2)}.payment-benefit-inner{border-color:#ffe600;background:#ffe600;color:#fff}.payment-benefit-value,.payment-benefit-copy{text-shadow:0 1px 2px rgba(0,0,0,.55)}
.payment-benefit-tile{padding:0;border:2px solid #ffe600;background:#936f00;box-shadow:0 5px 13px rgba(105,84,0,.18)}.payment-benefit-inner{min-height:54px;padding:.48rem .68rem;border:0;background:transparent;color:#fff;gap:.55rem}.payment-benefit-value{min-width:2.75rem;text-align:center;letter-spacing:-.04em}.payment-benefit-copy{align-items:flex-start;text-align:left}.payment-benefit-value,.payment-benefit-copy{text-shadow:none}.product-detail-info>.payment-benefits .payment-benefit-inner{min-height:60px}.product-detail-info>.payment-benefits .payment-benefit-value{min-width:3.25rem}.product-card .payment-benefit-tile{padding:0}.product-card .payment-benefit-inner{min-height:44px}.product-card .payment-benefit-value{min-width:2rem}.payment-benefits-compact .payment-benefit-tile{padding:0}.payment-benefits-compact .payment-benefit-value{min-width:1.8rem}
.payment-benefit-tile{border-color:#ffe600;background:#ffe600;box-shadow:0 5px 13px rgba(105,84,0,.16)}.payment-benefit-value,.payment-benefit-copy{text-shadow:none;-webkit-text-stroke:0 transparent;color:#fff}
.product-detail-info>.payment-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:.65rem}.product-detail-info>.payment-benefits .payment-benefit-tile,.product-detail-info>.payment-benefits .payment-benefit-inner{width:100%;min-width:0}.product-detail-info>.payment-benefits .payment-benefit-inner{justify-content:center}@media(max-width:520px){.product-detail-info>.payment-benefits{grid-template-columns:1fr}}
.product-detail-info>.payment-benefits{gap:.45rem;margin-top:.65rem}.product-detail-info>.payment-benefits .payment-benefit-inner{min-width:152px;min-height:48px;padding:.24rem .48rem;gap:.38rem}.product-detail-info>.payment-benefits .payment-benefit-value{min-width:2.7rem;font-size:2.2rem}.product-detail-info>.payment-benefits .payment-benefit-copy{font-size:.68rem}.product-detail-info>.payment-benefits .payment-benefit-copy strong{font-size:.94rem}
.product-detail-info>.payment-benefits .payment-benefit-inner{width:142px;min-width:142px;height:52px;min-height:52px;padding:.22rem .42rem;gap:.34rem}.product-detail-info>.payment-benefits .payment-benefit-value{min-width:2.55rem;font-size:2.08rem}.product-detail-info>.payment-benefits .payment-benefit-copy{font-size:.65rem}.product-detail-info>.payment-benefits .payment-benefit-copy strong{font-size:.9rem}@media(max-width:600px){.product-detail-info>.payment-benefits .payment-benefit-inner{width:100%;min-width:0}}
.payment-benefit-value,.payment-benefit-copy{color:#111827}.product-detail-info>.payment-benefits .payment-benefit-tile{height:46px}.product-detail-info>.payment-benefits .payment-benefit-inner{height:100%;min-height:0;padding:.1rem .38rem}.product-detail-info>.payment-benefits .payment-benefit-value{font-size:1.75rem}.product-detail-info>.payment-benefits .payment-benefit-copy{font-size:.58rem}.product-detail-info>.payment-benefits .payment-benefit-copy strong{font-size:.78rem}
.product-pricing-box>.payment-benefits{gap:.45rem;margin-top:.65rem}.product-pricing-box>.payment-benefits .payment-benefit-tile{flex:0 0 142px;width:142px;height:46px;min-height:46px;overflow:hidden}.product-pricing-box>.payment-benefits .payment-benefit-inner{width:100%;min-width:0;height:100%;min-height:0;padding:.08rem .36rem;gap:.3rem}.product-pricing-box>.payment-benefits .payment-benefit-value{min-width:2.35rem;font-size:1.72rem}.product-pricing-box>.payment-benefits .payment-benefit-copy{font-size:.58rem}.product-pricing-box>.payment-benefits .payment-benefit-copy strong{font-size:.78rem}@media(max-width:600px){.product-pricing-box>.payment-benefits .payment-benefit-tile{width:100%;min-width:0;flex-basis:auto}}
.product-pricing-box>.payment-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:.65rem}.product-pricing-box>.payment-benefits .payment-benefit-tile{width:100%;min-width:0;flex:none}.product-pricing-box>.payment-benefits .payment-benefit-inner{width:100%;justify-content:center}@media(max-width:520px){.product-pricing-box>.payment-benefits{grid-template-columns:1fr}}
.product-pricing-box{padding:1.35rem!important}.product-pricing-box .product-purchase-actions{display:grid;grid-template-columns:110px minmax(0,1fr);gap:.85rem;align-items:stretch}.product-pricing-box .product-purchase-actions>.btn{width:100%;min-width:0}.product-pricing-box .qty-input-group{display:grid;grid-template-columns:34px 42px 34px;align-items:stretch;width:110px!important;height:46px;min-height:46px}.product-pricing-box .qty-btn,.product-pricing-box .qty-input{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-width:0;padding:0;line-height:1;text-align:center}.product-pricing-box .qty-input{appearance:textfield;-moz-appearance:textfield}.product-pricing-box .qty-input::-webkit-inner-spin-button,.product-pricing-box .qty-input::-webkit-outer-spin-button{margin:0;appearance:none;-webkit-appearance:none}.product-pricing-box>.payment-benefits{margin-top:1.15rem}@media(max-width:600px){.product-pricing-box .product-purchase-actions{grid-template-columns:1fr}.product-pricing-box .product-purchase-actions .qty-input-group{width:110px!important}.product-pricing-box>.payment-benefits{margin-top:1rem}}
#cart-summary-card .cart-payment-benefits{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:.5rem}#cart-summary-card .cart-payment-benefits .payment-benefit-tile,#cart-summary-card .cart-payment-benefits .payment-benefit-inner{width:100%;min-width:0}#cart-summary-card .cart-payment-benefits .payment-benefit-inner{padding:.35rem .3rem;gap:.28rem}#cart-summary-card .cart-payment-benefits .payment-benefit-value{min-width:2rem;font-size:1.8rem}#cart-summary-card .cart-payment-benefits .payment-benefit-copy{font-size:.56rem}#cart-summary-card .cart-payment-benefits .payment-benefit-copy strong{font-size:.78rem}
.product-main-media-stage{position:relative;width:100%;aspect-ratio:1/1;overflow:hidden;border:1px solid var(--border-color);border-radius:var(--radius-lg);background:#fff}.product-main-media-image,.product-main-media-video{display:block;width:100%;height:100%;object-position:center}.product-main-media-image{object-fit:contain}.product-main-media-video{object-fit:contain;background:#101827}.product-main-media-image[hidden],.product-main-media-video[hidden]{display:none}.product-media-gallery{display:flex;flex-wrap:wrap;gap:.6rem;margin:.75rem 0 1rem}.product-media-thumb{position:relative;width:68px;height:68px;overflow:hidden;border:1px solid #d9e0ea;border-radius:9px;background:#fff;padding:3px;cursor:pointer}.product-media-thumb:hover,.product-media-thumb.is-active{border:2px solid #ffe600;padding:2px}.product-media-thumb img{display:block;width:100%;height:100%;border-radius:6px;object-fit:contain}.product-media-play{position:absolute;inset:50% auto auto 50%;display:grid;place-items:center;width:30px;height:30px;transform:translate(-50%,-50%);border-radius:50%;background:#ffe600;color:#111827;font-size:.85rem;box-shadow:0 3px 10px rgba(0,0,0,.2)}.product-technical-section{margin-top:1.7rem}.product-technical-section .specs-table{width:100%}.product-detail-media>.product-documents-section{margin-top:1.5rem}@media(max-width:600px){.product-media-thumb{width:58px;height:58px}}
.product-installation-option{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:start;gap:.75rem;margin:0 0 1rem;padding:.85rem .95rem;border:1px solid #ffe600;border-radius:10px;background:#fff;color:#111827;cursor:pointer}.product-installation-option input{width:18px;height:18px;margin-top:.12rem;accent-color:#ffe600}.product-installation-option span,.product-installation-option strong,.product-installation-option small{display:block}.product-installation-option strong{color:#111827;font-size:.84rem}.product-installation-option small{margin-top:.2rem;color:#111827;font-size:.7rem;line-height:1.45}.product-installation-option b{color:#111827;font-size:.8rem;white-space:nowrap}.cart-installation-note{display:block;max-width:520px;margin-top:.38rem;color:#665b00;font-family:var(--font-main);font-size:.7rem;line-height:1.4}.cart-installation-note strong{color:#111827}@media(max-width:600px){.product-installation-option{grid-template-columns:auto 1fr}.product-installation-option b{grid-column:2}}

/* Floating Quick Role Bar (Demo Switcher) */
.demo-quick-bar {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99999;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.75rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
}

/* Shared action language for the older B2B screens. */
.btn-amber, .btn-primary {
  background: var(--accent-amber) !important;
  border-color: var(--accent-amber) !important;
  color: var(--primary) !important;
  font-weight: 800;
}
.btn-amber:hover, .btn-primary:hover {
  background: var(--accent-amber-hover) !important;
  border-color: var(--accent-amber-hover) !important;
}
.demo-quick-title {
  font-weight: 700;
  color: var(--text-muted);
}
.demo-chip {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.demo-chip-dealer { background: var(--accent-orange-light); color: #6b5800; }
.demo-chip-admin { background: #eff6ff; color: #1d4ed8; }
.demo-chip-guest { background: #f1f5f9; color: #475569; }

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 76px;
  right: 20px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (max-width: 700px) {
  .toast-container {
    top: 68px;
    right: 12px;
    left: 12px;
  }
}
.toast {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 300px;
  border-left: 4px solid var(--karavan-blue);
  animation: slideIn 0.25s ease-out;
}
.toast-success { border-left-color: #10b981; }
.toast-warning { border-left-color: var(--accent-orange); }
.toast-error { border-left-color: #ef4444; }

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
