/* ============================================================
   COMMON.CSS — Complete styles for Orilyt site
   Includes: Variables, Base, Components, Topbar (complete)
============================================================ */

/* ------------------------------------------------------------
   CSS Variables
------------------------------------------------------------ */
:root {
  /* Colors - Brand (Indigo) */
  --orilyt-blue: #4F46E5;
  --orilyt-cyan: #818CF8;
  --orilyt-primary: #4F46E5;
  --orilyt-primary-dark: #3730A3;
  --orilyt-accent: #818CF8;
  --orilyt-gradient: linear-gradient(135deg, #4F46E5 0%, #818CF8 100%);
  
  /* Colors - Neutrals */
  --color-white: #ffffff;
  --color-gray-50: #f8f9fa;
  --color-gray-100: #f1f3f5;
  --color-gray-200: #e9ecef;
  --color-gray-300: #dee2e6;
  --color-gray-400: #ced4da;
  --color-gray-500: #adb5bd;
  --color-gray-600: #868e96;
  --color-gray-700: #495057;
  --color-gray-800: #343a40;
  --color-gray-900: #212529;
  
  /* Colors - Semantic */
  --color-success: #22c55e;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #4F46E5;
  
  /* Legacy variables (for compatibility) */
  --orilyt-bg: #ffffff;
  --orilyt-bg-soft: #F9FAFB;
  --orilyt-border: #E5E7EB;
  --orilyt-text: #1f2937;
  --orilyt-title: #0f172a;
  --orilyt-muted: #334155;
  --orilyt-ok: rgb(22, 163, 74);
  
  /* Typography */
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  
  /* Font sizes */
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-xs: 12px;
  --font-size-md: 18px;
  --font-size-lg: 20px;
  --font-size-xl: 28px;
  --font-size-2xl: 36px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Legacy spacing (for compatibility) */
  --space-0: 0px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  
  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  --radius-control: 10px;
  --radius-card: 12px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
  --ts: 150ms;
  
  /* Layout */
  --page-max-width: 1300px;
  --page-padding: 24px;
  
  /* Topbar */
  --topbar-height: 64px;
  --topbar-h: 64px;
  --topbar-bg: #0c0e12;
  --topbar-text: #ffffff;
  
  /* Controls */
  --control-h: 40px;
}

/* ------------------------------------------------------------
   Reset & Base
------------------------------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray-900);
  background: var(--color-white);
  min-height: 100vh;
}

/* ------------------------------------------------------------
   Typography
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-gray-900);
  margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--orilyt-blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--orilyt-cyan);
}

strong, b {
  font-weight: 600;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--color-gray-100);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

/* ------------------------------------------------------------
   Buttons
------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orilyt-gradient);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border: 1px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--orilyt-blue);
  border: 2px solid var(--orilyt-blue);
}

.btn-secondary:hover {
  background: var(--color-gray-50);
  transform: translateY(-2px);
  color: var(--orilyt-blue);
}

.btn-danger {
  background: var(--color-white);
  color: #b91c1c;
  border: 1px solid #b91c1c;
}

.btn-danger:hover {
  background: #b91c1c;
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-gray-700);
  border: 1px solid var(--color-gray-300);
}

.btn-outline:hover {
  background: var(--color-gray-50);
  border-color: var(--orilyt-blue);
  color: var(--orilyt-blue);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* ------------------------------------------------------------
   Cards
------------------------------------------------------------ */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--orilyt-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-gray-900);
}

.card-header {
  margin-bottom: var(--space-sm);
}

.card-subtitle {
  font-size: var(--font-size-sm);
  color: #555b64;
  margin-top: 4px;
}

.card-text {
  color: var(--color-gray-700);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   Modal backdrop (standard)
   Usage: <div class="modal-backdrop is-open">…</div>
------------------------------------------------------------ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-backdrop.is-open {
  display: flex;
}

/* ------------------------------------------------------------
   Container / Grid
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  max-width: 1400px;
}

.container-narrow {
  max-width: 800px;
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------------------------------
   Utilities
------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: #555b64; }
.text-gradient {
  background: var(--orilyt-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

/* ============================================================
   TOPBAR (Light theme — white bg, dark text)
============================================================ */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}

.topbar-inner {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Left side */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Logo — FIXED SIZE */
.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 36px; /* Fixed from 28px */
  width: auto;
  display: block;
}

.wl-brand-logo {
  height: auto;
  max-height: 40px;
  max-width: 200px;
  object-fit: contain;
}

/* Audited site pill */
.topbar-site {
  max-width: 420px;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: var(--font-size-sm);
  color: #555b64;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  padding: 6px 12px;
  border-radius: var(--radius-control);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.topbar-site:hover {
  background: var(--color-gray-100);
  color: var(--orilyt-blue);
  border-color: var(--color-gray-300);
}

@media (max-width: 1100px) {
  .topbar-site { max-width: 260px; }
}

@media (max-width: 900px) {
  .topbar-site { display: none; }
}

/* Center group */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

/* Nav (desktop default) */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-gray-700);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-item:hover {
  color: var(--color-gray-900);
  background: var(--color-gray-50);
}

.nav-item.is-active {
  color: var(--orilyt-blue);
  background: rgba(79, 70, 229, 0.06);
}

/* Language switcher */
.topbar-lang {
  position: relative;
}

.lang-switch {
  position: relative;
}

.lang-trigger {
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  font-size: var(--font-size-xs);
  padding: 8px 12px;
  border-radius: var(--radius-control);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all var(--transition-fast);
  font-weight: 500;
}

.lang-trigger:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-300);
}

.lang-menu {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 110px;
  background: #ffffff;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  display: none;
  z-index: 60;
}

.lang-option {
  display: block;
  padding: 8px 12px;
  font-size: var(--font-size-xs);
  color: var(--orilyt-title);
  text-decoration: none;
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.lang-option:hover {
  background: #f3f4f6;
  color: var(--orilyt-primary);
}

.lang-option.is-current {
  font-weight: 600;
  background: rgba(79, 70, 229, 0.08);
  color: var(--orilyt-blue);
}

.lang-switch.is-open .lang-menu {
  display: block;
}

/* Actions at far right */
.topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

/* User indicator */
.topbar-user {
  position: relative;
}

.topbar-user-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-control);
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
  color: var(--color-gray-700);
  text-decoration: none;
  flex: 0 0 auto;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.topbar-user-indicator:hover {
  background: var(--color-gray-100);
  border-color: var(--color-gray-300);
}

.topbar-user-indicator-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-user-indicator.is-logged {
  position: relative;
}

.topbar-user-indicator.is-logged::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--color-success);
  box-shadow: 0 0 0 2px var(--color-white);
}

/* User menu dropdown */
.topbar-user-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5000;
  min-width: 190px;
  padding: 6px;
  background: var(--orilyt-bg);
  border: 1px solid var(--orilyt-border);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.topbar-user-menu[hidden] {
  display: none;
}

.topbar-user-menu-item {
  display: block;
  width: 100%;
  margin: 0;
}

.topbar-user-menu-item > a,
.topbar-user-menu-btn {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 10px 12px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--orilyt-text);
  text-decoration: none;
  font: inherit;
  line-height: 1.2;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.topbar-user-menu-item > a:hover,
.topbar-user-menu-btn:hover {
  background: var(--orilyt-bg-soft);
  color: var(--orilyt-primary);
}

.topbar-user-menu-item form {
  margin: 0;
  padding: 0;
}

/* Burger menu toggle */
.topbar-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.topbar-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-gray-700);
  display: block;
  transition: all 200ms ease;
  border-radius: 2px;
}

.topbar-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.topbar-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Topbar overlay (mobile backdrop) */
.oi-topbar-overlay {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
  display: block;
}

.oi-topbar-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* Scroll lock when menu open */
body.oi-topbar-open {
  overflow: hidden;
}

/* ============================================================
   TOPBAR — MOBILE (<=768px)
============================================================ */

@media (max-width: 768px) {
  .topbar-menu-toggle {
    display: inline-flex;
  }
  
  .topbar-right {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    padding: 14px 14px 16px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
    z-index: 49;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .topbar-right.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .topbar-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
  }
  
  .topbar-right.is-open .topbar-nav {
    display: flex;
  }
  
  .topbar-nav .nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 12px;
    border-radius: var(--radius-control);
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-gray-700);
  }

  .topbar-nav .nav-item:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-300);
  }

  .topbar-nav .nav-item.is-active {
    color: var(--orilyt-blue);
    background: rgba(79, 70, 229, 0.06);
    border-color: rgba(79, 70, 229, 0.2);
  }
  
  /* Mobile language switcher */
  .topbar-right .topbar-lang {
    width: 100%;
  }
  
  .topbar-right .topbar-lang .lang-switch {
    width: 100%;
  }
  
  .topbar-right .topbar-lang .lang-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: var(--radius-control);
    width: 100%;
  }
  
  .topbar-right .topbar-lang .lang-menu {
    position: static;
    top: auto;
    right: auto;
    display: none;
    margin-top: 10px;
    padding: 0;
    min-width: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .topbar-right .topbar-lang .lang-switch.is-open .lang-menu {
    display: flex;
  }
  
  .topbar-right .topbar-lang .lang-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--color-gray-200);
    background: var(--color-gray-50);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--color-gray-700);
    text-decoration: none;
  }

  .topbar-right .topbar-lang .lang-option:hover {
    background: var(--color-gray-100);
    border-color: var(--color-gray-300);
  }

  .topbar-right .topbar-lang .lang-option.is-current {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.3);
    color: var(--orilyt-blue);
  }
  
  html, body {
    overflow-x: hidden;
  }
  
  .topbar {
    overflow-x: hidden;
  }
  
  .topbar-left {
    min-width: 0;
  }
}

/* ============================================================
   FOOTER (Complete)
============================================================ */

.orilyt-footer {
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-200);
  padding: var(--space-xl) 0;
  margin-top: var(--space-3xl);
}

.orilyt-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.orilyt-footer-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: #4b5563;
  font-size: 0.875rem;
}

.orilyt-footer-brand {
  font-weight: 600;
  color: var(--color-gray-900);
}

.orilyt-footer-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.orilyt-footer-link {
  color: #4b5563;
  transition: color var(--transition-fast);
}

.orilyt-footer-link:hover {
  color: var(--orilyt-blue);
}

.orilyt-footer-sep {
  color: #6b7280;
}

@media (max-width: 768px) {
  .orilyt-footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   Responsive
============================================================ */

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.375rem; }
  
  .container {
    padding: 0 var(--space-md);
  }
  
  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

/* ============================================================
   COOKIE CONSENT BANNER
============================================================ */

.orilyt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: orilyt-cookie-slide-up 350ms ease forwards;
}

@keyframes orilyt-cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.orilyt-cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.orilyt-cookie-banner-text {
  flex: 1;
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-gray-700);
  line-height: 1.5;
}

.orilyt-cookie-banner-link {
  color: var(--orilyt-blue);
  text-decoration: underline;
  margin-left: 4px;
}

.orilyt-cookie-banner-link:hover {
  color: var(--orilyt-primary-dark);
}

.orilyt-cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .orilyt-cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-md);
    gap: var(--space-md);
  }

  .orilyt-cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .orilyt-cookie-banner-actions .btn {
    width: 100%;
  }
}