:root {
  --paper-bg: #FAF8F5;
  --ink-color: #3C3C3B;
  --accent-gold: #D9C098;
  --rose-tint: #E7D5C0;
  --sage: #C8CBB6;
  --midnight: #2E2B2B;
  --texture-opacity: 0.08;
  --transition-fast: 0.3s ease;
  --radius-soft: 8px;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--ink-color);
  background-color: var(--paper-bg);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paper-texture.png');
  opacity: var(--texture-opacity);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--midnight);
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.8rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.6rem;
}

a {
  color: var(--midnight);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

a:hover {
  color: var(--accent-gold);
}

a.underline-effect::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width var(--transition-fast);
}

a.underline-effect:hover::after {
  width: 100%;
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  background-color: transparent;
  border: 1px solid var(--ink-color);
  color: var(--ink-color);
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-soft);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--accent-gold);
  z-index: -1;
  transition: width 0.4s ease;
  opacity: 0.2;
}

.btn:hover {
  border-color: var(--accent-gold);
  color: var(--midnight);
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--paper-bg);
}

.btn-primary:hover {
  background-color: var(--midnight);
  border-color: var(--midnight);
  color: var(--paper-bg);
}

.btn-primary::before {
  display: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  overflow: hidden;
}

.section-divider.wave-top {
  top: -1px;
  bottom: auto;
  transform: rotate(180deg);
}

.section-divider svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: var(--paper-bg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  z-index: 100;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.header.scrolled {
  background-color: rgba(250, 248, 245, 0.95);
  padding: 1.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--midnight);
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.close-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 3.2rem;
}

.main-nav a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}

.main-nav a.active {
  color: var(--accent-gold);
}

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 12rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
  margin-bottom: 2.4rem;
}

.hero-description {
  font-size: 1.8rem;
  margin-bottom: 3.2rem;
}

.hero-image {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
}

.featured-collection {
  position: relative;
  padding: 10rem 0;
  background-color: rgba(200, 203, 182, 0.1);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.collection-title {
  text-align: center;
  margin-bottom: 4rem;
}

.product-card {
  background-color: var(--paper-bg);
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: rotate(var(--card-rotate, 0deg));
}

.product-card:hover {
  transform: translateY(-5px) rotate(var(--card-rotate, 0deg));
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-content {
  padding: 2.4rem;
}

.product-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--accent-gold);
  margin-bottom: 1.6rem;
}

.workshops {
  padding: 10rem 0;
  position: relative;
}

.workshop-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.workshop-content {
  position: relative;
}

.workshop-image {
  position: relative;
}

.workshop-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-soft);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.08);
}

.workshop-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 70%;
  height: 70%;
  background-color: var(--rose-tint);
  z-index: -1;
  opacity: 0.6;
  border-radius: var(--radius-soft);
}

.testimonials {
  padding: 10rem 0;
  background-color: rgba(231, 213, 192, 0.1);
  position: relative;
}

.testimonials-title {
  text-align: center;
  margin-bottom: 6rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background-color: var(--paper-bg);
  padding: 3.2rem;
  border-radius: var(--radius-soft);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: rotate(var(--card-rotate, 0deg));
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 5rem;
  font-family: 'Playfair Display', serif;
  color: var(--accent-gold);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.6rem;
}

.contact {
  padding: 10rem 0;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info {
  margin-bottom: 4rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-method i {
  margin-right: 1.5rem;
  font-size: 2rem;
  color: var(--accent-gold);
}

.contact-form {
  background-color: white;
  padding: 4rem;
  border-radius: var(--radius-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/paper-texture.png');
  opacity: 0.04;
  pointer-events: none;
  border-radius: var(--radius-soft);
}

.form-group {
  margin-bottom: 2.4rem;
}

.form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  font-size: 1.4rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(60, 60, 59, 0.2);
  border-radius: var(--radius-soft);
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  background-color: rgba(255, 255, 255, 0.8);
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.4rem;
}

.form-checkbox input {
  margin-right: 1rem;
  margin-top: 0.4rem;
}

.form-checkbox label {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(60, 60, 59, 0.8);
}

.map-container {
  height: 400px;
  border-radius: var(--radius-soft);
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--midnight);
  color: var(--paper-bg);
  padding: 6rem 0 2rem;
}

.footer a {
  color: var(--paper-bg);
}

.footer a:hover {
  color: var(--accent-gold);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.footer-nav {
  margin-bottom: 2rem;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 2.4rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-bottom: 2rem;
}

.footer-legal a {
  font-size: 1.4rem;
}

.footer-copyright {
  font-size: 1.4rem;
  opacity: 0.7;
}

.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-consent p {
  margin: 0;
  padding-right: 2rem;
  font-size: 1.4rem;
}

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

.cookie-consent-btn {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.error-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.error-title {
  font-size: 12rem;
  margin-bottom: 2rem;
  line-height: 1;
  position: relative;
}

.error-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 2px;
  background-color: var(--accent-gold);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.error-message {
  font-size: 2.4rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

.thank-you {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.thank-you-icon {
  font-size: 6rem;
  color: var(--accent-gold);
  margin-bottom: 3rem;
}

.thank-you-title {
  margin-bottom: 2rem;
}

.thank-you-message {
  max-width: 600px;
  margin-bottom: 4rem;
}

.catalog-header {
  text-align: center;
  margin-bottom: 6rem;
}

.catalog-description {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.8rem;
}

.about-hero {
  padding: 18rem 0 10rem;
  text-align: center;
}

.about-hero-title {
  margin-bottom: 2rem;
}

.about-hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.8rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 8rem;
}

.about-image {
  position: relative;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-soft);
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.08);
}

.about-image::after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  background-color: var(--sage);
  z-index: -1;
  opacity: 0.4;
  border-radius: var(--radius-soft);
}

.services-hero {
  padding: 18rem 0 10rem;
  text-align: center;
}

.services-hero-title {
  margin-bottom: 2rem;
}

.services-hero-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}

.service-card {
  background-color: white;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-image {
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
}

.service-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 3rem;
}

.service-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.service-description {
  margin-bottom: 2rem;
}

.legal-page {
  max-width: 800px;
  margin: 12rem auto 6rem;
  padding: 0 2rem;
}

.legal-content {
  background-color: white;
  padding: 4rem;
  border-radius: var(--radius-soft);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

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

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

.legal-section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

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

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background-color: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

@media (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .hero-container,
  .workshop-container,
  .contact-container,
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .hero-image,
  .workshop-image,
  .about-image {
    order: -1;
  }
  
  .section {
    padding: 6rem 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  .container {
    padding: 0 1.5rem;
  }
  
  h1 {
    font-size: 3.8rem;
  }
  
  h2 {
    font-size: 3.2rem;
  }
  
  h3 {
    font-size: 2.4rem;
  }
  
  .hero {
    min-height: 550px;
    padding: 10rem 0 6rem;
  }
  
  .hero-container {
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 3.6rem;
  }
  
  .hero-description {
    font-size: 1.6rem;
  }
  
  .section {
    padding: 6rem 0;
  }
  
  .about-hero {
    padding: 14rem 0 8rem;
  }
  
  .about-hero-title {
    font-size: 3.6rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.7rem;
  }
  
  .collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-form {
    padding: 3rem 2rem;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  
  .workshop-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .legal-page {
    margin: 10rem auto 4rem;
    padding: 0 1rem;
  }
  
  .legal-content {
    padding: 3rem 2rem;
  }
  
  .legal-section-title {
    font-size: 2rem;
  }
  
  .footer-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .cookie-consent {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .cookie-consent p {
    padding-right: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .cookie-consent-btn {
    width: 100%;
  }
  
  .cta-content {
    padding: 4rem 0 !important;
  }
  
  .product-content {
    padding: 2rem;
  }
  
  .service-content {
    padding: 2.5rem;
  }
  
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--ink-color);
    font-size: 2.4rem;
    cursor: pointer;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: white;
    padding: 8rem 3rem 3rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    z-index: 90;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 2rem;
  }
  
  .close-nav {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--ink-color);
    font-size: 2.4rem;
    cursor: pointer;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .main-nav.active .close-nav {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 80;
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .hero-image img {
    transform: rotate(0deg);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 2.5rem;
  }
  
  .testimonial-text {
    font-size: 1.5rem;
  }
  
  .product-image {
    padding-bottom: 70%;
  }
  
  .service-image {
    padding-bottom: 55%;
  }
  
  .btn {
    padding: 1.1rem 2.2rem;
    font-size: 1.5rem;
  }
  
  .form-input,
  .form-textarea {
    font-size: 1.6rem;
    padding: 1.2rem;
  }
  
  .header-container {
    padding: 1.5rem 0;
  }
  
  .logo {
    font-size: 2rem;
  }
  
  .featured-collection {
    padding: 6rem 0;
  }
  
  .workshops {
    padding: 6rem 0;
  }
  
  .testimonials {
    padding: 6rem 0;
  }
  
  .contact-cta {
    padding: 4rem 0;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 56%;
  }
  
  .container {
    padding: 0 1.2rem;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  h3 {
    font-size: 2.2rem;
  }
  
  .hero {
    min-height: 500px;
    padding: 8rem 0 4rem;
  }
  
  .hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .about-hero {
    padding: 12rem 0 6rem;
  }
  
  .about-hero-title {
    font-size: 3.2rem;
  }
  
  .about-hero-subtitle {
    font-size: 1.6rem;
  }
  
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .product-content {
    padding: 2rem;
  }
  
  .contact-form {
    padding: 2.5rem 1.5rem;
  }
  
  .btn {
    padding: 1rem 2rem;
    font-size: 1.5rem;
  }
  
  .legal-page {
    margin: 8rem auto 3rem;
    padding: 0 1rem;
  }
  
  .legal-content {
    padding: 2.5rem 1.5rem;
  }
  
  .legal-section-title {
    font-size: 1.8rem;
  }
  
  .footer {
    padding: 4rem 0 1.5rem;
  }
  
  .footer-logo {
    font-size: 2rem;
  }
  
  .footer-nav ul,
  .footer-legal {
    flex-direction: column;
    gap: 1.6rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 54%;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: 3rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2.6rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .header-container {
    padding: 1.2rem 0;
  }
  
  .main-nav {
    width: 260px;
    padding: 7rem 2rem 2rem;
  }
  
  .nav-toggle {
    font-size: 2.2rem;
  }
  
  .close-nav {
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.2rem;
  }
  
  .hero {
    min-height: 450px;
    padding: 7rem 0 3rem;
  }
  
  .hero-container {
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }
  
  .hero-description {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .hero-image img {
    transform: rotate(0deg);
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .about-hero {
    padding: 10rem 0 5rem;
  }
  
  .about-hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  
  .about-hero-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  .collection-title {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  
  .collection-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  
  .product-card {
    transform: rotate(0deg);
  }
  
  .product-content {
    padding: 1.5rem;
  }
  
  .product-title {
    font-size: 1.9rem;
    margin-bottom: 0.8rem;
  }
  
  .product-description {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .product-price {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  
  .product-image {
    padding-bottom: 65%;
  }
  
  .service-content {
    padding: 2rem 1.5rem;
  }
  
  .service-title {
    font-size: 1.9rem;
  }
  
  .service-description {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  
  .service-image {
    padding-bottom: 50%;
  }
  
  .testimonials-container {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-author {
    font-size: 1.3rem;
  }
  
  .contact-container {
    gap: 3rem;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .form-label {
    font-size: 1.4rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 1rem;
    font-size: 1.4rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 1.4rem;
    width: 100%;
  }
  
  .workshop-container {
    gap: 3rem;
  }
  
  .about-content {
    gap: 3rem;
  }
  
  .about-image img {
    width: 100%;
  }
  
  .legal-page {
    margin: 7rem auto 2rem;
    padding: 0 0.8rem;
  }
  
  .legal-content {
    padding: 2rem 1rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
  
  .legal-section-title {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .footer {
    padding: 3rem 0 1rem;
  }
  
  .footer-container {
    gap: 2.5rem;
  }
  
  .footer-logo {
    font-size: 1.8rem;
  }
  
  .footer-nav ul,
  .footer-legal {
    gap: 1.2rem;
  }
  
  .footer-nav a,
  .footer-legal a {
    font-size: 1.3rem;
  }
  
  .footer-copyright {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .cookie-consent {
    padding: 1.2rem;
    left: 1rem;
    right: 1rem;
  }
  
  .cookie-consent p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .cookie-consent-btn {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
  }
  
  .cta-content {
    padding: 3rem 0 !important;
  }
  
  .cta-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-content p {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  
  .featured-collection {
    padding: 4rem 0;
  }
  
  .workshops {
    padding: 4rem 0;
  }
  
  .testimonials {
    padding: 4rem 0;
  }
  
  .contact-cta {
    padding: 3rem 0;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .contact-method i {
    margin: 0 auto;
  }
  
  /* Index page specific fixes */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 100%;
  }
  
  .featured-collection {
    padding: 3rem 0;
  }
  
  .featured-collection .collection-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .workshop-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .workshop-content {
    order: 2;
  }
  
  .workshop-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .workshop-image img {
    width: 100%;
  }
  
  .workshops h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .workshops p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .testimonials-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  
  .testimonial-text::before {
    font-size: 4rem;
    top: -1rem;
    left: -0.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    margin-bottom: 0;
  }
  
  .service-content[style*="padding"] {
    padding: 2rem 1.5rem !important;
  }
  
  .service-content i {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .about-text {
    order: 2;
  }
  
  .about-image {
    order: 1;
    margin-bottom: 2rem;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  
  .about-text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
  }
  
  .section-divider {
    margin-top: -1px;
  }
  
  .section-divider svg {
    height: 50px;
  }
  
  .particles-container {
    display: none;
  }
  
  .collection-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .product-card[style*="text-align"] {
    margin-bottom: 0;
  }
  
  .cta-content[style*="padding"] {
    padding: 2.5rem 1rem !important;
  }
  
  .cta-content h2 {
    font-size: 2.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  
  .cta-content p {
    font-size: 1.3rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.5;
  }
  
  .btn[style*="margin-top"] {
    margin-top: 1.5rem !important;
  }
  
  /* Catalog page - Bestel Informatie section */
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] .service-card {
    margin-bottom: 0;
  }
  
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] .service-content[style*="padding: 3rem 2rem"] {
    padding: 2rem 1.5rem !important;
  }
  
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] .service-content i {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 1.5rem !important;
  }
  
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] .service-title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
  }
  
  .services-grid[style*="grid-template-columns: repeat(3, 1fr)"] .service-content p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}