

:root {
  --brand-green: #28a745;
  --brand-mint: #20B2AA;
  --brand-earth: #8B4513;
  --brand-light-grey: #f8f9fa;
  --primary-color: var(--brand-green);
  --secondary-color: var(--brand-earth);
  --accent-color: var(--brand-mint);
  --text-color: #333;
  --bg-color: #fff;
  --font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.5;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.2);
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.product-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 2rem;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-card .content {
  padding: 1.5rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.product-card p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.nav {
  background: var(--bg-color);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

.nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0 1rem;
}

.nav a {
  color: var(--text-color);
  font-weight: 500;
}

.nav a:hover {
  color: var(--primary-color);
}

.accordion {
  margin-bottom: 1rem;
}

.accordion-item {
  border: 1px solid var(--brand-light-grey);
  border-radius: var(--border-radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.accordion-header {
  background: var(--brand-light-grey);
  padding: 1rem;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.accordion-header:hover {
  background: var(--accent-color);
  color: #fff;
}

.accordion-content {
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.open {
  padding: 1rem;
  max-height: 500px;
}

.hero {
  background: linear-gradient(135deg, var(--brand-light-grey) 0%, #fff 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-color);
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn-secondary:hover {
  background-color: var(--brand-earth);
  opacity: 0.9;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

@media (max-width: 768px) {
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .card {
    padding: 1rem;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  color: var(--text-color);
  padding: 1rem;
  z-index: 99999;
  display: none;
  animation: slideUp 0.5s ease;
  border-top: 2px solid var(--primary-color);
  box-shadow: var(--shadow);
}

.cookie-consent.show {
  display: block;
}

.cookie-consent p {
  margin: 0 0 1rem 0;
}

.cookie-consent .buttons {
  display: flex;
  gap: 1rem;
}

.cookie-consent button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}

.cookie-consent .accept {
  background: var(--primary-color);
  color: #fff;
}

.cookie-consent .accept:hover {
  background: var(--accent-color);
}

.cookie-consent .reject {
  background: var(--secondary-color);
  color: #fff;
}

.cookie-consent .reject:hover {
  opacity: 0.8;
}

.cookie-consent a {
  color: var(--primary-color);
  font-weight: 500;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.cart {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--bg-color);
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
  overflow-y: auto;
  padding: 1rem;
}

.cart.open {
  right: 0;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--brand-light-grey);
}

.cart-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 1rem;
}

.cart-item .details {
  flex: 1;
}

.cart-item .remove {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
}

.cart-total {
  font-weight: 500;
  margin-top: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.05);
}

.filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.filters select {
  padding: 0.5rem;
  border: 1px solid var(--brand-light-grey);
  border-radius: var(--border-radius);
}

.testimonial {
  background: var(--brand-light-grey);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
}

.testimonial cite {
  font-weight: 500;
  color: var(--primary-color);
}

.footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.footer a {
  color: var(--accent-color);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 0.5s ease;
}

@media (max-width: 768px) {
  .cookie-consent .buttons {
    flex-direction: column;
  }
  .nav ul {
    flex-direction: column;
  }
  .nav li {
    margin: 0.5rem 0;
  }
  .filters {
    flex-direction: column;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 2rem 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .cart {
    width: 100%;
    right: -100%;
  }
  .cart.open {
    right: 0;
  }
}

.btn-magnetic {
  --x: 0px;
  --y: 0px;
  position: relative;
  overflow: hidden;
}

.btn-magnetic::before {
  content: '';
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.text-reveal {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.text-reveal.visible {
  opacity: 1;
  transform: translateX(0);
}

.glitch-text {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  font-weight: bold;
  text-shadow: 2px 2px var(--accent-color);
  transition: transform 0.05s ease;
}

.alert {
  padding: 1rem;
  border-radius: var(--border-radius);
  margin: 1rem 0;
  display: none;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#contact-form {
  max-width: 600px;
  margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--brand-light-grey);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

#contact-form button[type="submit"] {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

#contact-form button[type="submit"]:hover {
  background: var(--primary-color-dark);
}

.map-container {
  margin: 2rem 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.support-info {
  background: var(--brand-light-grey);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.support-info h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonials-section {
  background: url('./images/testimonials-bg.jpg') center/cover no-repeat;
  padding: 4rem 0;
  color: white;
  text-align: center;
}

.testimonials-section .testimonial {
  background: rgba(0,0,0,0.7);
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .btn-magnetic {
    font-size: 0.9rem;
  }
  .text-reveal {
    transform: translateX(-20px);
  }
  .glitch-text {
    font-size: 1.5rem;
  }
  #contact-form {
    padding: 0 1rem;
  }
  .support-info {
    padding: 1.5rem;
  }
}

.accordion-item {
  margin-bottom: 1rem;
  border: 1px solid var(--brand-light-grey);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.accordion-header {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 1rem;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color var(--transition);
}

.accordion-header:hover {
  background-color: var(--brand-light-grey);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--bg-color);
  padding: 0 1rem;
}

.accordion-content p {
  margin: 1rem 0;
}