

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --primary-green: #2d5016;
  --secondary-gold: #d4af37;
  --accent-cream: #f5f5dc;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fafafa;
  --shadow: rgba(0,0,0,0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-green);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-gold);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-green);
  color: white;
}

.btn-primary:hover {
  background-color: var(--secondary-gold);
  color: var(--text-dark);
}

.btn-secondary {
  background-color: var(--secondary-gold);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: white;
}

header {
  background-color: white;
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--primary-green);
  color: white;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-main {
  padding: 1rem 0;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

#cursor-blob {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 50px;
  height: 50px;
}

#cursor-blob svg {
  width: 100%;
  height: 100%;
}

#cursor-blob svg circle {
  transition: r 0.1s ease;
}
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.logo img {
  height: 40px;
  margin-right: 0.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--secondary-gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--secondary-gold);
  color: var(--text-dark);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero {
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 80, 22, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero .btn {
  margin: 0 0.5rem;
}

.terms-hero {
  background-image: url('../images/terms-hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.terms-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(45, 80, 22, 0.6);
}

.section {
  padding: 4rem 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center {
  text-align: center;
}

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.brand-intro {
  background-color: var(--accent-cream);
}

.collections {
  background-color: white;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.collection-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.collection-card .content {
  padding: 1.5rem;
}

.collection-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.collection-card p {
  margin-bottom: 1.5rem;
}

.why-choose {
  background-color: var(--bg-light);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.testimonials {
  background-image: url('../images/testimonials-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4rem 0;
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
}

.testimonials-content {
  position: relative;
  z-index: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background-color: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(10px);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-weight: 700;
}

.cta-section {
  background-color: var(--primary-green);
  color: white;
  text-align: center;
}

footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: white;
}

.footer-section a:hover {
  color: var(--secondary-gold);
}

.newsletter input {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  border: none;
  border-radius: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 1rem;
  z-index: 1001;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 1rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .header-main .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .collection-grid,
  .features,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    order: -1;
  }
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form h2 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.contact-info h2 {
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.info-item {
  margin-bottom: 2rem;
}

.info-item h4 {
  color: var(--secondary-gold);
  margin-bottom: 0.5rem;
}

.social-media a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.social-media a:hover {
  transform: scale(1.1);
}

.map-container {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
}

.privacy-policy {
  background-image: url('../images/privacy-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
  position: relative;
}

.privacy-policy .container {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.privacy-policy h2 {
  color: var(--secondary-gold);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.privacy-policy h3 {
  color: var(--primary-green);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-policy p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.privacy-policy ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.privacy-policy li {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #666;
  font-style: italic;
  margin-bottom: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}