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

:root {
  --primary: #EC4899;
  --primary-hover: #db2777;
  --secondary: #06B6D4;
  --secondary-hover: #0891b2;
  --bg-butter: #FFFDF2;
  --surface-yellow: #FEF08A;
  --surface-yellow-hover: #fde047;
  --text-navy: #0F172A;
  --card-border: #0F172A;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --shadow-pop: 4px 4px 0px #0F172A;
  --shadow-pop-lg: 8px 8px 0px #0F172A;
  --shadow-pop-hover: 6px 6px 0px #0F172A;
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-butter);
  color: var(--text-navy);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-navy);
  line-height: 1.25;
}

/* Header Navigation */
.site-header {
  background: var(--surface-yellow);
  border-bottom: 3px solid var(--card-border);
  padding: 1rem 2rem;
  width: 100%;
  position: relative;
  z-index: 10;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-navy);
  flex-shrink: 0;
}

.logo-badge {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0px var(--card-border);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.nav-links a:hover {
  background: rgba(236, 72, 153, 0.12);
  color: var(--primary);
  border-color: rgba(236, 72, 153, 0.3);
}

.header-meta-stamp {
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  border: 2px solid var(--card-border);
  box-shadow: 2px 2px 0px var(--card-border);
  white-space: nowrap;
}

/* Back Button Bar */
.return-home-bar {
  max-width: 1280px;
  margin: 1.5rem auto 0 auto;
  padding: 0 1.5rem;
}

.btn-return {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-yellow);
  color: var(--text-navy);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--border-radius-md);
  border: 2.5px solid var(--card-border);
  box-shadow: var(--shadow-pop);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.btn-return:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
  background: var(--secondary);
  color: #fff;
}

/* Main Content Layout */
main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* Buttons & Interactive Controls */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--border-radius-md);
  border: 2.5px solid var(--card-border);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  min-height: 48px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-pop);
}

.btn-primary:hover:not(:disabled) {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
  background: var(--primary-hover);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-secondary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: var(--shadow-pop);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
  background: var(--secondary-hover);
}

.btn-surface {
  background: var(--surface-yellow);
  color: var(--text-navy);
  box-shadow: var(--shadow-pop);
}

.btn-surface:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
  background: var(--surface-yellow-hover);
}

.btn-danger {
  background: #fee2e2;
  color: #dc2626;
  border-color: var(--card-border);
}

.btn-danger:hover {
  background: #fca5a5;
  color: #7f1d1d;
}

/* Inputs & Form Controls */
.select-input {
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--border-radius-md);
  border: 2.5px solid var(--card-border);
  background: #ffffff;
  color: var(--text-navy);
  cursor: pointer;
  box-shadow: 2px 2px 0px var(--card-border);
  outline: none;
  transition: border-color var(--transition-fast);
}

.select-input:focus {
  border-color: var(--primary);
}

.value-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--text-navy);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 6px;
}

.slider-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  accent-color: var(--primary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: #fbcfe8;
  color: var(--primary);
  border: 2px solid var(--card-border);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  box-shadow: 2px 2px 0px var(--card-border);
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-preview-box {
  background: var(--surface-yellow);
  border: 3px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-graphic {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
}

/* Section Typography & Titles */
.section-title-wrap {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: #475569;
  font-size: 1.05rem;
}

/* Studio Section Grid */
.studio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2rem;
  background: #ffffff;
  border: 3.5px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-pop-lg);
  align-items: start;
}

.studio-controls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--bg-butter);
  padding: 1.25rem;
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  box-shadow: 2px 2px 0px var(--card-border);
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.control-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-navy);
}

.dropzone-box {
  border: 2.5px dashed var(--card-border);
  background: var(--surface-yellow);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.dropzone-box:hover {
  background: var(--surface-yellow-hover);
}

.dropzone-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.dropzone-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.dropzone-sub {
  font-size: 0.8rem;
  color: #64748b;
}

.tool-btn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.tool-btn {
  background: #ffffff;
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  padding: 10px 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 2px 2px 0px var(--card-border);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.tool-btn:hover:not(.active) {
  background: #f8fafc;
}

.tool-btn.active {
  background: var(--primary);
  color: #ffffff;
  box-shadow: none;
  transform: translate(2px, 2px);
}

.color-picker-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 4px;
}

.color-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--card-border);
  cursor: pointer;
  box-shadow: 2px 2px 0px var(--card-border);
  transition: transform var(--transition-fast);
}

.color-dot:hover {
  transform: scale(1.1);
}

.color-dot.active-color {
  transform: scale(1.15);
  box-shadow: 0 0 0 3px var(--primary);
}

/* Studio Canvas Viewport */
.canvas-viewport {
  background: #f1f5f9;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 480px;
  padding: 1.5rem;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.canvas-frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
}

#main-canvas {
  max-width: 100%;
  max-height: 380px;
  border-radius: var(--border-radius-sm);
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
}

.export-bar {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 2px dashed #cbd5e1;
}

/* GIF Maker Studio Section */
.gif-studio-card {
  background: var(--surface-yellow);
  border: 3.5px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-pop-lg);
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.gif-header-group {
  margin-bottom: 0.25rem;
}

.gif-header-group .section-title {
  text-align: left;
  margin-bottom: 0.4rem;
}

.gif-header-group .section-desc {
  text-align: left;
}

.gif-controls-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1.5rem;
  align-items: flex-end;
  background: #ffffff;
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-pop);
}

.gif-btn-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.gif-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.timeline-panel {
  background: #ffffff;
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.badge-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  background: var(--secondary);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  border: 1.5px solid var(--card-border);
}

.frames-timeline-wrapper {
  background: var(--bg-butter);
  border: 2px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  padding: 10px;
  margin-top: 4px;
}

.frames-timeline {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  min-height: 90px;
  align-items: center;
  scroll-behavior: smooth;
}

/* Custom Horizontal Scrollbar for Timeline */
.frames-timeline::-webkit-scrollbar {
  height: 8px;
}
.frames-timeline::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 4px;
}
.frames-timeline::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.frame-thumb-wrapper {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.frame-thumb {
  width: 76px;
  height: 76px;
  border: 2px solid var(--card-border);
  background: #fff;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: 2px 2px 0px var(--card-border);
}

.frame-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  border: 2px solid var(--card-border);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
  box-shadow: 1px 1px 0px var(--card-border);
}

.frame-remove-btn:hover {
  transform: scale(1.15);
  background: #dc2626;
}

.gif-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.gif-status-msg {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-navy);
  min-height: 24px;
  display: flex;
  align-items: center;
}

.gif-preview-wrapper {
  display: flex;
  align-items: stretch;
}

.preview-canvas-card {
  width: 100%;
  background: #ffffff;
  border: 2.5px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}

.preview-canvas-title {
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
}

#gif-preview-canvas {
  max-width: 100%;
  max-height: 320px;
  border: 2px dashed var(--card-border);
  border-radius: var(--border-radius-sm);
  background: #ffffff;
  margin-top: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

/* Guides Section */
.articles-section {
  margin-top: 4.5rem;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.guide-card {
  background: #ffffff;
  border: 3px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-pop);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.guide-tag {
  align-self: flex-start;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 0.85rem;
  border: 1.5px solid var(--card-border);
}

.guide-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.guide-excerpt {
  color: #475569;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.guide-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.link-internal {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-internal:hover {
  text-decoration: underline;
}

.link-external {
  color: #0284c7;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

/* Legal Pages Content */
.legal-card {
  background: #ffffff;
  border: 3.5px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-pop-lg);
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.legal-card h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-meta {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 1rem;
}

.legal-body h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-body p, .legal-body ul {
  margin-bottom: 1rem;
  color: #334155;
}

.legal-body ul {
  padding-left: 1.5rem;
}

/* Footer Universal */
.site-footer {
  background: var(--text-navy);
  color: #f8fafc;
  padding: 3.5rem 1.5rem 1.5rem 1.5rem;
  margin-top: auto;
  border-top: 4px solid var(--primary);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  color: var(--surface-yellow);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-brand-desc {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-address {
  font-style: normal;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer-email-link {
  color: var(--secondary);
  text-decoration: none;
}

.footer-email-link:hover {
  text-decoration: underline;
}

.footer-column h4 {
  color: var(--surface-yellow);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #334155;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: var(--text-navy);
  color: var(--surface-yellow);
  border: 3px solid var(--surface-yellow);
  border-radius: var(--border-radius-lg);
  padding: 1.35rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--surface-yellow);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-desc {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
  background: #1e293b;
  padding: 0.85rem;
  border-radius: var(--border-radius-sm);
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #f8fafc;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.btn-cookie-acc {
  background: var(--primary);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  flex: 1;
}

.btn-cookie-dec {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #475569;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .studio-grid {
    grid-template-columns: 1fr;
  }

  .gif-controls-bar {
    grid-template-columns: 1fr 1fr;
  }

  .gif-btn-group {
    grid-column: span 2;
  }

  .gif-flex {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .gif-controls-bar {
    grid-template-columns: 1fr;
  }

  .gif-btn-group {
    grid-column: span 1;
    flex-direction: column;
  }

  .gif-btn-group .btn {
    width: 100%;
  }

  .export-bar {
    flex-direction: column;
  }

  .export-bar .btn {
    width: 100%;
  }

  .gif-cta-actions {
    flex-direction: column;
  }

  .gif-cta-actions .btn {
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 12px;
  }
}