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

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --color-matte-black: #111827;
  --color-steel-dark: #0B0F19;
  --color-steel-light: #1F2937;
  --color-walnut: #4E3629;
  --color-walnut-hover: #3E2B20;
  --color-walnut-light: #6E4F3D;
  --color-soft-grey: #E5E7EB;
  --color-muted-grey: #9CA3AF;
  --color-studio-amber: #D97706;
  --color-amber-hover: #B45309;
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --container-max-width: 1200px;
  --header-height: 80px;
}

/* --- RESET & GLOBAL STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-steel-dark);
  color: var(--color-soft-grey);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  background-color: var(--color-steel-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-steel-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-walnut);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-studio-amber);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-walnut);
  transition: var(--transition-smooth);
}

section:hover h2::after {
  width: 100px;
  background-color: var(--color-studio-amber);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

p {
  color: var(--color-muted-grey);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* --- REUSABLE UTILITIES --- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--color-walnut);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--color-studio-amber);
  color: var(--color-steel-dark);
  border-color: var(--color-studio-amber);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: var(--color-soft-grey);
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: var(--color-steel-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.section-padding {
  padding: 8rem 0;
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 237, 235, 0.08);
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background-color: var(--color-steel-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--color-studio-amber);
}

nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--color-muted-grey);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-studio-amber);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-smooth);
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-matte-black);
  border-top: 1px solid rgba(229, 237, 235, 0.08);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: #FFFFFF;
  position: relative;
}

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

.footer-links a {
  color: var(--color-muted-grey);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--color-studio-amber);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-muted-grey);
}

.footer-contact-info span {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(229, 237, 235, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-links a {
  font-size: 0.85rem;
  color: var(--color-muted-grey);
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-steel-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(20%) contrast(110%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(11, 15, 25, 0.95) 30%, rgba(11, 15, 25, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--color-studio-amber);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

/* --- SCROLL REVEAL EFFECTS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --- FEATURES & CRAFT SECTION --- */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-img-wrapper {
  position: relative;
  border: 1px solid rgba(229, 237, 235, 0.1);
  padding: 1.5rem;
  background-color: var(--color-matte-black);
}

.feature-img-wrapper::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid var(--color-walnut);
  z-index: -1;
  pointer-events: none;
}

.feature-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: grayscale(10%);
  display: block;
}

.feature-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.spec-list {
  list-style: none;
  margin-top: 2rem;
  border-top: 1px solid rgba(229, 237, 235, 0.1);
  padding-top: 2rem;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(229, 237, 235, 0.05);
  font-size: 0.95rem;
}

.spec-list span:first-child {
  color: var(--color-muted-grey);
}

.spec-list span:last-child {
  color: #FFFFFF;
  font-weight: 500;
}

/* --- PRODUCT COLLECTIONS --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-header p {
  max-width: 450px;
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background-color: var(--color-matte-black);
  border: 1px solid rgba(229, 237, 235, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-walnut);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.product-img-container {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: var(--color-steel-dark);
}

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

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

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background-color: var(--color-studio-amber);
  color: var(--color-steel-dark);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.05em;
  z-index: 10;
}

.product-details {
  padding: 2rem;
  border-top: 1px solid rgba(229, 237, 235, 0.05);
}

.product-category {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-studio-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(229, 237, 235, 0.05);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #FFFFFF;
}

.product-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted-grey);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.product-card:hover .product-btn {
  color: var(--color-studio-amber);
  border-color: var(--color-studio-amber);
}

/* --- CLIENTSIDE CATEGORY FILTER --- */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(229, 237, 235, 0.1);
  color: var(--color-muted-grey);
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 0.7rem 1.8rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--color-walnut);
  color: #FFFFFF;
  border-color: var(--color-walnut);
}

.product-card.hide {
  display: none;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background-color: var(--color-matte-black);
  border: 1px solid rgba(229, 237, 235, 0.05);
  padding: 2.5rem;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  line-height: 1;
  font-family: var(--font-display);
  color: rgba(78, 54, 41, 0.25);
}

.rating {
  color: var(--color-studio-amber);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-soft-grey);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-walnut);
}

.user-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.user-info p {
  font-size: 0.8rem;
  color: var(--color-muted-grey);
  margin-bottom: 0;
}

/* --- CONTACT FORM WITH FLOATING LABELS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-walnut);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  margin-bottom: 0;
}

/* Floating Label Form */
.contact-form {
  background-color: var(--color-matte-black);
  border: 1px solid rgba(229, 237, 235, 0.05);
  padding: 3.5rem;
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(229, 237, 235, 0.15);
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFFFFF;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-bottom-color: var(--color-studio-amber);
}

.form-label {
  position: absolute;
  left: 0;
  top: 0.6rem;
  color: var(--color-muted-grey);
  transition: var(--transition-smooth);
  pointer-events: none;
  font-weight: 300;
}

/* Style for floating label on focus / has content */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.8rem;
  color: var(--color-studio-amber);
  font-weight: 500;
}

textarea.form-control {
  min-height: 120px;
  resize: none;
}

.form-status {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  display: none;
  padding: 0.8rem;
  text-align: center;
}

.form-status.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10B981;
  color: #34D399;
}

/* Custom Steel Map Area */
.map-container {
  position: relative;
  width: 100%;
  height: 350px;
  border: 1px solid rgba(229, 237, 235, 0.1);
  background-color: var(--color-matte-black);
  margin-top: 2rem;
  overflow: hidden;
}

.custom-steel-map {
  width: 100%;
  height: 100%;
  background-color: #111827;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Render an industrial styled grid map representation of Amsterdam */
.map-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-river {
  position: absolute;
  width: 120%;
  height: 40px;
  background-color: rgba(78, 54, 41, 0.2);
  top: 40%;
  transform: rotate(-15deg);
}

.map-marker {
  position: relative;
  z-index: 10;
  text-align: center;
  cursor: pointer;
}

.marker-pulse {
  width: 20px;
  height: 20px;
  background-color: var(--color-studio-amber);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
  animation: pulse 1.8s infinite;
}

.marker-label {
  margin-top: 0.8rem;
  background-color: var(--color-steel-light);
  border: 1px solid var(--color-walnut);
  padding: 0.5rem 1rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@keyframes pulse {
  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 12px rgba(217, 119, 6, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
  }
}

/* --- GDPR COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 600px;
  background-color: var(--color-matte-black);
  border: 1px solid var(--color-walnut);
  padding: 2rem;
  z-index: 2000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cookie-text a {
  color: var(--color-studio-amber);
  border-bottom: 1px solid transparent;
}

.cookie-text a:hover {
  border-color: var(--color-studio-amber);
}

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

.cookie-consent-info {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted-grey);
}

/* --- ABOUT PAGE SPECIFICS --- */
.about-hero {
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--color-steel-dark);
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-steel-dark), rgba(11, 15, 25, 0.5));
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
}

.loft-woods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.wood-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.wood-gallery-item {
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(229, 237, 235, 0.05);
}

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

.wood-gallery-item:hover img {
  transform: scale(1.05);
}

/* --- LEGAL PAGES SPECIFICS --- */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem 2rem;
}

.legal-meta {
  color: var(--color-muted-grey);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(229, 237, 235, 0.1);
  padding-bottom: 1.5rem;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.legal-section p, .legal-section ul {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-muted-grey);
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

/* --- RESPONSIVENESS (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-slider {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-2col, .contact-grid, .loft-woods-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-steel-dark);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid rgba(229, 237, 235, 0.05);
  }
  
  nav.active {
    left: 0;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
