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

:root {
  --bg-steel: #f8fafc;
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(15, 23, 42, 0.08);
  --gold-glow: #d97706;
  --gold-hover: #b45309;
  --sapphire-blue: #2563eb;
  --obsidian-slate: #0f172a;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;
}

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

body {
  background-color: var(--bg-steel);
  background-image: 
    radial-gradient(at 0% 0%, rgba(217, 119, 6, 0.03) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(37, 99, 233, 0.03) 0px, transparent 50%);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  border-color: rgba(217, 119, 6, 0.25);
  box-shadow: 0 20px 40px -15px rgba(217, 119, 6, 0.08);
}

.gold-glow-border {
  position: relative;
}
.gold-glow-border::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-glow), transparent, var(--sapphire-blue));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
  transition: var(--transition-smooth);
}
.gold-glow-border:hover::after {
  opacity: 1;
}

/* Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--obsidian-slate);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-item a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.5rem 0;
}

.nav-item a:hover,
.nav-item a.active {
  color: var(--text-primary);
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-glow);
  transition: var(--transition-smooth);
}

.nav-item a:hover::after,
.nav-item a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--obsidian-slate);
  color: #fff !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 30px;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.25);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--obsidian-slate);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-sans);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--obsidian-slate);
  color: #fff;
  box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  background: var(--gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 15px 25px -5px rgba(217, 119, 6, 0.3);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--obsidian-slate);
  border-color: var(--glass-border);
}

.btn-secondary:hover {
  background: #fff;
  border-color: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-glow), #f59e0b);
  color: #fff;
  box-shadow: 0 10px 25px -10px rgba(217, 119, 6, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(217, 119, 6, 0.5);
}

/* Premium Configuration Buttons Details Selection */
.btn.active-config {
  background: var(--obsidian-slate);
  color: #fff;
  border-color: var(--obsidian-slate);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

/* Hero Section */
.hero-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: var(--gold-glow);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}

.hero-title {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--obsidian-slate);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold-glow), var(--sapphire-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  padding: 1.5rem;
  max-width: 240px;
}

.hero-overlay-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-pulse {
  width: 10px;
  height: 10px;
  background: var(--gold-glow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  animation: pulse-ring 1.8s infinite;
}

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

/* Sections Global */
section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  color: var(--obsidian-slate);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  padding: 3rem 2rem;
  text-align: left;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(217, 119, 6, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: var(--gold-glow);
}

.feature-card h3 {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--obsidian-slate);
}

.feature-card p {
  color: var(--text-secondary);
}

/* Product Card Spec Grid */
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--obsidian-slate);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

.product-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.product-title {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--obsidian-slate);
  margin-bottom: 0.75rem;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-specs-list {
  list-style: none;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1rem;
}

.product-specs-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.product-specs-list span:first-child {
  color: var(--text-secondary);
}

.product-specs-list span:last-child {
  color: var(--text-primary);
  font-weight: 600;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

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

.testimonial-card {
  padding: 2.5rem;
}

.testimonial-rating {
  color: var(--gold-glow);
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--obsidian-slate);
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Customizer Form Area */
.customizer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.customizer-panel-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.customizer-preview-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
}

.customizer-preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.customizer-glass-spec {
  position: absolute;
  top: 2rem;
  left: 2rem;
  padding: 1.5rem;
  max-width: 320px;
}

.customizer-option-group {
  margin-bottom: 2rem;
}

.customizer-label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--obsidian-slate);
  text-transform: uppercase;
}

.customizer-grid-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.customizer-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.customizer-btn.active, .customizer-btn:hover {
  border-color: var(--gold-glow);
  background: #fff;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.1);
}

.customizer-btn img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.customizer-btn span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
}

.summary-card {
  padding: 2.5rem;
  position: sticky;
  top: 120px;
}

.summary-header {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-title {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.summary-details {
  list-style: none;
  margin-bottom: 2rem;
}

.summary-details li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.summary-details li span:first-child {
  color: var(--text-secondary);
}

.summary-details li span:last-child {
  font-weight: 600;
}

.metric-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(37, 99, 233, 0.05);
  border: 1px solid rgba(37, 99, 233, 0.1);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.metric-highlight span {
  color: var(--sapphire-blue);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Detail Page specific */
.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin-top: 2rem;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.main-gallery-view {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
}

.main-gallery-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.thumb-item {
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.thumb-item.active, .thumb-item:hover {
  border-color: var(--gold-glow);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

.specs-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.95rem;
}

.specs-table td:first-child {
  color: var(--text-secondary);
  font-weight: 500;
}

.specs-table td:last-child {
  font-weight: 600;
  text-align: right;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--obsidian-slate);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-glow);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.08);
}

/* Legal pages structural styles */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.legal-header {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.legal-date {
  font-family: var(--font-mono);
  color: var(--gold-glow);
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--obsidian-slate);
  margin: 2.5rem 0 1rem;
}

.legal-content p, .legal-content ul {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Footer Section */
footer {
  background: var(--obsidian-slate);
  color: rgba(255, 255, 255, 0.7);
  padding: 6rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  color: #fff !important;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.6;
}

.footer-contact-details {
  list-style: none;
  font-size: 0.9rem;
}

.footer-contact-details li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav-title {
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-glow);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

/* Modals & Triggers */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  width: 100%;
  max-width: 500px;
  height: 100%;
  background: #fff;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  padding: 3rem 2.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-overlay.active .drawer-content {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.drawer-close:hover {
  color: var(--obsidian-slate);
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transform: translateY(150px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cookie-text a {
  color: var(--gold-glow);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Animations helper */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-image {
    height: 400px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .customizer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}