/* @import url for Lora and Inter Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* Reset and Variables */
:root {
  --color-bone: #F9F6F0;
  --color-grey: #BDC3C7;
  --color-beige: #E5D3B3;
  --color-linen-dark: #8C7A6B;
  --color-charcoal: #232221;
  --color-white: #FFFFFF;
  --color-text-muted: #555250;
  --color-success: #8F9E8B;
  
  --font-serif: 'Lora', serif;
  --font-sans: 'Inter', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: all 0.2s ease-in-out;
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-medium: 0 10px 30px rgba(140, 122, 107, 0.08);
  
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bone);
  color: var(--color-charcoal);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, .brand-font {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-charcoal);
  line-height: 1.25;
}

p, a, button, input, textarea, select {
  font-family: var(--font-sans);
}

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

/* Global Layout Elements */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(249, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(189, 195, 199, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-subtle);
  background-color: rgba(249, 246, 240, 0.95);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-weight: 600;
  display: flex;
  align-items: center;
}

.logo span {
  font-weight: 300;
  color: var(--color-linen-dark);
}

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

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  color: var(--color-charcoal);
}

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

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

.nav-link.active {
  color: var(--color-linen-dark);
}

/* Hamburger Menu button */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-charcoal);
  position: absolute;
  transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--color-bone);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    z-index: 1005;
  }
  
  .nav-menu.active {
    right: 0;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  border: 1px solid var(--color-linen-dark);
  background: transparent;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--color-linen-dark);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn:hover {
  color: var(--color-white);
  border-color: var(--color-linen-dark);
}

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

.btn-solid {
  background-color: var(--color-linen-dark);
  color: var(--color-white);
}

.btn-solid:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-solid::before {
  background-color: var(--color-charcoal);
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-color: #ECE7DF;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-background-art {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, rgba(249, 246, 240, 0.2) 0%, rgba(229, 211, 179, 0.4) 100%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-art-svg {
  width: 80%;
  height: auto;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding-right: 2rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-linen-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

@media (max-width: 992px) {
  .hero-content {
    width: 100%;
    padding-right: 0;
    text-align: center;
  }
  .hero-background-art {
    width: 100%;
    opacity: 0.15;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    margin: 0 auto 2.5rem;
  }
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-linen-dark);
  margin-bottom: 1rem;
  display: block;
  font-weight: 600;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 400;
}

.section-header p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

/* Split Showcase Feature (Home) */
.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5%;
}

.showcase-text {
  padding: 2rem 0;
}

.showcase-text h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.showcase-text p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.showcase-image-wrapper {
  background-color: var(--color-beige);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4/3;
  border-radius: 4px;
}

.showcase-svg {
  width: 90%;
  height: 90%;
}

@media (max-width: 768px) {
  .showcase-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Grid Showcase (Home / Products) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}

.product-card {
  background-color: var(--color-white);
  border: 1px solid rgba(189, 195, 199, 0.3);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.product-image-container {
  background-color: var(--color-bone);
  aspect-ratio: 1/1;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-image-container svg {
  width: 80%;
  height: 80%;
  transition: var(--transition-smooth);
}

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--color-linen-dark);
  color: var(--color-white);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  font-weight: 500;
  border-radius: 2px;
}

.product-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-linen-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

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

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(189, 195, 199, 0.2);
  padding-top: 1rem;
}

.product-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-charcoal);
  font-weight: 600;
}

.product-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--color-linen-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-link:hover {
  color: var(--color-charcoal);
}

/* Category Filters (Products Page) */
.filters-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-grey);
  padding: 0.6rem 1.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-fast);
  border-radius: 30px;
  color: var(--color-text-muted);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-linen-dark);
  border-color: var(--color-linen-dark);
  color: var(--color-white);
}

/* Testimonials Carousel/List (Home) */
.testimonials-section {
  background-color: #F3ECE2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-white);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-subtle);
  border-radius: 4px;
  position: relative;
}

.testimonial-quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(229, 211, 179, 0.4);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar-fallback {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--color-beige);
  color: var(--color-linen-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}

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

.testimonial-author-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* About / Workshop Page (Chi Siamo) */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-text h3 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.about-story-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
  border-top: 1px solid rgba(189, 195, 199, 0.4);
  padding-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-linen-dark);
  font-weight: 500;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.about-illustration {
  background-color: #EFECE6;
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-illustration svg {
  width: 100%;
  height: auto;
  max-width: 450px;
}

@media (max-width: 992px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Contact Page (Contatti) & Floating Label Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.contact-card-info {
  background-color: var(--color-white);
  padding: 3rem;
  border: 1px solid rgba(189, 195, 199, 0.3);
  border-radius: 4px;
  height: fit-content;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-linen-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
  display: block;
}

.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-charcoal);
}

.contact-info-value a:hover {
  color: var(--color-linen-dark);
}

/* Form Design with Floating Labels */
.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-control {
  width: 100%;
  padding: 1.1rem 1rem 0.5rem;
  font-size: 1rem;
  border: 1px solid var(--color-grey);
  background-color: var(--color-white);
  color: var(--color-charcoal);
  outline: none;
  transition: var(--transition-fast);
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--color-linen-dark);
  box-shadow: 0 0 0 3px rgba(196, 164, 132, 0.1);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  pointer-events: none;
}

/* Shrink and move label when focused or input is filled */
.form-control:focus ~ .form-label,
.form-control:not(:placeholder-shown) ~ .form-label {
  top: 0.3rem;
  font-size: 0.75rem;
  color: var(--color-linen-dark);
  font-weight: 600;
}

.form-control::placeholder {
  color: transparent;
}

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

/* Custom Soft Map Placeholder style */
.soft-map-container {
  width: 100%;
  height: 350px;
  background-color: #EAE6DF;
  border-radius: 4px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(189, 195, 199, 0.3);
}

.soft-map-art {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.map-marker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.map-marker-pin {
  width: 20px;
  height: 20px;
  background-color: var(--color-linen-dark);
  border: 3px solid var(--color-bone);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: pulse-pin 2s infinite;
}

.map-marker-label {
  background-color: var(--color-charcoal);
  color: var(--color-white);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  border-radius: 2px;
  margin-top: 8px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@keyframes pulse-pin {
  0% {
    box-shadow: 0 0 0 0 rgba(140, 122, 107, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(140, 122, 107, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(140, 122, 107, 0);
  }
}

/* Legal/Policy Pages Layout */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(189, 195, 199, 0.4);
  padding-bottom: 1rem;
}

.legal-body h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-body p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.legal-body ul, .legal-body ol {
  color: var(--color-text-muted);
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.consent-id-container {
  background-color: var(--color-white);
  border: 1px dashed var(--color-linen-dark);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-family: var(--font-sans);
}

/* GDPR Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 0;
  width: 100%;
  background-color: rgba(249, 246, 240, 0.98);
  border-top: 1px solid rgba(189, 195, 199, 0.5);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
  z-index: 9999;
  padding: 1.5rem 0;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-banner.show {
  transform: translateY(-200px); /* adjusted dynamically or absolute pos bottom:0 */
}

/* Fixed display instead of bottom negative transition helper */
.cookie-banner.active {
  bottom: 0;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  max-width: 800px;
}

.cookie-text a {
  color: var(--color-linen-dark);
  text-decoration: underline;
  font-weight: 500;
}

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

.btn-cookie-accept {
  background-color: var(--color-linen-dark);
  color: var(--color-white);
  border: 1px solid var(--color-linen-dark);
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-cookie-accept:hover {
  background-color: var(--color-charcoal);
  border-color: var(--color-charcoal);
}

.btn-cookie-decline {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-grey);
  padding: 0.6rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition-fast);
}

.btn-cookie-decline:hover {
  background-color: rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
  .cookie-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Footer Section */
footer {
  background-color: var(--color-charcoal);
  color: #ECE7DF;
  padding: 80px 0 40px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  font-weight: 300;
  color: var(--color-beige);
}

.footer-about-text {
  font-size: 0.9rem;
  color: #B2AAA2;
  line-height: 1.7;
}

.footer-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #B2AAA2;
}

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

.footer-newsletter p {
  font-size: 0.9rem;
  color: #B2AAA2;
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-size: 0.9rem;
  border-radius: 2px 0 0 2px;
  outline: none;
}

.newsletter-input::placeholder {
  color: #6C665F;
}

.newsletter-submit {
  background-color: var(--color-beige);
  color: var(--color-charcoal);
  border: none;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: var(--transition-fast);
}

.newsletter-submit:hover {
  background-color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  color: #8C8277;
}

.legal-footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.legal-footer-links a {
  font-size: 0.8rem;
  color: #8C8277;
}

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

/* Success notification style */
.form-success-message {
  background-color: var(--color-success);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
  animation: fadeIn 0.5s ease;
}

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