:root {
  --bg-color: #030303;
  --text-color: #f5f5f7;
  --text-dim: #999999;
  --accent-color: #ffffff;
  --accent-dim: rgba(255, 255, 255, 0.1);
  --gradient-gold: linear-gradient(135deg, #f5f5f7 0%, #a0a0a0 100%);
  --gradient-premium: linear-gradient(135deg, #ffffff 0%, #434343 100%);
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --container-width: 1400px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none; /* Hide default for custom cursor */
}

html.lenis {
  height: auto;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.italic {
  font-style: italic;
  font-weight: 400;
}

#canvas-webgl {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
}

/* Animated Grain Overlay */
.grain-overlay {
  position: fixed;
  top: -150%;
  left: -150%;
  width: 400%;
  height: 400%;
  background: url("https://grain-y.com/images/grain.png");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  animation: grain-dance 4s steps(10) infinite;
}

@keyframes grain-dance {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -10%);
  }
  20% {
    transform: translate(-15%, 5%);
  }
  30% {
    transform: translate(7%, -25%);
  }
  40% {
    transform: translate(-5%, 25%);
  }
  50% {
    transform: translate(-15%, 10%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 15%);
  }
  80% {
    transform: translate(3%, 35%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}

/* Custom Cursor */
.cursor {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transition: transform 0.1s;
}

.cursor-follower {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition:
    width 0.3s,
    height 0.3s,
    border-radius 0.3s,
    background 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.cursor-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: black;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cursor-active .cursor-follower {
  width: 80px;
  height: 80px;
  background: white;
  border-color: white;
}

.cursor-active .cursor-label {
  opacity: 1;
}

.cursor-active .cursor {
  opacity: 0;
}

/* Glass-Morph Cursor Follower */
.cursor-follower {
  backdrop-filter: blur(5px) saturate(150%);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.scroll-reveal {
  clip-path: circle(0% at center);
  transition:
    clip-path 1.5s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.5s;
  filter: blur(20px) scale(1.1);
}

.scroll-reveal.active {
  clip-path: circle(150% at center);
  filter: blur(0px) scale(1);
}

/* Gradient Text */
.gradient-text {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.liquid-text {
  filter: url(#liquid-shader);
  position: relative;
}

/* Audio Toggle */
.audio-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.5s var(--transition-slow);
}

.audio-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.audio-icon svg {
  width: 16px;
  height: 16px;
  color: white;
}

.audio-label {
  font-family: "Outfit", sans-serif;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  font-weight: 700;
}

.audio-toggle.active .audio-icon {
  color: var(--accent-color);
}
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-icon {
  width: 500px;
  animation: pulse 2s infinite ease-in-out;
}

.loader-text {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  letter-spacing: 0.8em;
  font-size: 1rem;
  color: white;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: white;
  animation: loading 2.5s forwards ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes loading {
  to {
    width: 100%;
  }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 1000;
  mix-blend-mode: difference;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 4rem;
}

.logo img {
  height: 100px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: opacity 0.3s;
}

.nav-links a:hover {
  opacity: 0.6;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-visuals {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.bg-isotipo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vh;
  opacity: 0.05;
  filter: blur(5px);
}

.glow-sphere {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 12vw, 8rem);
  line-height: 0.9;
  margin-bottom: 2.5rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  color: var(--text-dim);
  margin-bottom: 3.5rem;
  max-width: 650px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 2rem;
}

/* Tag */
.tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--text-dim);
}

/* Buttons */
.btn {
  padding: 1.2rem 3rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-slow);
}

.btn-primary {
  background: white;
  color: black;
}

.btn-primary:hover {
  background: #e0e0e0;
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass);
  border-color: white;
}

/* Scroll Indication */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mouse-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  writing-mode: vertical-lr;
  color: var(--text-dim);
}

.mouse {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.mouse::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: white;
  animation: scroll-line 2s infinite ease-out;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(200%);
  }
}

/* Bento Grid */
.services-section {
  padding: 10rem 4rem;
}

.section-header {
  margin-bottom: 6rem;
}

.section-header h2 {
  font-size: clamp(3rem, 10vw, 5rem);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 250px;
  gap: 1.5rem;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem; /* More breathing room */
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s,
    background 0.4s;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.card-tag {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-dim);
  font-weight: 700;
}

.card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6rem;
  color: #00ff88;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-metrics {
  margin-top: auto;
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: var(--text-dim);
}

.metric span {
  color: white;
  font-weight: 800;
  font-size: 1rem;
}

.bento-spotlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.12),
    transparent 40%
  );
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.bento-card:hover .bento-spotlight {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.bento-card.large {
  grid-column: span 3;
  grid-row: span 2;
}
.bento-card.medium {
  grid-column: span 3;
  grid-row: span 1;
}
.bento-card.small {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card h3 {
  font-size: 2.22rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 800;
}

.bento-card p {
  color: var(--text-dim);
  line-height: 1.6;
  font-size: 1rem;
  max-width: 90%;
}

.bento-bg-icon {
  position: absolute;
  bottom: -5%;
  right: -2%;
  width: 50%;
  height: 50%;
  opacity: 0.02;
  filter: blur(1px);
  transition: all 0.8s var(--transition-slow);
  color: white;
  z-index: 0;
}

.bento-card:hover .bento-bg-icon {
  opacity: 0.08;
  transform: scale(1.15) rotate(-10deg) translate(-20px, -20px);
}

.bento-bg-icon svg {
  width: 100%;
  height: 100%;
}

/* Portfolio Grid */
.portfolio-section {
    padding: 10rem 4rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

.portfolio-card {
  width: 100%;
  aspect-ratio: 4/3; /* Standard aspect ratio for cards */
  border-radius: 40px;
  overflow: hidden;
  background: #080808;
  position: relative;
  border: 1px solid var(--glass-border);
  transition: transform 0.5s var(--transition-slow);
}

.portfolio-card a {
  text-decoration: none;
  color: white;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-card:hover {
  transform: scale(1.02) translateY(-10px);
  border-color: rgba(255, 255, 255, 0.4);
}

.portfolio-img-container {
  width: 100%;
  height: 100%;
  margin: 0;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: contrast(1.1) brightness(0.9);
}

.project-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) brightness(0.9);
  opacity: 0.3;
}

.portfolio-card:hover .project-logo {
  opacity: 1;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.portfolio-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://grain-y.com/images/grain.png");
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 5;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-overlay p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}



/* Process Section */
.process-section {
  padding: 15rem 4rem;
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-grid::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--glass-border) 10%,
    var(--glass-border) 90%,
    transparent
  );
  z-index: -1;
}

.process-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.process-item:nth-child(even) {
  flex-direction: row-reverse;
}

.process-content {
  width: 40%;
}

.process-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.process-number {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.process-item h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
  color: white;
}

.process-content p {
  font-size: 1.1rem;
  opacity: 0.7;
}

/* Partners Section */
.partners-section {
  padding: 8rem 4rem;
  border-top: 1px solid var(--glass-border);
}

.partners-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.5s;
}

.partners-grid:hover {
  opacity: 0.8;
}

.partner-logo {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

/* Testimonials Marquee */
.brand-atmosphere {
  padding: 8rem 0;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.scrolling-text {
  display: flex;
  white-space: nowrap;
}

.scrolling-text span {
  font-size: 6rem;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
  padding-right: 2rem;
  animation: scroll-text 20s linear infinite;
}

@keyframes scroll-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Testimonials Marquee */
.testimonials-section {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--glass-border);
}

.marquee-track {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  min-width: 100%;
  animation: scroll-marquee 40s linear infinite;
}

@keyframes scroll-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 24px;
  width: 400px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-card .client {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Zen Footer */
.zen-footer {
  padding: 10rem 4rem 4rem; /* Reduced top padding */
  text-align: center;
}

.footer-zen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-top: 6rem;
  border-top: 1px solid var(--glass-border);
}

.footer-logo-minimal img {
  height: 100px;
  opacity: 0.9;
  transition: opacity 0.5s;
}

.footer-logo-minimal:hover img {
  opacity: 1;
}

.footer-links-minimal {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.footer-links-minimal a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  opacity: 0.5;
  transition: all 0.4s var(--transition-slow);
}

.footer-links-minimal a:hover {
  opacity: 1;
  letter-spacing: 6px;
  color: var(--accent-color);
}

.footer-sub-zen {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copy-minimal {
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

.footer-status {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff88;
  animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .footer-links-minimal {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-sub-zen {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid::after {
    display: none;
  }
  .portfolio-horizontal {
    height: auto;
  }
  .horizontal-container {
    height: auto;
    flex-direction: column;
    padding: 10rem 2rem;
    position: relative;
  }
  .horizontal-items {
    flex-direction: column;
    width: 100%;
    gap: 3rem;
  }
  .portfolio-card {
    width: 100%;
    height: 400px;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 0;
  }
  .nav-links {
    display: none;
  }
  .hero-cta {
    flex-direction: column;
  }
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .hero-content h1 {
    font-size: 4rem;
  }
  .testimonial-card {
    width: 300px;
    padding: 2rem;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10005;
  max-width: 400px;
  width: 90%;
  transform: translateY(150%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.cookie-text h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
}

.cookie-actions .btn {
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: none;
  }
}
