/* ==========================================================================
   APATIYM STUDIO — SCHEMATIC ORANGE ARCHITECTURE & THEME ENGINE
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* 1. Light Schematic Theme (Default) */
:root, [data-theme="light"] {
  --paper: #f4f2ec;
  --panel: #ffffff;
  --grid-line: #ddd8c8;
  --ink: #1e2a22;
  --ink-dim: #6d786e;

  /* Orange Palette */
  --or-50:  #fdf3ea;
  --or-100: #fbe2c9;
  --or-300: #f0a35a;
  --or-500: #d97a2b;
  --or-600: #b5591a;
  --or-700: #8f4315;
  --lime:   #7a9c3f;

  --border-subtle: var(--grid-line);
  --border-active: var(--or-600);

  --btn-bg: var(--or-600);
  --btn-text: #ffffff;
  --btn-hover: var(--or-700);

  --win-dot-color: #ddd8c8;
}

/* 2. Dark Schematic Theme (Pure Neutral Dark) */
[data-theme="dark"] {
  --paper: #0e1113;
  --panel: #161b1e;
  --grid-line: #232a2f;
  --ink: #f0f4f8;
  --ink-dim: #94a3b0;

  /* Orange Palette Dark */
  --or-50:  #241a14;
  --or-100: #3b2518;
  --or-300: #d97a2b;
  --or-500: #f0a35a;
  --or-600: #e07224;
  --or-700: #f7964b;
  --lime:   #8db848;

  --border-subtle: var(--grid-line);
  --border-active: var(--or-500);

  --btn-bg: var(--or-600);
  --btn-text: #ffffff;
  --btn-hover: var(--or-500);

  --win-dot-color: #232a2f;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.editorial-app {
  background:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  transition: background-color 0.25s ease, color 0.25s ease;
}

/* Background Ambient Accent Decorations */
.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.orb-1 {
  width: 450px;
  height: 450px;
  top: -80px;
  right: -100px;
  background: radial-gradient(circle, var(--or-500) 0%, transparent 70%);
  animation: floatOrb 12s infinite ease-in-out alternate;
}

.orb-2 {
  width: 350px;
  height: 350px;
  top: 600px;
  left: -80px;
  background: radial-gradient(circle, var(--or-300) 0%, transparent 70%);
  animation: floatOrb 16s infinite ease-in-out alternate-reverse;
}

[data-theme="dark"] .glow-orb {
  opacity: 0.18;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 40px) scale(1.08); }
  100% { transform: translate(-20px, -30px) scale(0.95); }
}

.bg-grid-cross {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 16px;
  color: var(--or-600);
  opacity: 0.25;
  user-select: none;
}

.cross-1 { top: 120px; left: 6%; }
.cross-2 { top: 820px; right: 5%; }
.cross-3 { top: 1450px; left: 4%; }

.bg-code-tag {
  position: absolute;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--ink-dim);
  opacity: 0.15;
  user-select: none;
}

.tag-1 { top: 220px; right: 8%; transform: rotate(90deg); }
.tag-2 { top: 1100px; left: 2%; }

.mono {
  font-family: 'Space Mono', monospace;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 242, 236, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grid-line);
  padding: 18px 0;
  transition: background-color 0.25s ease;
}

[data-theme="dark"] .site-header {
  background: rgba(18, 22, 20, 0.9);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
}

.logo-icon {
  width: 20px;
  height: 20px;
  color: var(--or-600);
  transition: transform 0.2s ease, color 0.2s ease;
}

.logo:hover .logo-icon {
  color: var(--or-700);
}

.nav-menu {
  display: flex;
  gap: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-dim);
  justify-self: center;
}

.nav-link {
  color: var(--ink-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--or-600);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

/* Header Online Status Badge */
.online-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--paper);
  border: 1px solid rgba(122, 156, 63, 0.4);
  padding: 5px 11px;
  border-radius: 20px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--lime);
  box-shadow: 0 0 6px rgba(122, 156, 63, 0.8);
  animation: pulse-ring 1.8s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(122, 156, 63, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(122, 156, 63, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(122, 156, 63, 0);
  }
}

.status-text {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.3px;
}

.live-pill {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 6px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.theme-toggle-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: var(--panel);
  border: 1px solid var(--grid-line);
  padding: 6px 12px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  border-color: var(--or-500);
  color: var(--or-600);
}

.tg-btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: #ffffff;
  background: var(--or-600);
  padding: 9px 16px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.tg-btn:hover {
  background: var(--or-700);
}

/* Hero */
.hero {
  display: block;
  padding: 70px 48px 40px;
}

.callout {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--or-600);
  border: 1px dashed var(--or-500);
  padding: 5px 10px;
  margin-bottom: 22px;
}

h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: var(--ink);
}

h1 .u {
  text-decoration: underline;
  text-decoration-color: var(--or-500);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.hero p {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 480px;
}

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 6px;
}

.avail-clean {
  background: none;
  border: none;
  padding: 0;
}

.avail-clean .l {
  font-size: 11px;
  color: var(--or-600);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 700;
}

.avail-clean .n {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

.avail-card .l {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--or-700);
  margin-bottom: 4px;
}

.avail-card .n {
  font-size: 14px;
  font-weight: 700;
  color: var(--or-700);
}

/* Controls Panel */
.controls-panel {
  margin: 0 auto 50px;
  background: var(--panel);
  border: 1px solid var(--grid-line);
  padding: 24px 28px;
}

.controls-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 18px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--grid-line);
  padding: 10px 14px;
  flex: 1;
  min-width: 220px;
  background: var(--panel);
}

.search-ico {
  color: var(--ink-dim);
}

.search-box input {
  border: none;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  width: 100%;
  background: none;
  color: var(--ink);
}

.clear-search-btn {
  border: none;
  background: none;
  font-size: 18px;
  color: var(--ink-dim);
  cursor: pointer;
}

.price-filter-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-label {
  font-size: 11px;
  color: var(--ink-dim);
}

.price-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.price-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: var(--paper);
  border: 1px solid var(--grid-line);
  padding: 6px 12px;
  cursor: pointer;
  color: var(--ink-dim);
  border-radius: 2px;
  transition: all 0.2s ease;
}

.price-btn:hover {
  border-color: var(--or-500);
  color: var(--or-600);
}

.price-btn.active {
  background: var(--or-600);
  color: #ffffff;
  border-color: var(--or-700);
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11.5px;
  background: var(--paper);
  border: 1px solid var(--grid-line);
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink-dim);
  border-radius: 2px;
  user-select: none;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--or-500);
  color: var(--or-600);
}

.filter-btn.active {
  background: var(--or-600);
  color: #ffffff;
  border-color: var(--or-700);
}

.no-results {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 16px;
}

/* Services */
.services {
  padding-bottom: 90px;
}

.service-block {
  margin-bottom: 52px;
}

.block-header {
  margin-bottom: 20px;
}

.idx-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--or-600);
}

.block-header h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 0 4px;
  color: var(--ink);
}

.block-header .sub {
  color: var(--ink-dim);
  font-size: 13px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--grid-line);
  border-radius: 2px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
  border-color: var(--or-300);
}

.card.soon {
  opacity: 0.65;
}

.card-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.card-green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--lime);
  display: inline-block;
  box-shadow: 0 0 5px rgba(122, 156, 63, 0.6);
  flex-shrink: 0;
}

.promo-badge {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  background: var(--or-600);
  padding: 1px 6px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.soon-badge {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 9.5px;
  color: var(--or-700);
  background: var(--or-100);
  border: 1px solid var(--or-300);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: auto;
}

.card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--ink);
}

.card p {
  font-size: 11.5px;
  color: var(--ink-dim);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 34px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--grid-line);
  padding-top: 12px;
  margin-top: auto;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.old-price {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  text-decoration: line-through;
  opacity: 0.75;
}

.prepay-tag {
  font-size: 10px;
  color: var(--ink-dim);
  margin-top: 2px;
  font-weight: 500;
}

.price {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  color: var(--or-600);
  font-size: 14px;
}

.price .from {
  color: var(--ink-dim);
  font-weight: 400;
  font-size: 10px;
}

.add-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  background: none;
  color: var(--ink-dim);
  border: 1px solid var(--grid-line);
  padding: 5px 9px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s ease;
}

.add-btn:hover {
  border-color: var(--or-600);
  color: var(--or-600);
}

.add-btn.added {
  background: var(--or-600);
  color: #ffffff;
  border-color: var(--or-700);
}

.disabled-soon-btn {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: var(--grid-line);
  color: var(--ink-dim);
}

.disabled-soon-btn:hover {
  border-color: var(--grid-line);
  color: var(--ink-dim);
}

/* Calculator Section */
.calculator-section {
  padding-bottom: 80px;
}

.window-chrome {
  background: var(--panel);
  border: 1px solid var(--grid-line);
  border-radius: 4px;
  overflow: hidden;
}

.window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--grid-line);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.win-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--win-dot-color);
}

.window-title {
  font-size: 12px;
  color: var(--ink-dim);
}

.window-curr-pill {
  font-size: 11px;
  color: var(--ink-dim);
}

.window-body {
  padding: 24px;
}

.cart-list {
  min-height: 100px;
  margin-bottom: 24px;
  border: 1px dashed var(--grid-line);
  padding: 16px;
  border-radius: 2px;
}

.empty-state {
  text-align: center;
  padding: 20px 0;
  color: var(--ink-dim);
}

.empty-text {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
}

.empty-sub {
  font-size: 12px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--grid-line);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.cart-item-price {
  font-weight: 700;
  color: var(--or-600);
  font-size: 13.5px;
  margin-right: 12px;
}

.cart-item-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--ink-dim);
  cursor: pointer;
}

.cart-item-remove:hover {
  color: var(--or-600);
}

.calc-summary {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--paper);
  padding: 20px;
  border: 1px solid var(--grid-line);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.summary-val {
  font-weight: 700;
  font-size: 18px;
  color: var(--or-600);
}

.prepay-line {
  border-top: 1px dashed var(--grid-line);
  padding-top: 10px;
}

.prepay-val {
  color: var(--ink);
}

.calc-notice {
  font-size: 12px;
  color: var(--ink-dim);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--or-600);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  padding: 12px 20px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: var(--or-700);
}

.btn-full {
  width: 100%;
}

.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* FAQ & Legal Sections */
.faq-section,
.legal-section {
  padding-bottom: 90px;
}

.faq-header,
.legal-header {
  margin-bottom: 24px;
}

.faq-header h2,
.legal-header h2 {
  font-size: 26px;
  font-weight: 800;
  margin-top: 8px;
}

.legal-text-content {
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.6;
}

.legal-text-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 8px 0;
}

.legal-text-content p {
  margin-bottom: 10px;
}

.legal-text-content ul {
  margin: 6px 0 12px 20px;
}

.legal-text-content li {
  margin-bottom: 4px;
}

.legal-updated {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--or-600);
  margin-bottom: 14px;
}

.table-responsive {
  overflow-x: auto;
  margin: 12px 0 16px 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 10px 14px;
  border: 1px solid var(--grid-line);
  text-align: left;
}

.legal-table th {
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
}

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--panel);
  border: 1px solid var(--grid-line);
  border-radius: 2px;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: none;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion-icon {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  color: var(--or-600);
  transition: transform 0.2s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  padding: 0 20px 18px;
}

.accordion-content p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.text-link {
  color: var(--or-600);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
}

/* Footer */
footer {
  padding: 36px 0;
  border-top: 1px solid var(--grid-line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--ink-dim);
  font-size: 12.5px;
}

footer a {
  color: var(--or-600);
  text-decoration: none;
}

/* Toast Container */
.toast-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  padding: 10px 16px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: toastIn 0.25s ease;
}

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

/* Comprehensive Responsive Design Breakpoints */

/* Tablet & Smaller Laptops (1024px) */
@media (max-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  h1 {
    font-size: 38px;
  }
}

/* Tablets (768px) */
@media (max-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .controls-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .search-box {
    width: 100%;
  }

  .price-filter-wrap {
    width: 100%;
  }

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

  .price-btn {
    text-align: center;
  }

  .filter-tabs {
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hero {
    padding: 48px 24px 32px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.18;
  }

  .hero p {
    font-size: 14.5px;
  }

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

  .window-body {
    padding: 16px;
  }

  .calc-summary {
    padding: 16px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }
}

/* Mobile Phones (540px and below) */
@media (max-width: 540px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding: 36px 16px 28px;
  }

  h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 13.5px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card {
    padding: 16px;
  }

  .price-row {
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
  }

  .add-btn {
    padding: 7px 12px;
    font-size: 10.5px;
  }

  .cart-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .cart-item-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .summary-line {
    font-size: 13px;
  }

  .summary-line.total {
    font-size: 15px;
  }

  .toast-wrapper {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    width: 100%;
    text-align: center;
  }
}
