:root {
  --color-sage: #DEE8CE;
  --color-terracotta: #BB6653;
  --color-amber: #F08B51;
  --color-cream: #FFF8E8;

  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Montserrat', sans-serif;

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;

  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.1);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-cream);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-amber);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-secondary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

header {
  background-color: var(--color-cream);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.logo img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.logo:hover img {
  transform: rotate(0);
}

@media (max-width: 992px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .logo img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-terracotta);
  font-size: 1.5rem;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

.main-nav a {
  position: relative;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: width var(--transition-normal);
}

.main-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-sage);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: var(--space-lg);
  color: var(--color-terracotta);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
}

.shape {
  position: absolute;
  background: var(--color-terracotta);
  border-radius: 50%;
  animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 40%;
  right: 15%;
  background: var(--color-amber);
  animation-delay: 3s;
}

.shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 20%;
  background: var(--color-sage);
  animation-delay: 6s;
}

.shape:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 25%;
  background: var(--color-terracotta);
  opacity: 0.6;
  animation-delay: 9s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0);
  }

  25% {
    transform: translateY(-20px) translateX(10px) rotate(5deg);
  }

  50% {
    transform: translateY(10px) translateX(20px) rotate(10deg);
  }

  75% {
    transform: translateY(15px) translateX(-10px) rotate(5deg);
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--color-terracotta);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
  font-family: var(--font-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color var(--transition-normal), transform var(--transition-normal);
  cursor: pointer;
}

.btn:hover {
  background-color: var(--color-amber);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-terracotta);
  color: var(--color-terracotta);
}

.btn-outline:hover {
  background-color: var(--color-terracotta);
  color: white;
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--color-amber);
  margin: var(--space-sm) auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.product-image {
  height: 250px;
  background-color: var(--color-sage);
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-details {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.product-price {
  font-weight: bold;
  color: var(--color-terracotta);
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

.product-description {
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.about-content {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  justify-content: center;
}

.testimonial-card {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  max-width: 350px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: var(--color-sage);
  font-family: var(--font-primary);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: var(--space-sm);
  object-fit: cover;
}

.contact-section {
  background-color: var(--color-sage);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-terracotta);
}

.contact-form {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-secondary);
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-amber);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-check input {
  margin-top: 0.25rem;
}

.form-check label {
  font-size: 0.9rem;
}

.map-section {
  height: 400px;
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background-color: var(--color-terracotta);
  color: white;
  padding: var(--space-lg) 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-nav {
  flex: 1;
  min-width: 250px;
}

.footer-nav h5 {
  color: white;
  margin-bottom: var(--space-md);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: var(--space-sm);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: white;
}

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: var(--space-lg);
  z-index: 1000;
  display: none;
}

.cookie-notice.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.error-page {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.error-code {
  font-size: 8rem;
  font-weight: bold;
  color: var(--color-terracotta);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.error-message {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color-cream);
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-terracotta);
  margin-bottom: var(--space-lg);
}

.thank-you-message {
  max-width: 600px;
  margin-bottom: var(--space-xl);
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: white;
    box-shadow: var(--shadow-medium);
    z-index: 100;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    padding: var(--space-xl) var(--space-lg);
  }

  .main-nav.active {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-terracotta);
    cursor: pointer;
  }

  .hero {
    height: 60vh;
  }

  .hero-content {
    padding: var(--space-lg);
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 14px;
  }

  .container {
    width: 95%;
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero {
    height: 50vh;
  }
}